@charset "UTF-8";
/*
Template Name: Namun
Version: 1.0
Author: CrooThemes
Author URI: https://www.templatemonster.com/authors/croothemes/
Description: Modern Blog & Magazine HTML Template

[TABLE OF CONTENTS]

01. Reset
02. Typography
03. Header
04. Footer
05. Layout
06. Post
07. Comments
08. Widgets
09. Components
10. Utilities

*/
/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
/*
=======================================================
=                                                     =
=                        Reset                        =
=                                                     =
=======================================================
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

button,
input,
select,
textarea:focus {
  outline: none;
}

body {
  color: #777;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body:before {
  content: "";
  background: #f3e6ff;
  background: linear-gradient(45deg, #e6fbff 0%, #f3e6ff 25%, #e7ebff 50%, #f3e6ff 75%, #e6fbff 100%);
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: -1;
}

::selection {
  color: #fff;
  background: #c5a4f8;
  /* WebKit/Blink Browsers */
}

::-moz-selection {
  color: #fff;
  background: #c5a4f8;
  /* Gecko Browsers */
}

ul {
  list-style-type: circle;
}

img {
  height: auto;
  max-width: 100%;
}

blockquote {
  margin: 0 0 1rem;
  border: solid 1px #ffffff;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 5px;
}
blockquote p {
  color: #333;
  margin-bottom: 0;
}
blockquote p:before {
  content: "❝";
  margin-right: 10px;
}
blockquote p:after {
  content: "❞";
  margin-left: 10px;
}

.blockquote-footer {
  color: #666;
}

.figure-caption {
  font-size: 14px;
  margin-top: 10px;
  color: #999;
}

cite {
  font-size: 15px;
}
cite::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #c5a4f8;
  margin-right: 10px;
  vertical-align: middle;
}

.table {
  --bs-table-bg: rgb(255 255 255 / 20%);
  --bs-table-striped-bg: rgb(255 255 255 / 50%);
  --bs-table-color: #444;
  border: solid 1px #FFF;
  border-color: #ffffff;
}

hr {
  color: #FFF;
}

b, strong {
  color: #333;
  font-weight: 600;
}

/*
=======================================================
=                                                     =
=                     Typography                      =
=                                                     =
=======================================================
*/
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #333;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: #c5a4f8;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

/* Typography */
p {
  margin-bottom: 20px;
}

a {
  color: #c5a4f8;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: #c5a4f8;
}

.page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
  margin: 40px 0 20px 0;
}

/*
=======================================================
=                                                     =
=                        Header                       =
=                                                     =
=======================================================
*/
header {
  z-index: 3;
  position: relative;
}

.header-default.clone {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.5);
  border-bottom: solid 1px #fff;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  transition: 0.2s transform cubic-bezier(0.3, 0.73, 0.3, 0.74);
  z-index: 4;
}

body.down .header-default.clone {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

/* Logo */
.logo-default {
  display: inline;
  visibility: visible;
}

.logo-light {
  display: none;
  visibility: hidden;
}

/* Navbar */
.navbar {
  min-height: 70px;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 23px;
    padding-bottom: 23px;
  }
}
.nav-link:focus,
.nav-link:hover {
  color: #c5a4f8;
}

.nav-item:hover .dropdown-menu {
  display: block;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  z-index: 1000;
  display: block;
  min-width: 200px;
  padding: 12px 10px;
  margin: 0;
  color: #666;
  text-align: left;
  list-style: none;
  background-color: rgba(255, 255, 255, 0.3);
  background-clip: padding-box;
  border: solid 1px #fff;
  border-radius: 5px;
  margin-top: 5px;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.dropdown-menu::before {
  content: "";
  display: block;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  height: auto;
  width: auto;
  position: absolute;
  border: 1px solid #fff;
  z-index: -1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 6px 10px;
  clear: both;
  font-weight: 400;
  font-size: 15px;
  color: #666;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  position: relative;
}

.dropdown-item:hover {
  margin-left: 5px;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #c5a4f8;
  background-color: transparent;
}

.dropdown .dropdown-menu .dropdown-menu {
  display: block;
  position: absolute;
  left: calc(100% + 15px);
  top: -18px;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.dropdown .dropdown-menu > li:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu .dropdown-item.dropdown-toggle::after {
  right: 12px;
  top: 17px;
  position: absolute;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.dropdown-divider {
  height: 0;
  margin: 0.1rem 0;
  overflow: hidden;
  border-top: 1px solid #ddd;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 7px;
  vertical-align: 0.21em;
  content: "";
  border-top: 0;
  border-right: 0;
  border-bottom: 0.5px solid;
  border-left: 0.5px solid;
  transform: rotate(-45deg);
  height: 5px;
  width: 5px;
}

.menu-toggle {
  background: rgba(255, 255, 255, 0.3);
  border: solid 1px #fff;
  border-radius: 50px;
  padding: 6px 10px;
}
.menu-toggle span {
  display: block;
  background-color: #c5a4f8;
  height: 1px;
  margin-top: 5px;
  margin-bottom: 5px;
  width: 15px;
}

.megamenu {
  position: static;
}
.megamenu .dropdown-menu {
  left: 0;
  right: 0;
}

/* Mobile navigation */
.mobile-navbar {
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-right: solid 1px #fff;
  width: 300px;
  z-index: 1000;
  -webkit-transform: translateX(-350px);
  -moz-transform: translateX(-350px);
  -ms-transform: translateX(-350px);
  -o-transform: translateX(-350px);
  transform: translateX(-350px);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  /* === Vertical Menu === */
}
.mobile-navbar.open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.mobile-navbar .vertical-menu {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  /* === Submenu === */
}
.mobile-navbar .vertical-menu li {
  padding: 6px 0;
  position: relative;
  list-style: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.mobile-navbar .vertical-menu li a {
  color: #666;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}
.mobile-navbar .vertical-menu li a:hover {
  color: #c5a4f8;
}
.mobile-navbar .vertical-menu li .switch {
  padding: 10px;
  cursor: pointer;
  color: #c5a4f8;
  position: absolute;
  top: 6px;
  right: 0;
  -webkit-transform: rotate(0deg) scale(var(--ggs, 0.8));
  -moz-transform: rotate(0deg) scale(var(--ggs, 0.8));
  -ms-transform: rotate(0deg) scale(var(--ggs, 0.8));
  -o-transform: rotate(0deg) scale(var(--ggs, 0.8));
  transform: rotate(0deg) scale(var(--ggs, 0.8));
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-backface-visibility: hidden;
}
.mobile-navbar .vertical-menu li .switch.rotated {
  -webkit-transform: rotate(180deg) scale(var(--ggs, 0.8));
  -moz-transform: rotate(180deg) scale(var(--ggs, 0.8));
  -ms-transform: rotate(180deg) scale(var(--ggs, 0.8));
  -o-transform: rotate(180deg) scale(var(--ggs, 0.8));
  transform: rotate(180deg) scale(var(--ggs, 0.8));
}
.mobile-navbar .vertical-menu li.active a {
  color: #c5a4f8;
}
.mobile-navbar .vertical-menu .submenu {
  display: none;
  padding: 6px 20px 0;
}
.mobile-navbar .vertical-menu .submenu li {
  padding: 4px 0;
}
.mobile-navbar .vertical-menu .submenu li a {
  color: #666;
  font-size: 16px;
  font-weight: 400;
}
.mobile-navbar .vertical-menu .submenu li .switch {
  right: 0;
  top: 5px;
}
.mobile-navbar .vertical-menu .submenu li:after {
  content: "";
  display: none;
}
.mobile-navbar .vertical-menu .submenu .submenu li {
  padding: 3px 0;
}

/*
=======================================================
=                                                     =
=                        Footer                       =
=                                                     =
=======================================================
*/
footer .footer-widgets {
  padding-bottom: 30px;
}
footer .footer-widgets .widget {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #FFF;
}
footer .footer-widgets .widget:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
footer .footer-widgets:after {
  content: "";
  display: block;
  clear: both;
  border-bottom: solid 1px #FFF;
  margin-left: 30px;
  margin-right: 30px;
  margin-top: 30px;
}
footer .footer-copyright {
  font-size: 14px;
  color: #999;
}
footer .footer-widgets > .row > div {
  border-right: solid 1px #FFF;
}
footer .footer-widgets > .row > div:last-child {
  border-right: 0;
}

/*
=======================================================
=                                                     =
=                       Layout                        =
=                                                     =
=======================================================
*/
.site-wrapper {
  margin-top: 30px;
  margin-bottom: 30px;
}

.section-title {
  font-size: 22px;
  position: relative;
}
.section-title:after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #c5a4f8;
  margin-top: 20px;
}

.page-header .section-title {
  font-size: 28px;
}

.content-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 715px;
}

.sticky-sidebar {
  position: -webkit-sticky;
  /* For Safari */
  position: sticky;
  top: 20px;
  /* Adjust as needed */
}

/*
=======================================================
=                                                     =
=                        Post                         =
=                                                     =
=======================================================
*/
/* Badge */
.category-badge {
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  padding: 3px 10px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  z-index: 1;
}
.category-badge:hover {
  color: #fff;
  background-color: #c5a4f8;
}
.category-badge:before, .category-badge:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.category-badge:before {
  content: "";
  background: rgba(255, 255, 255, 0.2);
  width: 120%;
  left: -130%;
  transform: skew(30deg);
  transition: transform 0.3s cubic-bezier(0.4, 0.5, 0.5, 0.8);
}
.category-badge:hover::before {
  transform: translate3d(100%, 0, 0);
}
.category-badge.absolute {
  position: absolute;
  top: 15px;
  left: 15px;
}
.category-badge.purple {
  background-color: #c5a4f8;
}
.category-badge.blue {
  background-color: #a2b9fc;
}
.category-badge.green {
  background-color: #97d7a1;
}
.category-badge.pink {
  background-color: #fca2bd;
}
.category-badge.orange {
  background-color: #fea98e;
}

/* Header */
/* Thumb */
.post .thumb {
  position: relative;
  overflow: hidden;
}
.post .thumb img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post .thumb:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.post-featured-lg .thumb {
  background-size: cover;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-featured-lg .thumb:hover {
  transform: scale(1.1);
}

.post-sm .thumb {
  min-height: 75px;
  min-width: 75px;
  max-height: 75px;
  max-width: 75px;
}

.post-list .thumb {
  min-height: 210px;
  max-height: 210px;
  min-width: 255px;
  max-width: 255px;
}

/* Title */
.post-title a {
  color: #333;
  text-decoration: none;
  position: relative;
  display: inline;
  background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size 0.3s;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-title a:hover {
  color: currentColor;
  background-size: 100% 100%;
}

.post-sm .post-title {
  font-size: 15px;
}

.post-featured-lg .post-title {
  font-size: 26px;
}
.post-featured-lg .post-title a {
  color: #333;
}

.post-grid .post-title {
  font-size: 18px;
}

.post-list .post-title {
  font-size: 18px;
}

.post-single .post-title {
  font-size: 28px;
}

/* Meta */
.post-meta {
  margin-left: -2px;
}
.post-meta i {
  display: inline-block;
  margin-right: 3px;
  margin-top: -2px;
}
.post-meta i.gg-calendar-two {
  --ggs: 0.666;
  margin-top: 0;
}
.post-meta i.gg-time {
  --ggs: 0.6;
}
.post-meta i.gg-eye {
  --ggs: 0.666;
}
.post-meta i.gg-comment {
  --ggs: 0.6;
}
.post-meta li.list-inline-item:not(:last-child) {
  margin-right: 5px;
}
.post-meta li.list-inline-item:not(:last-child)::after {
  content: "";
  display: inline-block;
  background-color: #AAA;
  width: 2px;
  height: 2px;
  margin-left: 10px;
}

.post-author {
  line-height: 1.1;
}
.post-author .author-thumb {
  position: relative;
  overflow: hidden;
  height: 40px;
  width: 40px;
}
.post-author .author-thumb img {
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 1;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-author .author-thumb:hover img {
  opacity: 0.8;
}
.post-author.inline .author-thumb {
  height: 27px;
  width: 27px;
}
.post-author .author-details .name {
  color: #666;
  font-size: 15px;
}
.post-author .author-details .name:hover {
  color: #c5a4f8;
}
.post-author.inline .author-thumb img {
  height: 25px;
  width: 25px;
}
.post-author.inline .author-details {
  margin-right: 5px;
}
.post-author.inline .author-details a.name {
  font-size: 14px;
}
.post-author.inline .author-details span:before {
  content: "";
  display: inline-block;
  background-color: #AAA;
  width: 10px;
  height: 1px;
  margin-left: 5px;
  margin-right: 5px;
  vertical-align: middle;
}

.post-wide-meta {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 1;
}

/* Cards */
.posts-wrap .post {
  margin-bottom: 20px;
}
.posts-wrap .post:last-child {
  margin-bottom: 0;
}

.post.counter {
  counter-increment: namun-counter;
  position: relative;
}

.post-single .content {
  font-size: 17px;
  line-height: 1.7;
}
.post-single .content h1, .post-single .content h2, .post-single .content h3, .post-single .content h4, .post-single .content h5, .post-single .content h6 {
  margin: 40px 0 20px 0;
}
.post-single .content a:hover {
  color: #333;
}

.post-list {
  margin-bottom: 20px;
}

.post-sm.counter:before {
  content: counter(namun-counter);
  background-color: #c5a4f8;
  border: solid 1px #fff;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  position: absolute;
  top: -5px;
  left: -5px;
  padding: 0 6px;
  text-align: center;
  border-radius: 4px;
  z-index: 1;
}

.post-featured-lg {
  background-size: cover;
  height: 520px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-featured-lg .post-details {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  bottom: 30px;
  left: 30px;
  max-width: 500px;
}

.post-featured-wrap .post-details {
  left: 50px;
  bottom: 100px;
}

/*
=======================================================
=                                                     =
=                      Comments                       =
=                                                     =
=======================================================
*/
.comments .thumb {
  flex: 0 0 auto;
  /* Prevents the flex item from shrinking */
}
.comments .thumb img {
  max-width: 100%;
  /* Ensures the image scales down if necessary */
  height: auto;
  /* Maintains the aspect ratio of the image */
  display: block;
  /* Removes any whitespace below the image */
}
.comments li.comment {
  margin-bottom: 30px;
}
.comments li.comment ul.children {
  list-style: none;
  margin: 30px 0 0;
  padding-left: 80px;
}
.comments li.comment:last-child {
  margin-bottom: 0;
}

/*
=======================================================
=                                                     =
=                       Widgets                       =
=                                                     =
=======================================================
*/
/* Widgets main */
.widget {
  margin-bottom: 20px;
}
.widget ul.styled-list {
  list-style: none;
  padding: 0;
}
.widget ul.styled-list ul {
  margin-left: 25px;
  margin-top: 10px;
}
.widget ul.styled-list li {
  position: relative;
  margin-bottom: 10px;
  vertical-align: middle;
}
.widget ul.styled-list li a {
  color: #666;
}
.widget ul.styled-list li a:hover {
  color: #c5a4f8;
  margin-left: 5px;
}
.widget ul.styled-list li::before {
  content: "\f054";
  color: #c5a4f8;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 7px;
  display: inline-block;
  border: solid 1px;
  border-radius: 100px;
  margin-right: 10px;
  text-align: center;
  height: 17px;
  line-height: 16px;
  position: relative;
  top: -3px;
  width: 17px;
}
.widget ul.styled-list li:last-child {
  margin-bottom: 0;
}

/* Widget title */
.widget .widget-title {
  position: relative;
}
.widget .widget-title:after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #c5a4f8;
  margin-top: 20px;
}

/* Widget about */
.widget .about-author-thumbs a {
  margin-left: -15px;
}
.widget .about-author-thumbs a:first-child {
  margin-left: 0;
}

/* Widget authors */
.widget .widget-authors-wrap {
  margin-bottom: 25px;
}
.widget .widget-authors-wrap .slick-dots {
  padding-left: 15px;
  text-align: left;
}
.widget .widget-author .author-details h4 {
  font-size: 16px;
}
.widget .widget-author .author-details span {
  font-size: 14px;
}
.widget .widget-author .author-details .link {
  font-size: 14px;
}
.widget .widget-author .author-details i {
  --ggs: 0.5;
}

/*
=======================================================
=                                                     =
=                     Components                      =
=                                                     =
=======================================================
*/
/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  padding: 0;
  margin-bottom: 20px;
  list-style: none;
  background-color: transparent;
  border-radius: 0;
}

.breadcrumb .breadcrumb-item a {
  color: #777;
}

.breadcrumb .breadcrumb-item a:hover {
  color: #c5a4f8;
}

.breadcrumb .breadcrumb-item.active {
  color: #c5a4f8;
}

/* Pagination */
.pagination li.page-item {
  margin: 0 5px;
}
.pagination li.page-item a.page-link {
  color: #444;
  font-size: 14px;
  height: 35px;
  line-height: 35px;
  padding: 0;
  position: relative;
  width: 35px;
}
.pagination li.page-item a.page-link i {
  transform: scale(var(--ggs, 0.5)) translate(10px, 12px);
  position: absolute;
}
.pagination li.page-item a.page-link:hover {
  background-color: #c5a4f8;
  border-color: #c5a4f8 !important;
  color: #FFF;
}
.pagination li.page-item a.page-link:focus {
  outline: none;
  box-shadow: none;
}
.pagination li.page-item.active a.page-link {
  background-color: #c5a4f8;
  border-color: #c5a4f8 !important;
  color: #FFF;
}

/* Accordion */
.accordion {
  --bs-accordion-bg: rgb(255 255 255 / 20%);
  --bs-accordion-border-color: #FFF;
  --bs-accordion-active-color: #000000;
  --bs-accordion-active-bg: rgb(255 255 255 / 50%);
  --bs-accordion-color: #777;
  --bs-accordion-btn-icon-width: 0.8rem;
}

.accordion-button {
  font-size: 14px;
  font-weight: 600;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #c5a4f8;
}

/* Buttons */
.btn {
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  --bs-btn-focus-box-shadow: none;
  --bs-btn-active-bg: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  --bs-btn-padding-x: 30px;
  --bs-btn-padding-y: 9.5px;
}
.btn:before, .btn:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.btn:before {
  content: "";
  background: rgba(255, 255, 255, 0.2);
  width: 120%;
  left: -130%;
  transform: skew(30deg);
  transition: transform 0.3s cubic-bezier(0.4, 0.5, 0.5, 0.8);
}
.btn:hover::before {
  transform: translate3d(100%, 0, 0);
}
.btn:focus-visible {
  background-color: #c5a4f8;
  box-shadow: none;
}

.btn:focus {
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.btn-primary {
  color: #FFF;
  background-color: #c5a4f8;
  border: 0;
}
.btn-primary:hover {
  color: #fff;
  background-color: #c5a4f8;
}

.btn-sm {
  --bs-btn-padding-x: 10px;
  --bs-btn-padding-y: 3px;
}

.btn-share {
  color: #333;
  padding: 8px 10px;
  margin-right: -10px;
  background-color: transparent;
  border: 0;
}

.btn-close {
  box-sizing: content-box;
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  top: 25px;
  right: 25px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-close:focus {
  outline: none;
  box-shadow: none;
}
.btn-close:hover {
  opacity: 1;
}

.btn-icon {
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  border-radius: 5px;
  background-color: #c5a4f8;
  padding: 0;
}
.btn-icon:hover {
  color: #fff;
  background-color: #c5a4f8;
}
.btn-icon:before, .btn-icon:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.btn-icon:before {
  content: "";
  background: rgba(255, 255, 255, 0.2);
  width: 120%;
  left: -140%;
  transform: skew(30deg);
  transition: transform 0.3s cubic-bezier(0.4, 0.5, 0.5, 0.8);
}
.btn-icon:hover::before {
  transform: translate3d(100%, 0, 0);
}

.cat-buttons li {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 15px;
}
.cat-buttons li a {
  color: #999;
  font-size: 15px;
  padding: 3px 20px;
}
.cat-buttons li a:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.cat-buttons li a.active {
  background-color: #c5a4f8;
  color: #FFF;
  border: solid 1px #c5a4f8;
}

/* Forms */
.form-control {
  display: block;
  border-radius: 5px;
  width: 100%;
  padding: 8.5px 20px;
  font-size: 14px;
  color: #999;
  background: rgba(255, 255, 255, 0.5);
  border: solid 1px #FFF;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.form-control:focus {
  border-color: #c5a4f8;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control-sm {
  padding: 0.25rem 0.5rem;
  font-size: 12px;
}

.form-control:disabled {
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.search-form-404 {
  max-width: 404px;
}

/* Call to Action */
.cta h1 {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 48px;
}
.cta .cta-content {
  max-width: 650px;
}

/* Overlays */
.overlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.overlay.active {
  visibility: visible;
  opacity: 1;
}

.overlay-menu {
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 1;
}

.overlay-main {
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 999;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.overlay-post {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 100%);
}

/* Search popup */
.search-popup {
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  z-index: 6;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.search-popup.visible {
  opacity: 1;
  visibility: visible;
}
.search-popup .search-content {
  width: 400px;
}

.share-popup {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  width: 205px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.share-popup.visible {
  opacity: 1;
  visibility: visible;
}

/* Social icons */
.social-icons-simple li a {
  color: #333;
  font-size: 15px;
}
.social-icons-simple li a:hover {
  color: #c5a4f8;
}
.social-icons-simple li.list-inline-item:not(:last-child) {
  margin-right: 14px;
}

.social-icons-square li a {
  color: #fff;
  font-size: 12px;
  background-color: #c5a4f8;
  border-radius: 3px;
  display: block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.social-icons-square li a:hover {
  color: #fff;
  background-color: #c5a4f8;
  opacity: 0.8;
}
.social-icons-square li.list-inline-item:not(:last-child) {
  margin-right: 0;
}
.social-icons-square.lg li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.social-icons-text li a {
  color: #c5a4f8;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.social-icons-text li a:hover {
  opacity: 0.8;
}
.social-icons-text li a i {
  color: #fff;
  font-size: 12px;
  background-color: #c5a4f8;
  border-radius: 3px;
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  position: relative;
}
.social-icons-text li a span {
  display: inline;
  margin-left: 10px;
}
.social-icons-text li.list-inline-item:not(:last-child) {
  margin-right: 1rem;
}

/* Icons */
.gg-moon,
.gg-moon::after {
  display: block;
  box-sizing: border-box;
  border-radius: 50%;
}

.gg-moon {
  overflow: hidden;
  position: relative;
  transform: rotate(-135deg) scale(var(--ggs, 1));
  width: 20px;
  height: 20px;
  border: 2px solid;
  border-bottom-color: transparent;
}

.gg-moon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 18px;
  border: 2px solid transparent;
  box-shadow: 0 0 0 2px;
  top: 8px;
  left: 2px;
}

.gg-sun {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 24px;
  height: 24px;
  background: linear-gradient(to bottom, currentColor 4px, transparent 0) no-repeat 5px -6px/2px 6px, linear-gradient(to bottom, currentColor 4px, transparent 0) no-repeat 5px 14px/2px 6px, linear-gradient(to bottom, currentColor 4px, transparent 0) no-repeat -8px 5px/6px 2px, linear-gradient(to bottom, currentColor 4px, transparent 0) no-repeat 14px 5px/6px 2px;
  border-radius: 100px;
  box-shadow: inset 0 0 0 2px;
  border: 6px solid transparent;
}

.gg-sun::after,
.gg-sun::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 24px;
  height: 2px;
  border-right: 4px solid;
  border-left: 4px solid;
  left: -6px;
  top: 5px;
}

.gg-sun::before {
  transform: rotate(-45deg);
}

.gg-sun::after {
  transform: rotate(45deg);
}

.gg-calendar-two {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 18px;
  height: 18px;
  border: 2px solid;
  border-radius: 3px;
}

.gg-calendar-two::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 2px;
  background: currentColor;
  border-radius: 3px;
  top: 2px;
  left: 2px;
}

.gg-search {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 16px;
  height: 16px;
  border: 2px solid;
  border-radius: 100%;
  margin-left: -4px;
  margin-top: -4px;
}

.gg-search::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  border-radius: 3px;
  width: 2px;
  height: 8px;
  background: currentColor;
  transform: rotate(-45deg);
  top: 10px;
  left: 12px;
}

.gg-chevron-down-o {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 22px;
  border: 2px solid;
  border-radius: 100px;
}

.gg-chevron-down-o::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
  left: 7px;
  top: 6px;
}

.gg-more-vertical-alt {
  transform: scale(var(--ggs, 1));
}

.gg-more-vertical-alt,
.gg-more-vertical-alt::after,
.gg-more-vertical-alt::before {
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 100%;
}

.gg-more-vertical-alt::after,
.gg-more-vertical-alt::before {
  content: "";
  position: absolute;
}

.gg-more-vertical-alt::after {
  left: 0;
  top: 6px;
}

.gg-more-vertical-alt::before {
  top: -6px;
  right: 0;
}

.gg-time {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: 2px solid transparent;
  box-shadow: 0 0 0 2px currentColor;
}

.gg-time::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 7px;
  height: 7px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  top: 1px;
  left: 5px;
}

.gg-eye {
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 24px;
  height: 18px;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  overflow: hidden;
  box-sizing: border-box;
}

.gg-eye::after,
.gg-eye::before {
  content: "";
  display: block;
  border-radius: 100px;
  position: absolute;
  box-sizing: border-box;
}

.gg-eye::after {
  top: 2px;
  box-shadow: inset 0 -8px 0 2px, inset 0 0 0 2px;
  width: 24px;
  height: 24px;
}

.gg-eye::before {
  width: 8px;
  height: 8px;
  border: 2px solid;
  bottom: 4px;
  left: 8px;
}

.gg-comment {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 20px;
  height: 16px;
  border: 2px solid;
  border-bottom: 0;
  box-shadow: -6px 8px 0 -6px, 6px 8px 0 -6px;
}

.gg-comment::after,
.gg-comment::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 8px;
}

.gg-comment::before {
  border: 2px solid;
  border-top-color: transparent;
  border-bottom-left-radius: 20px;
  right: 4px;
  bottom: -6px;
  height: 6px;
}

.gg-comment::after {
  height: 2px;
  background: currentColor;
  box-shadow: 0 4px 0 0;
  left: 4px;
  top: 4px;
}

.gg-path-trim {
  display: block;
  position: relative;
  box-sizing: border-box;
  transform: scale(var(--ggs, 1));
  width: 14px;
  height: 14px;
}

.gg-path-trim::after,
.gg-path-trim::before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
}

.gg-path-trim::after {
  border-left: 3px solid;
  border-top: 3px solid;
}

.gg-path-trim::before {
  background: currentColor;
  bottom: 0;
  right: 0;
}

.gg-chevron-left {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 22px;
  border: 2px solid transparent;
  border-radius: 100px;
}

.gg-chevron-left::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-left: 2px solid;
  transform: rotate(45deg);
  left: 6px;
  top: 4px;
}

.gg-chevron-right {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 22px;
  border: 2px solid transparent;
  border-radius: 100px;
}

.gg-chevron-right::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(-45deg);
  right: 6px;
  top: 4px;
}

.gg-mic {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 16px;
  height: 12px;
  border-bottom-left-radius: 120px;
  border-bottom-right-radius: 120px;
  border: 2px solid;
  border-top: 0;
  margin-top: 3px;
}

.gg-mic::after,
.gg-mic::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
}

.gg-mic::after {
  border: 2px solid;
  width: 8px;
  height: 18px;
  left: 2px;
  top: -10px;
  border-radius: 4px;
}

.gg-mic::before {
  width: 10px;
  height: 4px;
  top: 12px;
  left: 1px;
  border-right: 4px solid transparent;
  box-shadow: 0 2px 0, inset -2px 0 0;
}

.gg-clipboard {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 18px;
  height: 18px;
  border: 2px solid;
  border-radius: 2px;
}

.gg-clipboard::after,
.gg-clipboard::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  border-radius: 2px;
  width: 10px;
  left: 2px;
}

.gg-clipboard::before {
  border: 2px solid;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  top: -2px;
  height: 6px;
}

.gg-clipboard::after {
  height: 2px;
  background: currentColor;
  box-shadow: 0 -4px 0 0;
  bottom: 2px;
}

.gg-arrow-up {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 22px;
}

.gg-arrow-up::after,
.gg-arrow-up::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: 4px;
}

.gg-arrow-up::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid;
  border-left: 2px solid;
  transform: rotate(45deg);
  left: 7px;
}

.gg-arrow-up::before {
  width: 2px;
  height: 16px;
  left: 10px;
  background: currentColor;
}

.gg-play-button {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 22px;
}

.gg-play-button::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 0;
  height: 10px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid;
  top: 6px;
  left: 9px;
}

/* Slick */
.slick-list {
  margin: 0 -8px;
}

.slick-slide {
  margin: 0 8px;
}

.slick-dots {
  left: 0;
  right: 0;
}
.slick-dots li {
  margin: 0 3px;
  height: 10px;
  width: 10px;
}
.slick-dots li button {
  border-radius: 50%;
  border: solid 1px #c5a4f8;
  background-color: transparent;
  padding: 0;
  height: 10px;
  width: 10px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.slick-dots li button:before {
  content: "";
  height: 10px;
  width: 10px;
}
.slick-dots li button:hover {
  background-color: #c5a4f8;
}
.slick-dots li.slick-active button {
  background-color: #c5a4f8;
}

.slick-prev, .slick-next {
  background-color: #c5a4f8;
  border: 0;
  border-radius: 5px;
  height: 30px;
  width: 30px;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.slick-prev:hover, .slick-next:hover {
  background-color: #c5a4f8;
  opacity: 0.8;
}
.slick-prev:focus, .slick-next:focus {
  background: #c5a4f8;
}

.slick-next {
  right: 20px;
}
.slick-next:before {
  content: "";
  display: block;
  height: 1px;
  width: 12px;
  background-color: #fff;
  position: absolute;
  left: 9px;
  top: 50%;
}
.slick-next:after {
  content: "";
  display: block;
  height: 7px;
  width: 7px;
  border-left: solid 1px #fff;
  border-bottom: solid 1px #fff;
  position: absolute;
  right: 10px;
  top: 12px;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}

.slick-prev {
  left: 20px;
}
.slick-prev:before {
  content: "";
  display: block;
  height: 1px;
  width: 12px;
  background-color: #fff;
  position: absolute;
  left: 9px;
  top: 50%;
}
.slick-prev:after {
  content: "";
  display: block;
  height: 7px;
  width: 7px;
  border-left: solid 1px #fff;
  border-bottom: solid 1px #fff;
  position: absolute;
  left: 10px;
  top: 12px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.slick-prev-inline, .slick-next-inline {
  background-color: #c5a4f8;
  border: 0;
  border-radius: 5px;
  height: 30px;
  width: 30px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.slick-prev-inline:hover, .slick-next-inline:hover {
  background-color: #c5a4f8;
  opacity: 0.8;
}

.slick-next-inline:before {
  content: "";
  display: block;
  height: 1px;
  width: 12px;
  background-color: #fff;
  position: absolute;
  left: 9px;
  top: 50%;
}
.slick-next-inline:after {
  content: "";
  display: block;
  height: 7px;
  width: 7px;
  border-left: solid 1px #fff;
  border-bottom: solid 1px #fff;
  position: absolute;
  right: 10px;
  top: 12px;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}

.slick-prev-inline:before {
  content: "";
  display: block;
  height: 1px;
  width: 12px;
  background-color: #fff;
  position: absolute;
  left: 9px;
  top: 50%;
}
.slick-prev-inline:after {
  content: "";
  display: block;
  height: 7px;
  width: 7px;
  border-left: solid 1px #fff;
  border-bottom: solid 1px #fff;
  position: absolute;
  left: 10px;
  top: 12px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.slick-arrows-absolute {
  position: absolute;
  left: 70px;
  bottom: 70px;
}

.slick-slider {
  display: none;
}
.slick-slider.slick-initialized {
  display: block;
}

/* Tags */
.tags {
  display: inline-block;
  font-size: 14px;
  border: solid 1px #c5a4f8;
  border-radius: 5px;
  padding: 2px 10px;
  margin-bottom: 5px;
}
.tags:hover {
  color: #fff;
  background-color: #c5a4f8;
}

/*
=======================================================
=                                                     =
=                     Utilities                       =
=                                                     =
=======================================================
*/
/* Utilities */
.bg-blur-white {
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

hr {
  margin: 20px 0;
  opacity: 1;
}
hr.white {
  border-top-color: #fff;
}

.text-small {
  font-size: 13px;
}

.text-gray {
  color: #999;
}

.color-purple {
  color: #c5a4f8;
}

.color-pink {
  color: #fca2bd;
}

.color-orange {
  color: #fea98e;
}

.color-blue {
  color: #a2b9fc;
}

.color-green {
  color: #97d7a1;
}

.bg-purple {
  background-color: #c5a4f8;
}

.bg-pink {
  background-color: #fca2bd;
}

.bg-orange {
  background-color: #fea98e;
}

.bg-blue {
  background-color: #a2b9fc;
}

.bg-green {
  background-color: #97d7a1;
}

/* Dark mode */
body.dark-mode {
  color: #fff;
}
body.dark-mode:before {
  content: "";
  background: #7947b1;
  background: linear-gradient(45deg, #39999f 0%, #7947b1 25%, #4878b1 50%, #7947b1 75%, #39999f 100%);
}
body.dark-mode .preloader {
  background: #7947b1;
  background: linear-gradient(45deg, #39999f 0%, #7947b1 25%, #4878b1 50%, #7947b1 75%, #39999f 100%);
}
body.dark-mode .logo-default {
  display: none;
  visibility: hidden;
}
body.dark-mode .logo-light {
  display: inline;
  visibility: visible;
}
body.dark-mode .bg-blur-white,
body.dark-mode .header-default.clone {
  background-color: rgba(255, 255, 255, 0.05);
}
body.dark-mode .form-control {
  background-color: rgba(255, 255, 255, 0.1);
}
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode a,
body.dark-mode .mobile-navbar .vertical-menu li a,
body.dark-mode .form-control,
body.dark-mode .btn-share,
body.dark-mode .btn-icon i,
body.dark-mode b, body.dark-mode strong,
body.dark-mode .blockquote-footer,
body.dark-mode blockquote p,
body.dark-mode .pagination li.page-item a.page-link,
body.dark-mode .breadcrumb .breadcrumb-item a,
body.dark-mode .breadcrumb-item + .breadcrumb-item::before,
body.dark-mode .accordion-button:not(.collapsed),
body.dark-mode .accordion-item,
body.dark-mode .accordion-button {
  color: #fff;
}
body.dark-mode .table {
  --bs-table-color: #FFF;
}
body.dark-mode .table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-color-type: #FFF;
}
body.dark-mode .widget ul li a,
body.dark-mode h1 a,
body.dark-mode h2 a,
body.dark-mode h3 a,
body.dark-mode h4 a,
body.dark-mode h5 a,
body.dark-mode h6 a,
body.dark-mode .post-author .author-details .name,
body.dark-mode .widget .widget-author .author-details .link {
  color: #fff;
}
body.dark-mode .widget ul li a:hover,
body.dark-mode h1 a:hover,
body.dark-mode h2 a:hover,
body.dark-mode h3 a:hover,
body.dark-mode h4 a:hover,
body.dark-mode h5 a:hover,
body.dark-mode h6 a:hover,
body.dark-mode .post-author .author-details .name:hover,
body.dark-mode .widget .widget-author .author-details .link:hover {
  color: #c5a4f8;
}
body.dark-mode .post-single .content a {
  color: #c5a4f8;
}
body.dark-mode .post-single .content a:hover {
  color: #FFF;
}
body.dark-mode .form-control::placeholder,
body.dark-mode .go-top-wrap::after,
body.dark-mode .go-top-wrap::before {
  color: #fff;
}
body.dark-mode .menu-toggle span {
  background-color: #fff;
}
body.dark-mode footer .footer-widgets:after,
body.dark-mode footer .footer-widgets > .row > div,
body.dark-mode .mobile-navbar,
body.dark-mode .menu-toggle,
body.dark-mode .dropdown-menu::before,
body.dark-mode .dropdown-menu,
body.dark-mode .form-control,
body.dark-mode .header-default.clone,
body.dark-mode hr.white,
body.dark-mode hr,
body.dark-mode blockquote,
body.dark-mode .table {
  border-color: rgba(255, 255, 255, 0.1);
}
body.dark-mode .border-white {
  border-color: rgba(255, 255, 255, 0.1) !important;
}
body.dark-mode .accordion {
  --bs-accordion-border-color: rgba(255, 255, 255, 0.1);
}
body.dark-mode .post-title a {
  color: #FFF;
}
body.dark-mode .post-title a:hover {
  color: currentColor;
}
body.dark-mode .mobile-navbar .btn-close,
body.dark-mode .search-popup .btn-close {
  filter: var(--bs-btn-close-white-filter);
}
body.dark-mode .search-popup,
body.dark-mode .mobile-navbar {
  background: rgba(0, 0, 0, 0.2);
}
body.dark-mode .overlay,
body.dark-mode .overlay-menu {
  background-color: rgba(0, 0, 0, 0.1);
}
body.dark-mode .dropdown-menu,
body.dark-mode .dropdown-menu:before {
  background-color: rgba(0, 0, 0, 0.1);
}
body.dark-mode .share-popup {
  background-color: rgba(0, 0, 0, 0.5);
}
body.dark-mode .post-featured-lg .post-title a,
body.dark-mode .post-wide-meta .post-title {
  color: #333;
}
body.dark-mode .post-featured-lg .post-author .author-details .name,
body.dark-mode .post-wide-meta .post-author .author-details .name {
  color: #444;
}
body.dark-mode .post-featured-lg .post-author .author-details span,
body.dark-mode .post-wide-meta .post-author .author-details span,
body.dark-mode .post-wide-meta .post-meta {
  color: #999;
}
body.dark-mode .text-gray,
body.dark-mode footer .footer-copyright,
body.dark-mode .figure-caption {
  color: rgba(255, 255, 255, 0.7);
}
body.dark-mode .go-top-wrap {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
body.dark-mode .go-top-wrap svg.progress-circle path {
  stroke: #fff;
}

/* Helpers */
.go-top-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.go-top-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.go-top-wrap::after {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  content: "\f062";
  text-align: center;
  line-height: 40px;
  font-size: 12px;
  color: #c5a4f8;
  left: 0;
  top: 0;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.go-top-wrap:hover::after {
  opacity: 0;
}

.go-top-wrap::before {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  content: "\f062";
  text-align: center;
  line-height: 40px;
  font-size: 12px;
  opacity: 0;
  background-color: #c5a4f8;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.go-top-wrap:hover::before {
  opacity: 1;
}

.go-top-wrap svg path {
  fill: none;
}

.go-top-wrap svg.progress-circle path {
  stroke: #c5a4f8;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

@keyframes progress-one {
  0% {
    transform: scalex(0);
    opacity: 0.5;
  }
  90% {
    transform: scalex(1);
    opacity: 1;
  }
  92% {
    transform: scalex(1);
    opacity: 1;
  }
  100% {
    transform: scalex(1);
    opacity: 0;
  }
}
@keyframes progress-two {
  0% {
    transform: scale(0.3, 0.8) translatez(0);
    opacity: 0;
  }
  90% {
    transform: scale(1, 1) translatex(300px) translatez(0);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1) translatex(300px) translatez(0);
    opacity: 0;
  }
}
.preloader {
  background: #f3e6ff;
  background: linear-gradient(45deg, #e6fbff 0%, #f3e6ff 25%, #e7ebff 50%, #f3e6ff 75%, #e6fbff 100%);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  z-index: 10000;
}
.preloader .line {
  position: absolute;
  top: 50%;
  width: 300px;
  left: 50%;
  margin-left: -150px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.preloader .line:before {
  animation: progress-one 4s infinite;
  transform-origin: 0 0;
  content: "";
  display: block;
  width: 300px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.1) 10%, rgba(255, 255, 255, 0.4) 80%, white);
}
.preloader .line:after {
  content: "";
  position: absolute;
  animation: progress-two 4s infinite;
  transform-origin: 90% 50%;
  margin-left: -24px;
  top: -9px;
  width: 30px;
  height: 21px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.55);
  filter: blur(8px);
  box-shadow: 0 0 10px 6px rgba(255, 255, 255, 0.4), -20px 0 15px 4px rgba(255, 255, 255, 0.3), -40px 0 15px 2px rgba(255, 255, 255, 0.2), -60px 0 10px 1px rgba(255, 255, 255, 0.1), -80px 0 10px 1px rgba(255, 255, 255, 0.05);
}

.style-switcher-light {
  display: block;
}

.style-switcher-dark {
  display: none;
}

.play-button {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 13px;
}
.play-button i {
  --ggs: 1.2;
}

.play-time {
  font-size: 12px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  padding: 0 5px;
  bottom: 15px;
  left: 15px;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.audioWrapper iframe {
  width: 100%;
}

/* Responsive */
@media (min-width: 1400px) {
  .container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1164px;
  }
}
@media only screen and (max-width: 767px) {
  .search-popup .search-content {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }

  footer .footer-widgets > .row > div {
    border-right: 0;
  }

  .post-featured-lg {
    height: 450px;
  }
  .post-featured-lg .post-details {
    width: 400px;
  }

  .post-single .post-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .post-featured-lg {
    height: 435px;
  }
  .post-featured-lg .post-details {
    width: calc(100% - 20px);
    left: 10px;
    bottom: 10px;
    padding: 10px !important;
  }
  .post-featured-lg .post-title {
    font-size: 20px;
  }

  .post-list .thumb {
    max-height: 100%;
    min-height: auto;
    min-width: 100%;
  }

  .post-wide-meta {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: 20px;
  }

  .slick-arrows-absolute {
    display: none;
  }

  .go-top-wrap {
    right: 20px;
    bottom: 40px;
  }

  .cta h1 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 425px) {
  .post-featured-lg {
    height: 280px;
  }
}
@media only screen and (max-width: 320px) {
  .post-featured-lg {
    height: 240px;
  }
}
