/* iStudy Theme - Header & Footer only
   Extracted from TemplatesFront/istudy/assets/css/main.css for header-style-one + footer-default. */

:root {
  --bd-ff-body: "Roboto", sans-serif;
  --bd-ff-title: "Roboto", sans-serif;
  --bd-ff-p: "Roboto", sans-serif;
  --ff-fontawesome: "Font Awesome 6 Pro";
  --ff-icomoon: "icomoon";
  --bd-white: #ffffff;
  --bd-theme-black: #00170f;
  --bd-primary: #07a169;
  --bd-secondary: #ffb800;
  --bd-body-text: #808080;
  --bd-fw-bold: 700;
  --bd-fs-body: 16px;
  --bd-fs-p: 16px;
  --bd-fs-h2: 48px;
}

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

html {
  font-size: 10px;
}

body {
  color: var(--bd-body-text);
  font-family: var(--bd-ff-body);
  font-size: var(--bd-fs-body);
  line-height: 1.5;
  background: #fff;
}

h2,
.h2 {
  color: var(--bd-theme-black);
  margin: 0;
  line-height: 1.25;
  font-weight: var(--bd-fw-bold);
  font-family: var(--bd-ff-title);
  font-size: var(--bd-fs-h2);
}

@media (max-width: 1199px) {
  h2,
  .h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  h2,
  .h2 {
    font-size: 32px;
  }
}
@media (max-width: 450px) {
  h2,
  .h2 {
    font-size: 26px;
  }
}

ul {
  margin: 0;
  padding: 0;
}

p {
  font-size: var(--bd-fs-p);
  font-family: var(--bd-ff-p);
  color: var(--bd-body-text);
  margin-bottom: 30px;
  line-height: 30px;
}
p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}
a:focus,
.button:focus {
  outline: none;
}
a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

img {
  max-width: 100%;
  object-fit: cover;
}
button:hover {
  cursor: pointer;
}
button:focus {
  outline: 0;
}

/* iStudy container width (Bootstrap grid loads separately) */
.container {
  --bs-gutter-x: 2.4rem;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1350px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .container {
    max-width: 100%;
  }
}

.section-space {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .section-space {
    padding-top: 65px;
    padding-bottom: 65px;
  }
}

.white-text {
  color: var(--bd-white);
}
.theme-text {
  color: var(--bd-secondary);
}

.bd-section-subtitle {
  color: var(--bd-primary);
  font-size: 16px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.bd-btn {
  font-size: 16px;
  text-transform: capitalize;
  color: var(--bd-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  height: 50px;
  transition: all 0.3s linear;
  border-radius: 6px;
  white-space: nowrap;
}
.bd-btn.btn-extra-large {
  padding: 0 46px;
  height: 76px;
  font-size: 24px;
}
.btn-primary {
  background-color: var(--bd-primary);
}
.btn-primary:hover {
  color: var(--bd-white);
  background-color: var(--bd-secondary);
}

@keyframes btnMarqueeTextX {
  100% {
    transform: translateX(-200%);
  }
}
@keyframes btnMarqueeTextY {
  100% {
    transform: translateY(-200%);
  }
}

.bd-marquee-btn {
  overflow: hidden;
  background: var(--bd-primary);
  color: var(--bd-white);
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.bd-marquee-btn span {
  display: inline-flex;
  position: relative;
  z-index: 3;
  line-height: 1.2;
}
.bd-marquee-btn span::after {
  content: attr(data-text);
  position: absolute;
  white-space: nowrap;
  top: 50%;
  left: 100%;
  transform: translate(100%, -50%);
}
.bd-marquee-btn:hover {
  color: var(--bd-white);
  background-color: var(--bd-secondary);
}
.bd-marquee-btn:hover span {
  animation: btnMarqueeTextX 2s linear infinite;
}
.bd-marquee-btn:hover.marquee-text-y span {
  animation: btnMarqueeTextY 0.5s linear infinite;
}
.bd-marquee-btn.marquee-text-y span::after {
  top: 100%;
  left: 50%;
  transform: translate(-50%, 100%);
}
.bd-marquee-btn.marquee-text-auto span {
  animation: btnMarqueeTextX 2s linear infinite;
}

/* Header style one */
.header-style-one {
  background-color: var(--bd-white);
  box-shadow: 0 1px 2px 1px rgba(3, 11, 30, 0.06), 0 1px 1px 0 rgba(3, 11, 30, 0.1);
}

.bd-header-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 44px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .bd-header-left {
    gap: 0 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .bd-header-left {
    gap: 0 15px;
  }
}

.bd-header-right {
  display: flex;
  align-items: center;
  gap: 0 36px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .bd-header-right {
    gap: 0 15px;
  }
}
@media (max-width: 767px) {
  .bd-header-right {
    gap: 0 8px;
  }
}

.bd-header-sign-btn {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .bd-header-sign-btn {
    gap: 0 10px;
  }
}
@media (max-width: 767px) {
  .bd-header-sign-btn {
    display: none;
  }
}

.bd-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 99;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .bd-header-inner {
    padding: 0 40px;
  }
}
@media (min-width: 1200px) {
  .bd-header-inner {
    padding: 0 55px;
    gap: 0 20px;
  }
}
@media (min-width: 1400px) {
  .bd-header-inner {
    padding: 0 100px;
  }
}

.bd-header-menu {
  text-align: center;
}

.bd-header-logo {
  padding: 14px 0;
  line-height: 1;
}
@media (max-width: 767px) {
  .bd-header-logo {
    padding: 15px 0;
  }
}
.bd-header-logo img {
  max-width: 158px;
}

.bd-sticky {
  position: fixed !important;
  top: 0;
  z-index: 55;
  inset-inline: 0;
  width: 100%;
  animation: headerSlideDown 0.95s ease forwards;
  background: var(--bd-white);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}
.bd-sticky .main-menu li a {
  color: var(--bd-theme-black);
}
.bd-sticky .main-menu li a.active,
.bd-sticky .main-menu > ul > li:hover > a {
  color: var(--bd-primary);
}

@keyframes headerSlideDown {
  from {
    margin-top: -150px;
  }
  to {
    margin-top: 0;
  }
}

.bd-header-hamburger {
  display: none;
  margin-right: 8px;
}
@media (max-width: 1199px) {
  .bd-header-hamburger {
    display: block;
  }
}

.bar-icon {
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: color 0.2s ease-out;
}
.bar-icon span {
  width: 28px;
  height: 2px;
  background: var(--bd-theme-black);
  display: inline-block;
  transition: all 0.3s linear;
  margin-right: 0;
}
.bar-icon span:nth-child(1) {
  width: 21px;
}
.bar-icon span:nth-child(3) {
  width: 15px;
}
.bar-icon:hover span {
  animation: qode-draw 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) forwards;
}
.bar-icon:hover span:nth-child(2) {
  animation-delay: 0.1s;
}
.bar-icon:hover span:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes qode-draw {
  0%,
  100% {
    clip-path: inset(-2px 0);
  }
  42% {
    clip-path: inset(-2px 0 -2px 100%);
  }
  43% {
    clip-path: inset(-2px 100% -2px 0);
  }
}

.sidebar-toggle {
  cursor: pointer;
}

/* Main menu + nested submenu (mega menu omitted) */
.main-menu > ul {
  display: inline-flex;
  gap: 0 44px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .main-menu > ul {
    gap: 0 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .main-menu > ul {
    gap: 0 10px;
  }
}

.main-menu > ul > li:hover > a {
  color: var(--bd-primary);
}
.main-menu > ul > li:hover > ul {
  opacity: 1;
  pointer-events: all;
  top: 100%;
}
.main-menu > ul > li:hover > ul.submenu li:hover > ul {
  opacity: 1;
  pointer-events: all;
  left: 100%;
}

.main-menu li {
  position: relative;
  list-style: none;
}
.main-menu li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--bd-theme-black);
  padding: 28px 0;
  display: inline-block;
  font-family: var(--bd-ff-body);
  position: relative;
  transition: all 0.3s linear;
  text-transform: none;
  text-decoration: none;

}
.main-menu li a.active {
  color: var(--bd-primary);
}

.main-menu .submenu {
  background-color: var(--bd-white);
  box-shadow: 0 30px 70px 0 rgba(11, 6, 70, 0.08);
  padding: 18px 0;
  width: 260px;
  position: absolute;
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: all 0.5s;
  border-radius: 0 0 4px 4px;
  top: 100px;
}
.main-menu .submenu ul {
  background-color: var(--bd-white);
  padding: 18px 0;
  width: 260px;
  position: absolute;
  left: calc(100% + 10px);
  top: 0;
  opacity: 0;
  z-index: 10;
  transition: all 0.5s;
  border-radius: 0 4px 4px 4px;
}
.main-menu .submenu li {
  padding-left: 20px;
  padding-right: 0;
}
.main-menu .submenu li:hover > a {
  color: var(--bd-primary);
}
.main-menu .submenu li:hover > ul {
  opacity: 1;
  transform: none !important;
  pointer-events: all;
}
.main-menu .submenu li a {
  font-size: 16px;
  color: var(--bd-theme-black);
  padding: 8px 12px;
  display: block;
  transition: all 0.5s;
  text-align: left;
  cursor: pointer;
}
.main-menu .submenu li a.active {
  color: var(--bd-primary);
}

.main-menu > ul > li > a::after {
  content: "\f107";
  font-family: var(--ff-fontawesome);
  margin-left: 5px;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  transition: all 0.3s ease-out;
}
.main-menu > ul > li > a:hover::after {
  transform: rotate(180deg);
}

/* Demo footer */
.demo-footer-wrapper {
  position: relative;
  z-index: 5;
}
.demo-footer-area {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 720px;
}
.demo-footer-area .container {
  position: relative;
  z-index: 5;
}

.demo-footer-bg {
  background-size: cover;
  background-position: center top !important;
  position: relative;
  background-repeat: no-repeat !important;
  overflow: hidden;
  background-attachment: fixed;
}
.demo-footer-bg::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.demo-footer-title {
  font-size: 80px;
}
@media (max-width: 1199px) {
  .demo-footer-title {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .demo-footer-title {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .demo-footer-title {
    font-size: 35px;
  }
}

/* header-style-four — rules from TemplatesFront/istudy/assets/css/main.css for index-shop header */
:root {
  --bd-bg-primary: #f5f5f5;
  --bd-border-primary: #e5e5e5;
  --bd-fw-medium: 500;
  --bd-taxonomy-color: #4d4d4d;
  --bd-label-color: #0a0a0a;
  --bd-danger: #ff0033;
  --bd-placeholder: rgba(30, 30, 30, 0.4);
}

.bd-seller-btn a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bd-theme-black);
  transition: all 0.3s ease-in-out;
}
.bd-seller-btn a:hover {
  color: var(--bd-primary);
}
.bd-seller-btn a:hover i {
  color: var(--bd-theme-black);
}

.underline a {
  display: inline;
  background-image: linear-gradient(var(--bd-primary), var(--bd-primary)),
    linear-gradient(var(--bd-primary), var(--bd-primary));
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 83%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
  padding: 0 0 1% 0;
}
.underline a:hover {
  background-size: 0 1px, 100% 1px;
  color: var(--bd-primary) !important;
}

.d-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.d-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-30 {
  gap: 30px;
}

.mb-20 {
  margin-bottom: 20px;
}

.sign-link {
  color: var(--bd-taxonomy-color);
  font-size: 16px;
}

.bd-user-dropdown .form-input-title label {
  margin-bottom: 8px;
  text-transform: capitalize;
  font-size: 16px;
  text-align: left;
  display: block;
  color: var(--bd-label-color);
}
.bd-user-dropdown .form-input-title label span {
  color: var(--bd-danger);
  margin-inline-start: 3px;
}

.form-input {
  position: relative;
}

.checkout-option input {
  display: none;
}
.checkout-option input:checked ~ label::after {
  background-color: var(--bd-primary);
  border-color: var(--bd-primary);
}
.checkout-option input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.checkout-option label {
  font-size: 16px;
  color: var(--bd-taxonomy-color);
  position: relative;
  padding-left: 26px;
  z-index: 1;
}
.checkout-option label a:hover {
  color: var(--bd-primary);
}
.checkout-option label:hover {
  cursor: pointer;
}

.header-style-four .bd-header-inner {
  padding: 0 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .header-style-four .bd-header-inner {
    padding: 15px 0;
  }
}
@media (max-width: 575px) {
  .header-style-four .bd-header-inner {
    padding: 10px 0;
  }
}
.header-style-four .bd-header-logo {
  display: none;
}
@media (max-width: 575px) {
  .header-style-four .bd-header-left {
    gap: 0 30px;
  }
}
.header-style-four .bd-header-right {
  gap: 0 30px;
}
@media (max-width: 450px) {
  .header-style-four .bd-header-right {
    gap: 0 15px;
  }
}
.header-style-four.bd-sticky .bd-header-inner {
  padding: 0 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-style-four.bd-sticky .bd-support-content {
    display: none;
  }
}
@media (max-width: 450px) {
  .header-style-four.bd-sticky .bd-support-meta .icon {
    display: none;
  }
}

.bd-header-shop-middle {
  border-bottom: 1px solid var(--bd-border-primary);
  padding-top: 25px;
  padding-bottom: 25px;
}
@media (max-width: 575px) {
  .bd-header-shop-middle {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.bd-header-shop-search {
  position: relative;
}
.bd-header-shop-search input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
  background: transparent;
  border: 1px solid var(--bd-border-primary);
  outline: none;
  font-size: 16px;
  color: var(--bd-theme-black);
  border-radius: 60px;
}
.bd-header-shop-search button {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--bd-primary);
}

.bd-support-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 575px) {
  .bd-support-meta {
    display: none;
  }
}
.bd-support-meta .icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: var(--bd-bg-primary);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--bd-theme-black);
}
.bd-support-meta .title {
  font-size: 18px;
  color: var(--bd-primary);
}

.bd-user-dropdown .dropdown-menu {
  background-color: var(--bd-white);
  z-index: 99999;
  right: 40px !important;
  left: auto !important;
  min-width: 360px;
  padding: 30px;
  border: none;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
  border-top: 3px solid var(--bd-primary);
}
.bd-user-dropdown .bd-dropdown-login-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--bd-border-primary);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.bd-user-dropdown .title {
  font-size: 18px;
  color: var(--bd-primary);
}
.bd-user-dropdown .new-link {
  font-size: 16px;
  color: var(--bd-theme-black);
  font-weight: 400;
}

.bd-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 99;
  padding: 0 100px;
}
@media only screen and (min-width: 1700px) and (max-width: 1800px),
  only screen and (min-width: 1600px) and (max-width: 1700px) {
  .bd-header-inner {
    padding: 0 15px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .bd-header-inner {
    padding: 0 55px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-header-inner {
    padding: 0 15px;
    gap: 0 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-header-inner {
    padding: 0 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-header-inner {
    padding: 0 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-header-inner {
    padding: 0 15px;
  }
}

.bd-header-menu {
  text-align: center;
}
.bd-header-menu ul li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  top: 80px;
}

.bd-header-category {
  position: relative;
}
.bd-header-category:hover .bd-category-dropdown {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

.bd-header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.bd-header-meta::after {
  display: none;
}
.bd-header-meta .meta-icon {
  color: var(--bd-primary);
  font-size: 20px;
  position: relative;
}
.bd-header-meta .item-number {
  position: absolute;
  right: -10px;
  top: -9px;
  width: 20px;
  height: 20px;
  background-color: var(--bd-primary);
  color: var(--bd-white);
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  font-size: 14px;
}

.bd-category-btn {
  padding: 0px 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--bd-theme-black);
  cursor: pointer;
  transition: all linear 0.3s;
  border: 1px solid var(--bd-border-primary);
  height: 40px;
}
.bd-category-btn:hover {
  color: var(--bd-primary);
  border-color: var(--bd-primary);
}
.bd-category-dropdown {
  min-width: 250px;
  background-color: var(--bd-white);
  box-shadow: 0px 20px 30px rgba(1, 15, 28, 0.1);
  padding: 10px 0;
  transition: 0.3s;
  border-radius: 0 0 8px 8px;
  z-index: 1001;
  position: absolute;
  top: 60px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top center;
}
.bd-category-dropdown ul li {
  position: relative;
  list-style: none;
}
.bd-category-dropdown ul li a {
  display: block;
  padding: 12px 20px;
  position: relative;
  color: var(--bd-theme-black);
  font-size: 16px;
  line-height: 1;
  font-weight: var(--bd-fw-medium);
}
.bd-category-dropdown ul li:hover .bd-category-submenu {
  opacity: 1;
  visibility: visible;
}
.bd-category-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 250px;
  min-height: 100%;
  background: var(--bd-bg-primary);
  opacity: 0;
  padding: 5px 0;
  visibility: hidden;
  border-radius: 6px;
  transition: all 0.3s linear;
}
.bd-category-children {
  position: relative;
}
.bd-category-children::after {
  position: absolute;
  content: "\f105";
  right: 20px;
  top: 12px;
  font-family: var(--ff-fontawesome);
}

.bd-sticky {
  position: fixed !important;
  top: 0;
  z-index: 55;
  inset-inline-end: 0;
  inset-inline-start: 0;
  width: 100%;
  animation: headerSlideDown 0.95s ease forwards;
  background: var(--bd-white);
  border-top: 0;
  box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.1);
}
.bd-sticky .logo-white {
  display: none;
}
.bd-sticky .logo-black {
  display: block;
}
.bd-sticky.header-style-two .btn-outline-primary {
  border: 1px solid var(--bd-primary);
  color: var(--bd-primary);
}
.bd-sticky.header-style-two .btn-outline-primary:hover {
  color: var(--bd-white);
}
.bd-sticky.header-style-two .bd-header-meta::after {
  display: none;
}
.bd-sticky.header-style-two .bd-header-meta .meta-icon {
  color: var(--bd-theme-black);
}
.bd-sticky.header-style-four .bd-header-logo {
  display: block;
}
.bd-sticky .bd-header-meta.has-white .meta-icon {
  color: var(--bd-theme-black);
}
.bd-sticky .bd-header-meta.has-white .item-number {
  background-color: var(--bd-primary);
  color: var(--bd-white);
}

.bd-header-logo {
  padding: 14px 0px;
  line-height: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-header-logo {
    padding: 15px 0;
  }
}
.bd-header-logo img {
  max-width: 158px;
}

.bd-header-hamburger {
  display: none;
  margin-right: 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .bd-header-hamburger {
    display: block;
  }
}

.bar-icon {
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: color 0.2s ease-out;
}
.bar-icon span {
  width: 28px;
  height: 2px;
  background: var(--bd-theme-black);
  display: inline-block;
  transition: color 0.2s ease-out;
  margin: 0 auto;
  margin-right: 0;
}
.bar-icon span:nth-child(1) {
  width: 21px;
  transition: all 0.3s linear;
}
.bar-icon span:nth-child(2) {
  width: 28px;
  transition: all 0.3s linear;
}
.bar-icon span:nth-child(3) {
  width: 15px;
  transition: all 0.3s linear;
}
.bar-icon:hover span {
  animation: qode-draw 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
}
.bar-icon:hover span:nth-child(2) {
  animation-delay: 0.1s;
}
.bar-icon:hover span:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes qode-draw {
  0%,
  100% {
    clip-path: inset(-2px 0);
  }
  42% {
    clip-path: inset(-2px 0 -2px 100%);
  }
  43% {
    clip-path: inset(-2px 100% -2px 0);
  }
}

/* header-style-one — markup uses .demo-header; .demo-header .main-menu > ul matches theme .main-menu > ul; no extra rules */

/* header-style-two — from TemplatesFront/istudy/assets/css/main.css (university / style-two header) */
.logo-black {
  display: none;
}

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

.h-40px {
  height: 40px;
}

.btn-outline-border-primary {
  background-color: var(--bd-primary);
  color: var(--bd-white);
  border: 1px solid var(--bd-primary);
}
.btn-outline-border-primary:hover {
  color: var(--bd-primary);
  border-color: var(--bd-primary);
  background-color: transparent;
}

.bd-header-top {
  background-color: var(--bd-primary);
  padding: 10px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 1700px) and (max-width: 1800px),
  only screen and (min-width: 1600px) and (max-width: 1700px) {
  .bd-header-top {
    padding: 10px 15px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .bd-header-top {
    padding: 10px 55px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-header-top {
    padding: 10px 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-header-top {
    padding: 10px 33px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-header-top {
    padding: 10px 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .bd-header-top {
    padding: 10px 35px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}
@media (max-width: 575px) {
  .bd-header-top {
    padding: 15px 15px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

.bd-header-top.style-two {
  background-color: transparent;
  padding: 15px 120px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .bd-header-top.style-two {
    padding: 15px 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-header-top.style-two {
    padding: 15px 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-header-top.style-two {
    padding: 15px 30px;
  }
}
@media (max-width: 450px) {
  .bd-header-top.style-two {
    padding: 15px 15px;
  }
}

.bd-header-top-left ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0 56px;
}
@media (max-width: 575px) {
  .bd-header-top-left ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}
.bd-header-top-left ul li:first-child {
  position: relative;
}
.bd-header-top-left ul li:first-child:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  inset-inline-end: -26px;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%);
}
@media (max-width: 575px) {
  .bd-header-top-left ul li:first-child:before {
    display: none;
  }
}
.bd-header-top-left ul li span {
  color: var(--bd-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  margin-inline-end: 12px;
}
.bd-header-top-left ul li a {
  color: var(--bd-white);
  font-size: 16px;
  transition: all 0.3s linear;
}
.bd-header-top-right span {
  color: var(--bd-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  margin-inline-end: 12px;
}
.bd-header-top-right a {
  color: var(--bd-white);
  font-size: 16px;
}

.header-style-two {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 99;
}
.header-style-two .bd-header-area {
  background-color: var(--bd-white);
  margin: 0 120px;
  padding: 0 30px;
  box-shadow: 0px 30px 100px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .header-style-two .bd-header-area {
    margin: 0 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .header-style-two .bd-header-area {
    margin: 0 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-style-two .bd-header-area {
    margin: 0 30px;
  }
}
@media (max-width: 450px) {
  .header-style-two .bd-header-area {
    margin: 15px 15px;
  }
}
.header-style-two .bd-header-inner {
  padding: 0 0;
}
.header-style-two .btn-outline-primary {
  border: 1px solid var(--bd-white);
  color: var(--bd-white);
}
.header-style-two .btn-outline-primary:hover {
  border-color: var(--bd-primary);
}
.header-style-two .bar-icon span {
  background: var(--bd-theme-black);
}

/* header-style-three — from main.css */
.header-style-three {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
.header-style-three .main-menu li a {
  color: var(--bd-white);
}
.header-style-three .main-menu li a.active {
  color: var(--bd-secondary);
}
.header-style-three .main-menu > ul > li:hover > a {
  color: var(--bd-secondary);
}
.header-style-three .bd-header-meta .meta-icon {
  color: var(--bd-white);
}
.header-style-three .bd-header-meta .item-number {
  background-color: var(--bd-white);
  color: var(--bd-theme-black);
}
.header-style-three .bar-icon span {
  background: var(--bd-white);
}
.header-style-three.bd-sticky .bd-header-logo {
  display: none;
}
.header-style-three.bd-sticky .bd-header-logo-sticky {
  display: block;
}
.header-style-three.bd-sticky .bd-header-meta .meta-icon {
  color: var(--bd-primary);
}
.header-style-three.bd-sticky .bd-header-meta .item-number {
  background-color: var(--bd-primary);
  color: var(--bd-white);
}
.header-style-three.bd-sticky .bar-icon span {
  background: var(--bd-theme-black);
}
.header-style-three .bd-header-logo-sticky {
  display: none;
  padding: 27px 0px;
  line-height: 1;
}

.bd-header-inner-two {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 999;
}

.btn-outline-border-secondary {
  background-color: var(--bd-secondary);
  color: var(--bd-white);
  border: 1px solid var(--bd-secondary);
}
.btn-outline-border-secondary:hover {
  color: var(--bd-secondary);
  border-color: var(--bd-secondary);
  background-color: transparent;
}

/* header-transparent — kindergarten / bd-header-transparent */
.bd-header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
@media only screen and (min-width: 1700px) and (max-width: 1800px),
  only screen and (min-width: 1600px) and (max-width: 1700px),
  only screen and (min-width: 1400px) and (max-width: 1599px) {
  .bd-header-transparent .bd-header-inner {
    padding: 0 55px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-header-transparent .bd-header-inner {
    padding: 0 15px;
    gap: 0 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-header-transparent .bd-header-inner {
    padding: 0 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-header-transparent .bd-header-inner {
    padding: 0 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-header-transparent .bd-header-inner {
    padding: 0 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .bd-header-transparent .bd-header-meta.has-white .meta-icon {
    color: var(--bd-theme-black);
  }
}

.bd-header-meta.has-white .meta-icon {
  color: var(--bd-white);
}
.bd-header-meta.has-white .item-number {
  background-color: var(--bd-white);
  color: var(--bd-theme-black);
}

/* header-transparent-two — online-course / bd-header-transparent-two */
:root {
  --bd-black: #000000;
  --bd-border-secondary: rgba(220, 220, 220, 1);
}

.bd-header-top.style-three {
  background-color: var(--bd-secondary);
}
.bd-header-top.style-three .bd-header-top-left ul li:first-child::before {
  background-color: rgba(0, 0, 0, 0.5);
}
.bd-header-top.style-three .bd-header-top-left ul li span {
  color: var(--bd-black);
}
.bd-header-top.style-three .bd-header-top-left ul li a {
  color: var(--bd-black);
}
.bd-header-top.style-three .bd-header-top-right span {
  color: var(--bd-black);
}
.bd-header-top.style-three .bd-header-top-right a {
  color: var(--bd-black);
}

.bd-header-transparent-two {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
.bd-header-transparent-two .header-style-one {
  background-color: transparent;
  box-shadow: none;
  border-bottom: 1px solid var(--bd-border-secondary);
}
.bd-header-transparent-two .bd-sticky {
  background-color: var(--bd-white);
  box-shadow: 0px 1px 2px 1px rgba(3, 11, 30, 0.06), 0px 1px 1px 0px rgba(3, 11, 30, 0.1);
  border-bottom: none;
}
.bd-header-transparent-two .bd-category-btn {
  border: 1px solid var(--bd-black);
}

.btn-outline-primary {
  border: 1px solid var(--bd-primary);
  color: var(--bd-primary);
}
.btn-outline-primary:hover {
  color: var(--bd-white);
  border-color: var(--bd-primary);
  background-color: var(--bd-primary);
}
.btn-outline-primary.active {
  color: var(--bd-white);
  border-color: var(--bd-primary);
  background-color: var(--bd-primary);
}

/* offcanvas, search, cart, mobile-menu panels — from TemplatesFront/istudy/assets/css/main.css (aligned with theme/istudy/js/main.js: .info-open, .overlay-open, .bd-search-opened, .bd-sidebar-cart-opened, .body-overlay.opened) */
:root {
  --transition: all 0.3s ease-in-out;
}

.mb-30 {
  margin-bottom: 30px;
}

.gap-10 {
  gap: 10px;
}

.btn-secondary {
  background-color: var(--bd-secondary);
  color: var(--bd-white);
}
.btn-secondary:hover {
  color: var(--bd-white);
  background-color: var(--bd-primary);
}

.social-icon-list {
  display: inline-flex;
  gap: 15px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .social-icon-list {
    gap: 10px;
  }
}
.social-icon-list li {
  list-style: none;
}

.theme-social ul li a {
  color: var(--bd-theme-black);
  background-color: transparent;
  width: 40px;
  height: 40px;
  display: inline-flex;
  border: 1px solid var(--bd-border-primary);
  border-radius: 3px;
  text-align: center;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.theme-social ul li a i {
  transition: all 0.3s ease-in-out;
}
.theme-social ul li a:hover {
  color: var(--bd-white);
  border-color: var(--bd-primary);
  background-color: var(--bd-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .theme-social ul li a {
    width: 30px;
    height: 30px;
  }
}
.theme-social ul li:hover .facebook {
  background-color: #1877f2;
  border-color: #1877f2;
}
.theme-social ul li:hover .twitter {
  background-color: #1da1f2;
  border-color: #1da1f2;
}
.theme-social ul li:hover .linkedin {
  background-color: #0a66c2;
  border-color: #0a66c2;
}
.theme-social ul li:hover .instagram {
  background-color: #e4405f;
  border-color: #e4405f;
}

.bd-offcanvas-area {
  background: var(--bd-bg-primary) none repeat scroll 0 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 500px;
  height: 100%;
  transform: translateX(calc(100% + 80px));
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  border-inline-start: 1px solid var(--bd-border-primary);
}
.bd-offcanvas-area ::-webkit-scrollbar {
  display: none;
}
@media (max-width: 575px) {
  .bd-offcanvas-area {
    width: 400px;
  }
}
@media (max-width: 450px) {
  .bd-offcanvas-area {
    width: 340px;
  }
}
.bd-offcanvas-area.info-open {
  opacity: 1;
  transform: translateX(0);
}
.bd-offcanvas-logo a img {
  width: 160px;
}
@media (max-width: 575px) {
  .bd-offcanvas-logo a img {
    width: 140px;
  }
}
.bd-offcanvas-content {
  padding-bottom: 45px;
}
.bd-offcanvas-wrapper {
  position: relative;
  height: 100%;
  padding: 45px 45px;
}
@media (max-width: 575px) {
  .bd-offcanvas-wrapper {
    padding: 30px 30px;
  }
}
.bd-offcanvas-top {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bd-border-primary);
}
.bd-offcanvas-search {
  position: relative;
}
.bd-offcanvas-search button {
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--bd-secondary);
}
.bd-offcanvas-search button:hover {
  color: var(--bd-primary);
}
.bd-offcanvas-search input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #d5d5d5;
  font-size: 18px;
  color: var(--bd-theme-black);
  border-radius: 0;
}
.bd-offcanvas-search input::placeholder {
  color: var(--bd-placeholder);
}
.bd-offcanvas-search input:focus {
  border-radius: 0;
}
.bd-offcanvas-title-meta {
  color: var(--bd-theme-black);
  margin-bottom: 17px;
}
.bd-offcanvas-text p {
  margin-bottom: 25px;
}
.bd-offcanvas-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  inset-inline-start: 0;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(10px);
}
.bd-offcanvas-overlay:hover {
  cursor: pointer;
}
.bd-offcanvas-overlay.overlay-open {
  opacity: 1;
  visibility: visible;
}
.bd-offcanvas-contact ul li:not(:last-child) {
  margin-bottom: 20px;
}
.bd-offcanvas-contact ul li a:hover {
  color: var(--bd-primary);
}
.bd-offcanvas-contact ul li a:hover i {
  background: var(--bd-primary);
  color: var(--bd-white);
  border-color: var(--bd-primary);
}
.bd-offcanvas-contact-icon i {
  display: inline-flex;
  width: 36px;
  height: 36px;
  justify-content: center;
  text-align: center;
  align-items: center;
  border-radius: 50%;
  background: transparent;
  color: var(--bd-theme-black);
  border: 1px solid var(--bd-border-secondary);
  transition: all 0.3s ease-out 0s;
}

.bd-offcanvas-close-icon {
  line-height: 1;
  color: var(--bd-primary);
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.bd-offcanvas-close-icon .bd-offcanvas-m-lines {
  position: relative;
  display: block;
  height: 12px;
  width: 33px;
}
.bd-offcanvas-close-icon.animation--flip .bd-offcanvas-m-line.line--1 {
  top: 6px;
  transform: rotate(45deg);
}
.bd-offcanvas-close-icon.animation--flip .bd-offcanvas-m-line.line--3 {
  opacity: 0;
}
.bd-offcanvas-close-icon.animation--flip .bd-offcanvas-m-line.line--2 {
  top: 6px;
  transform: rotate(-45deg);
}
.bd-offcanvas-close-icon .bd-offcanvas-m-line {
  position: absolute;
  inset-inline-start: 0;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  transition: top 0.15s ease, transform 0.3s ease;
}
.bd-offcanvas-close-icon .bd-offcanvas-m-line.line--1 {
  top: 0;
}
.bd-offcanvas-close-icon .bd-offcanvas-m-line.line--2 {
  top: 5px;
}
.bd-offcanvas-close-icon .bd-offcanvas-m-line.line--3 {
  bottom: 0;
}
.bd-offcanvas-close-icon:hover .bd-offcanvas-m-line {
  animation: qode-draw 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
}
.bd-offcanvas-close-icon:hover .bd-offcanvas-m-line:nth-of-type(2) {
  animation-delay: 0.1s;
}

.bd-search-popup {
  width: 100%;
  font-size: 64px;
  padding-bottom: 17px;
}
.bd-search-popup-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 99999;
  min-height: 300px;
  align-items: center;
  background-color: var(--bd-bg-primary);
  transform: translateY(-10%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in;
}
.bd-search-popup-area.bd-search-opened {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}
.bd-search-form {
  position: relative;
  width: 100%;
  border-bottom: 2px solid var(--bd-border-primary);
  padding-bottom: 20px;
}
.bd-search-input {
  background-color: transparent;
  display: flex;
  align-items: center;
}
.bd-search-input input {
  width: 100%;
  color: var(--bd-placeholder);
  height: auto;
  background-color: transparent;
  font-size: 32px;
  margin: 0 55px;
  border: none;
  outline: none;
}
.bd-search-input input::placeholder {
  color: var(--bd-placeholder);
  opacity: 0.5;
  font-size: 32px;
}
.bd-search-input input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.bd-search-submit {
  position: absolute;
  inset-inline-start: 0;
  top: 40%;
  transform: translateY(-50%);
}
.bd-search-submit button {
  color: var(--bd-primary);
  font-size: 35px;
  position: relative;
  transform: translateY(-10px);
  border: none;
  background: transparent;
  cursor: pointer;
}
.bd-search-submit button:hover {
  color: var(--bd-secondary);
}
.bd-search-close-btn {
  position: absolute;
  inset-inline-end: 0;
  top: 40%;
  transform: translateY(-50%);
}
.bd-search-close-btn button {
  font-size: 50px;
  color: var(--bd-primary);
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}
.bd-search-close-btn button:hover {
  transform: rotate(90deg);
  color: var(--bd-secondary);
}
.bd-search-overlay {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  transition-delay: 0.3s;
  transition: var(--transition);
}
.bd-search-overlay.bd-search-opened {
  opacity: 1;
  visibility: visible;
}
.bd-search-overlay.bd-search-opened:hover {
  cursor: pointer;
}

.bd-mobile-menu-smaller {
  display: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .bd-mobile-menu-smaller {
    display: block;
  }
}

.bd-offcanvas-menu ul li {
  position: relative;
  list-style: none;
}
.bd-offcanvas-menu ul li:not(:last-child) {
  margin-bottom: 8px;
}
.bd-offcanvas-menu ul li > a {
  display: block;
  font-size: 16px;
  color: var(--bd-theme-black);
  padding: 10px 0;
  padding-inline-end: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.bd-offcanvas-menu ul li > a.active {
  color: var(--bd-primary);
}
.bd-offcanvas-menu ul li > a:hover {
  color: var(--bd-primary);
}
.bd-offcanvas-menu ul li.active > a {
  color: var(--bd-primary);
}
.bd-offcanvas-menu ul li.active > .bd-menu-close {
  background-color: var(--bd-primary);
  border-color: var(--bd-primary);
  color: var(--bd-white);
}
.bd-offcanvas-menu ul li.active > .bd-menu-close i {
  transform: rotate(90deg);
}
.bd-offcanvas-menu ul li .submenu,
.bd-offcanvas-menu ul li .mega-menu {
  display: none;
  padding-inline-start: 20px;
}
.bd-offcanvas-menu ul li .has-homemenu {
  padding-inline-start: 0;
}
.bd-offcanvas-menu ul li .homemenu-title {
  color: var(--bd-white);
}

.bd-menu-close {
  position: absolute;
  inset-inline-end: 0;
  top: 8px;
  font-size: 18px;
  color: #7f8387;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #7f8387;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
  background: transparent;
  cursor: pointer;
}
.bd-menu-close i {
  transition: all 0.3s ease-in-out;
}

.bd-sidebar-cart-area {
  position: fixed;
  right: 0;
  top: 0;
  width: 380px;
  height: 100%;
  transform: translateX(calc(100% + 80px));
  background: var(--bd-white) none repeat scroll 0 0;
  transition: 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999999999;
  scrollbar-width: none;
}
@media (max-width: 575px) {
  .bd-sidebar-cart-area {
    width: 100%;
  }
}
.bd-sidebar-cart-area::-webkit-scrollbar {
  display: none;
}
.bd-sidebar-cart-area.bd-sidebar-cart-opened {
  transform: translateX(0);
}
.bd-sidebar-cart-wrapper {
  position: relative;
  min-height: 100%;
  padding: 30px 30px;
}
.bd-sidebar-cart-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--bd-border-primary);
  margin-bottom: 20px;
  padding-bottom: 15px;
}
.bd-sidebar-cart-close-btn {
  background: transparent;
  color: var(--bd-theme-black);
  font-size: 28px;
  border: none;
  cursor: pointer;
}
.bd-sidebar-cart-close-btn:hover {
  transform: rotate(90deg);
  color: var(--bd-primary);
}
.bd-sidebar-cart-widget {
  height: calc(100vh - 335px);
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.bd-sidebar-cart-widget::-webkit-scrollbar {
  display: none;
}
.bd-sidebar-cart-widget-item {
  position: relative;
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid rgba(129, 129, 129, 0.2);
  align-items: center;
}
.bd-sidebar-cart-widget-item:first-child {
  padding-top: 0;
}
.bd-sidebar-cart-widget-item:last-child {
  border-bottom: 0;
}
.bd-sidebar-cart-thumb {
  border: 1px solid var(--bd-border-primary);
  margin-right: 15px;
  width: 80px;
  height: 100%;
}
.bd-sidebar-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bd-sidebar-cart-title {
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: 500;
}
.bd-sidebar-cart-title a:hover {
  color: var(--bd-primary);
}
.bd-sidebar-cart-content {
  padding-right: 15px;
}
.bd-sidebar-cart-content .bd-product-quantity {
  width: 75px;
  padding: 0;
}
.bd-sidebar-cart-content .bd-product-quantity .bd-cart-input[type="text"] {
  height: 30px;
  text-align: center;
  font-size: 13px;
  border: 1px solid var(--bd-border-primary);
  background-color: var(--bd-white);
  padding: 0;
}
.bd-sidebar-cart-content .bd-product-quantity .bd-cart-plus,
.bd-sidebar-cart-content .bd-product-quantity .bd-cart-minus {
  width: 20px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  font-size: 13px;
  left: 3px;
}
.bd-sidebar-cart-content .bd-product-quantity .bd-cart-plus svg,
.bd-sidebar-cart-content .bd-product-quantity .bd-cart-minus svg {
  transform: translateY(-1px);
  width: 10px;
}
.bd-sidebar-cart-content .bd-product-quantity .bd-cart-plus::after,
.bd-sidebar-cart-content .bd-product-quantity .bd-cart-minus::after {
  display: none;
}
.bd-sidebar-cart-content .bd-product-quantity .bd-cart-plus {
  left: auto;
  right: 3px;
}
.bd-sidebar-cart-del {
  position: absolute;
  top: 15px;
  right: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  color: var(--bd-theme-black);
  font-size: 14px;
}
.bd-sidebar-cart-del:hover {
  color: var(--bd-primary);
}
.bd-sidebar-cart-checkout {
  padding-top: 15px;
  width: 100%;
  background: var(--bd-white);
  border-top: 2px solid var(--bd-border-primary);
}
.bd-sidebar-cart-checkout-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.bd-sidebar-cart-checkout-title h4,
.bd-sidebar-cart-checkout-title h5 {
  display: inline-block;
  margin-bottom: 0;
  text-transform: capitalize;
}
.bd-sidebar-cart-checkout-title span {
  font-size: 24px;
  color: var(--bd-theme-black);
  font-weight: 700;
}
.bd-sidebar-cart-price {
  font-size: 16px;
  font-weight: 500;
  color: var(--bd-primary);
}
.bd-sidebar-cart-quantity {
  font-size: 14px;
  font-weight: 500;
}
.bd-sidebar-cart-empty {
  margin-top: 100px;
  margin-bottom: 50px;
}
.bd-sidebar-cart-empty img {
  margin-bottom: 30px;
}
.bd-sidebar-cart-empty p {
  font-size: 16px;
  color: var(--bd-theme-black);
  margin-bottom: 15px;
}

.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 23, 15, 0.5);
  backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  visibility: hidden;
  opacity: 0;
  transition: 0.45s ease-in-out;
}
.body-overlay.apply {
  opacity: 1;
  visibility: visible;
}
.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}
.body-overlay:hover {
  cursor: pointer;
}

/* === Blog Frontend === */
.basic-pagination {
  margin-top: 50px;
  text-align: center;
}
.basic-pagination ul {
  display: inline-flex;
  gap: 15px;
}
.basic-pagination ul li {
  list-style: none;
}
.basic-pagination ul li a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  background-color: transparent;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.basic-pagination ul li a:hover {
  background-color: var(--bd-bg-primary);
  color: var(--bd-primary);
}
.basic-pagination ul li .current {
  background-color: var(--bd-primary);
  color: var(--bd-white);
}
.basic-pagination ul li .prev, .basic-pagination ul li .next {
  background-color: var(--bd-bg-primary);
  color: var(--bd-primary);
  font-size: 20px;
}

.bd-blog-wrapper.blog-standard {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}
.bd-blog-wrapper.blog-standard:not(:last-child) {
  margin-bottom: 30px;
}
.bd-blog-wrapper.blog-standard:hover .bd-blog-thumb::before {
  animation: shine 800ms;
}
.bd-blog-wrapper.blog-standard:hover .bd-blog-thumb img {
  transform: scale(1.1);
}
.bd-blog-wrapper.blog-standard .bd-blog-thumb {
  width: 100%;
  height: 400px;
  overflow: hidden;
  transition: all 0.3s ease-out 0s;
  position: relative;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-blog-wrapper.blog-standard .bd-blog-thumb {
    height: 100%;
  }
}
.bd-blog-wrapper.blog-standard .bd-blog-thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.bd-blog-wrapper.blog-standard .bd-blog-thumb img {
  object-fit: cover;
  transition: all 0.3s ease-out 0s;
  overflow: hidden;
}
.bd-blog-wrapper.blog-standard .bd-blog-meta-item {
  display: flex;
  align-items: center;
  gap: 15px 20px;
  padding: 18px 30px;
  flex-wrap: wrap;
  background-color: var(--primary-rgb-05);
  margin-bottom: 0;
  margin-right: 0;
}
.bd-blog-wrapper.blog-standard .bd-blog-meta-item span {
  font-size: 16px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.bd-blog-wrapper.blog-standard .bd-blog-meta-item span i {
  color: var(--bd-primary);
}
.bd-blog-wrapper.blog-standard .bd-blog-content {
  padding: 30px 30px;
  border-radius: 0 0 10px 10px;
  background-color: var(--bd-white);
}
.bd-blog-wrapper.blog-standard .bd-blog-title {
  font-size: 32px;
}
.bd-blog-wrapper .bd-blog-title a {
  text-decoration: none;
  font-family: var(--bd-ff-title);
  color: var(--bd-theme-black);
}
.bd-blog-wrapper .bd-blog-title a:hover {
  color: var(--bd-primary);
}

.bd-blog-wrapper .bd-blog-thumb {
  overflow: hidden;
  transition: all 0.3s ease-out 0s;
  position: relative;
}
.bd-blog-wrapper .bd-blog-thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.bd-blog-wrapper:hover .bd-blog-thumb::before {
  animation: shine 800ms;
}

.bd-blog-meta-item {
  display: inline-flex;
  gap: 0 8px;
  align-items: center;
  font-size: 16px;
  font-weight: var(--bd-fw-regular);
}
.bd-blog-meta-item:not(:last-child) {
  margin-right: 15px;
}
@media (max-width: 575px) {
  .bd-blog-meta-item:not(:last-child) {
    margin-right: 10px;
  }
}
.bd-blog-meta-item a:hover {
  color: var(--bd-primary);
}
.bd-blog-meta-item .meta-icon {
  color: var(--bd-primary);
}
.bd-blog-meta-item .meta-thumb {
  height: 40px;
  width: 40px;
  min-width: 40px;
}
.bd-blog-meta-item .meta-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.bd-blog-meta-item .meta-text {
  color: var(--bd-taxonomy-color);
}
.bd-blog-meta-item .meta-author {
  color: var(--bd-taxonomy-color);
}
.bd-blog-wrapper .bd-blog-btn a {
  border: 1px solid var(--bd-primary);
  color: var(--bd-primary);
  background: transparent;
  padding: 8px 20px;
  display: inline-block;
  border-radius: 4px;
}
.bd-blog-wrapper .bd-blog-btn a:hover {
  background: var(--bd-primary);
  color: #fff;
}
.bd-blog-wrapper .bd-blog-content p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3em;
}
.bd-blog-details-title {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--bd-ff-title);
  color: var(--bd-theme-black);
  line-height: 1.3;
}

/* === ContentBox Form Fix === */
.is-boxes .is-box .formview-container,
.is-boxes .is-box .form-wrapper,
.is-boxes .is-box [data-module="form-builder"],
.is-boxes .is-box form[id^="form_"] {
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}
