/*
	Table Of Content ==========

	1. General Styles
	2. Layout
	3. Components
	4. Utilities
	5. Custom Components

*/
::-moz-selection {
  color: #fff;
  background-color: var(--theme);
}

::selection {
  color: #fff;
  background-color: var(--theme);
}

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

body {
  overflow-x: hidden;
}

a:not(.alert-link):not(.btn-link):not([class*=link-underline]) {
  text-decoration: none;
}

b,
strong {
  font-weight: 700;
}

img {
  max-width: 100%;
  border-style: none;
}

ul, ol {
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", sans-serif;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white .title-small {
  color: #FFF;
}

.btn-link {
  text-decoration: none;
}

dl, ul, ol {
  list-style-position: outside;
}

ul li, ol li {
  padding: 0;
}

dl {
  margin-left: 0;
  margin-bottom: 30px;
}

dl dd {
  margin-bottom: 10px;
}

[class=fi],
[class^=fi-] {
  display: inline-flex;
}

.fi {
  display: inline-flex;
}

.sticky-top {
  position: sticky;
  top: 100px;
}
@media (max-width: 991.98px) {
  .sticky-top {
    position: static;
  }
}

.heading-bx {
  margin-bottom: 35px;
}
.heading-bx h1,
.heading-bx h2,
.heading-bx h3 {
  margin-bottom: 0;
}
.heading-bx.text-center p {
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}
.heading-bx .title-head {
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
}
.heading-bx.text-white .title-head {
  color: #fff;
}
.heading-bx.text-white p {
  color: #fff;
  opacity: 0.7;
}

.page-content {
  padding-top: 80px;
}

.bg-dark {
  background-color: var(--black);
}

.bg-light {
  background-color: #F7F6F9;
}

.text-white {
  color: #fff !important;
}

/* ==============================
   GRID VARIABLES
============================== */
/* ==============================
   MIXINS
============================== */
/* ==============================
   CONTAINER
============================== */
.container {
  width: 100%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1320px;
  }
}

.container-fluid {
  width: 100%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

/* ==============================
   ROW
============================== */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

/* ==============================
   BASE COLUMN
============================== */
[class^=col] {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
}

.col {
  flex: 1 0 0%;
}

/* ==============================
   RESPONSIVE COLUMNS
============================== */
.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 0) {
  .col-xs-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

@media (min-width: 0) {
  .col-xs-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

@media (min-width: 0) {
  .col-xs-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 0) {
  .col-xs-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (min-width: 0) {
  .col-xs-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

@media (min-width: 0) {
  .col-xs-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 0) {
  .col-xs-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

@media (min-width: 0) {
  .col-xs-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

@media (min-width: 0) {
  .col-xs-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (min-width: 0) {
  .col-xs-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

@media (min-width: 0) {
  .col-xs-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

@media (min-width: 0) {
  .col-xs-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 0) {
  .col-xs {
    flex: 1 0 0%;
  }
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

@media (min-width: 576px) {
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

@media (min-width: 576px) {
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 576px) {
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (min-width: 576px) {
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 576px) {
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

@media (min-width: 576px) {
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

@media (min-width: 576px) {
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (min-width: 576px) {
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

@media (min-width: 576px) {
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

@media (min-width: 576px) {
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
}

@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (min-width: 768px) {
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

@media (min-width: 992px) {
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (min-width: 992px) {
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

@media (min-width: 992px) {
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

@media (min-width: 992px) {
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (min-width: 992px) {
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

@media (min-width: 992px) {
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

@media (min-width: 992px) {
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
}

@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

@media (min-width: 1200px) {
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 1200px) {
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (min-width: 1200px) {
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1200px) {
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

@media (min-width: 1200px) {
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (min-width: 1200px) {
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

@media (min-width: 1200px) {
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
}

.search-offcanvas {
  --bs-offcanvas-height: 260px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 9999;
  max-height: 100%;
  height: var(--bs-offcanvas-height);
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}
.search-offcanvas.show {
  visibility: visible;
  transform: none;
}
.search-offcanvas .offcanvas-body {
  padding: 60px;
}
.search-offcanvas .btn-search {
  position: absolute;
  right: 5px;
  top: 0;
  padding: 10px;
}
.search-offcanvas .search-group {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.search-offcanvas .form-select {
  position: absolute;
  left: 0;
  z-index: 999;
  width: 115px;
  border-radius: 0;
  border-width: 0 1px 0 0;
  background-color: transparent;
  padding: 17px 18px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%23000' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 10px;
  outline: 0;
}
.search-offcanvas .form-control {
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 10px 10px 130px;
  height: 50px;
  width: 100%;
  outline: 0;
}
@media (max-width: 767px) {
  .search-offcanvas {
    --bs-offcanvas-height: 230px;
  }
  .search-offcanvas .offcanvas-body {
    padding: 30px;
  }
}
@media (max-width: 591px) {
  .search-offcanvas {
    --bs-offcanvas-height: 205px;
  }
  .search-offcanvas .offcanvas-body {
    padding: 20px 10px;
  }
  .search-offcanvas .search-group {
    margin-bottom: 20px;
  }
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.search-suggest {
  padding: 6px 12px;
  background-color: #F7F6F9;
  border-radius: 6px;
  font-size: 13px;
}
.search-suggest:hover {
  background-color: var(--theme);
  color: #000;
}

.fade {
  transition: opacity 0.15s linear;
}

.search-backdrop.fade {
  opacity: 0;
}

.search-backdrop.show {
  opacity: 0.5;
  visibility: visible;
}

.search-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  visibility: hidden;
}

.btn-search {
  padding: 12px;
  display: inline-block;
}

.p-a0 {
  padding: 0;
}

.p-a5 {
  padding: 5px;
}

.p-a10 {
  padding: 10px;
}

.p-a15 {
  padding: 15px;
}

.p-a20 {
  padding: 20px;
}

.p-a25 {
  padding: 25px;
}

.p-a30 {
  padding: 30px;
}

.p-a40 {
  padding: 40px;
}

.p-a50 {
  padding: 50px;
}

.p-a60 {
  padding: 60px;
}

.p-a70 {
  padding: 70px;
}

.p-a80 {
  padding: 80px;
}

.p-a90 {
  padding: 90px;
}

.p-a100 {
  padding: 100px;
}

.p-t0 {
  padding-top: 0;
}

.p-t5 {
  padding-top: 5px;
}

.p-t10 {
  padding-top: 10px;
}

.p-t15 {
  padding-top: 15px;
}

.p-t20 {
  padding-top: 20px;
}

.p-t30 {
  padding-top: 30px;
}

.p-t40 {
  padding-top: 40px;
}

.p-t50 {
  padding-top: 50px;
}

.p-t60 {
  padding-top: 60px;
}

.p-t70 {
  padding-top: 70px;
}

.p-t80 {
  padding-top: 80px;
}

.p-t90 {
  padding-top: 90px;
}

.p-t100 {
  padding-top: 100px;
}

.p-b0 {
  padding-bottom: 0;
}

.p-b5 {
  padding-bottom: 5px;
}

.p-b10 {
  padding-bottom: 10px;
}

.p-b15 {
  padding-bottom: 15px;
}

.p-b20 {
  padding-bottom: 20px;
}

.p-b30 {
  padding-bottom: 30px;
}

.p-b40 {
  padding-bottom: 40px;
}

.p-b50 {
  padding-bottom: 50px;
}

.p-b60 {
  padding-bottom: 60px;
}

.p-b70 {
  padding-bottom: 70px;
}

.p-b80 {
  padding-bottom: 80px;
}

.p-b90 {
  padding-bottom: 90px;
}

.p-b100 {
  padding-bottom: 100px;
}

.p-l0 {
  padding-left: 0;
}

.p-l5 {
  padding-left: 5px;
}

.p-l10 {
  padding-left: 10px;
}

.p-l15 {
  padding-left: 15px;
}

.p-l20 {
  padding-left: 20px;
}

.p-l30 {
  padding-left: 30px;
}

.p-l40 {
  padding-left: 40px;
}

.p-l50 {
  padding-left: 50px;
}

.p-l60 {
  padding-left: 60px;
}

.p-l70 {
  padding-left: 70px;
}

.p-l80 {
  padding-left: 80px;
}

.p-l90 {
  padding-left: 90px;
}

.p-l100 {
  padding-left: 100px;
}

.p-r0 {
  padding-right: 0;
}

.p-r5 {
  padding-right: 5px;
}

.p-r10 {
  padding-right: 10px;
}

.p-r15 {
  padding-right: 15px;
}

.p-r20 {
  padding-right: 20px;
}

.p-r30 {
  padding-right: 30px;
}

.p-r40 {
  padding-right: 40px;
}

.p-r50 {
  padding-right: 50px;
}

.p-r60 {
  padding-right: 60px;
}

.p-r70 {
  padding-right: 70px;
}

.p-r80 {
  padding-right: 80px;
}

.p-r90 {
  padding-right: 90px;
}

.p-r100 {
  padding-right: 100px;
}

.p-lr0 {
  padding-left: 0;
  padding-right: 0;
}

.p-lr5 {
  padding-left: 5px;
  padding-right: 5px;
}

.p-lr10 {
  padding-left: 10px;
  padding-right: 10px;
}

.p-lr15 {
  padding-left: 15px;
  padding-right: 15px;
}

.p-lr20 {
  padding-left: 20px;
  padding-right: 20px;
}

.p-lr30 {
  padding-left: 30px;
  padding-right: 30px;
}

.p-lr40 {
  padding-left: 40px;
  padding-right: 40px;
}

.p-lr50 {
  padding-left: 50px;
  padding-right: 50px;
}

.p-lr60 {
  padding-left: 60px;
  padding-right: 60px;
}

.p-lr70 {
  padding-left: 70px;
  padding-right: 70px;
}

.p-lr80 {
  padding-left: 80px;
  padding-right: 80px;
}

.p-lr90 {
  padding-left: 90px;
  padding-right: 90px;
}

.p-lr100 {
  padding-left: 100px;
  padding-right: 100px;
}

.p-tb0 {
  padding-bottom: 0;
  padding-top: 0;
}

.p-tb5 {
  padding-bottom: 5px;
  padding-top: 5px;
}

.p-tb10 {
  padding-bottom: 10px;
  padding-top: 10px;
}

.p-tb15 {
  padding-bottom: 15px;
  padding-top: 15px;
}

.p-tb20 {
  padding-bottom: 20px;
  padding-top: 20px;
}

.p-tb30 {
  padding-bottom: 30px;
  padding-top: 30px;
}

.p-tb40 {
  padding-bottom: 40px;
  padding-top: 40px;
}

.p-tb50 {
  padding-bottom: 50px;
  padding-top: 50px;
}

.p-tb60 {
  padding-bottom: 60px;
  padding-top: 60px;
}

.p-tb70 {
  padding-bottom: 70px;
  padding-top: 70px;
}

.p-tb80 {
  padding-bottom: 80px;
  padding-top: 80px;
}

.p-tb90 {
  padding-bottom: 90px;
  padding-top: 90px;
}

.p-tb100 {
  padding-bottom: 100px;
  padding-top: 100px;
}

.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.m-a0 {
  margin: 0;
}

.m-a5 {
  margin: 5px;
}

.m-a10 {
  margin: 10px;
}

.m-a15 {
  margin: 15px;
}

.m-a20 {
  margin: 20px;
}

.m-a25 {
  margin: 25px;
}

.m-a30 {
  margin: 30px;
}

.m-a40 {
  margin: 40px;
}

.m-a50 {
  margin: 50px;
}

.m-a60 {
  margin: 60px;
}

.m-a70 {
  margin: 70px;
}

.m-a80 {
  margin: 80px;
}

.m-a90 {
  margin: 90px;
}

.m-a100 {
  margin: 100px;
}

.m-t0 {
  margin-top: 0;
}

.m-t5 {
  margin-top: 5px;
}

.m-t10 {
  margin-top: 10px;
}

.m-t15 {
  margin-top: 15px;
}

.m-t20 {
  margin-top: 20px;
}

.m-t30 {
  margin-top: 30px;
}

.m-t40 {
  margin-top: 40px;
}

.m-t50 {
  margin-top: 50px;
}

.m-t60 {
  margin-top: 60px;
}

.m-t70 {
  margin-top: 70px;
}

.m-t80 {
  margin-top: 80px;
}

.m-t90 {
  margin-top: 90px;
}

.m-t100 {
  margin-top: 100px;
}

.m-b0 {
  margin-bottom: 0;
}

.m-b5 {
  margin-bottom: 5px;
}

.m-b10 {
  margin-bottom: 10px;
}

.m-b15 {
  margin-bottom: 15px;
}

.m-b20 {
  margin-bottom: 20px;
}

.m-b30 {
  margin-bottom: 30px;
}

.m-b40 {
  margin-bottom: 40px;
}

.m-b50 {
  margin-bottom: 50px;
}

.m-b60 {
  margin-bottom: 60px;
}

.m-b70 {
  margin-bottom: 70px;
}

.m-b80 {
  margin-bottom: 80px;
}

.m-b90 {
  margin-bottom: 90px;
}

.m-b100 {
  margin-bottom: 100px;
}

.m-l0 {
  margin-left: 0;
}

.m-l5 {
  margin-left: 5px;
}

.m-l10 {
  margin-left: 10px;
}

.m-l15 {
  margin-left: 15px;
}

.m-l20 {
  margin-left: 20px;
}

.m-l30 {
  margin-left: 30px;
}

.m-l40 {
  margin-left: 40px;
}

.m-l50 {
  margin-left: 50px;
}

.m-l60 {
  margin-left: 60px;
}

.m-l70 {
  margin-left: 70px;
}

.m-l80 {
  margin-left: 80px;
}

.m-l90 {
  margin-left: 90px;
}

.m-l100 {
  margin-left: 100px;
}

.m-r0 {
  margin-right: 0;
}

.m-r5 {
  margin-right: 5px;
}

.m-r10 {
  margin-right: 10px;
}

.m-r15 {
  margin-right: 15px;
}

.m-r20 {
  margin-right: 20px;
}

.m-r30 {
  margin-right: 30px;
}

.m-r40 {
  margin-right: 40px;
}

.m-r50 {
  margin-right: 50px;
}

.m-r60 {
  margin-right: 60px;
}

.m-r70 {
  margin-right: 70px;
}

.m-r80 {
  margin-right: 80px;
}

.m-r90 {
  margin-right: 90px;
}

.m-r100 {
  margin-right: 100px;
}

.m-lr0 {
  margin-left: 0;
  margin-right: 0;
}

.m-lr5 {
  margin-left: 5px;
  margin-right: 5px;
}

.m-lr10 {
  margin-left: 10px;
  margin-right: 10px;
}

.m-lr15 {
  margin-left: 15px;
  margin-right: 15px;
}

.m-lr20 {
  margin-left: 20px;
  margin-right: 20px;
}

.m-lr30 {
  margin-left: 30px;
  margin-right: 30px;
}

.m-lr40 {
  margin-left: 40px;
  margin-right: 40px;
}

.m-lr50 {
  margin-left: 50px;
  margin-right: 50px;
}

.m-lr60 {
  margin-left: 60px;
  margin-right: 60px;
}

.m-lr70 {
  margin-left: 70px;
  margin-right: 70px;
}

.m-lr80 {
  margin-left: 80px;
  margin-right: 80px;
}

.m-lr90 {
  margin-left: 90px;
  margin-right: 90px;
}

.m-lr100 {
  margin-left: 100px;
  margin-right: 100px;
}

.m-tb0 {
  margin-bottom: 0;
  margin-top: 0;
}

.m-tb5 {
  margin-bottom: 5px;
  margin-top: 5px;
}

.m-tb10 {
  margin-bottom: 10px;
  margin-top: 10px;
}

.m-tb15 {
  margin-bottom: 15px;
  margin-top: 15px;
}

.m-tb20 {
  margin-bottom: 20px;
  margin-top: 20px;
}

.m-tb30 {
  margin-bottom: 30px;
  margin-top: 30px;
}

.m-tb40 {
  margin-bottom: 40px;
  margin-top: 40px;
}

.m-tb50 {
  margin-bottom: 50px;
  margin-top: 50px;
}

.m-tb60 {
  margin-bottom: 60px;
  margin-top: 60px;
}

.m-tb70 {
  margin-bottom: 70px;
  margin-top: 70px;
}

.m-tb80 {
  margin-bottom: 80px;
  margin-top: 80px;
}

.m-tb90 {
  margin-bottom: 90px;
  margin-top: 90px;
}

.m-tb100 {
  margin-bottom: 100px;
  margin-top: 100px;
}

/* Section Space */
.section-sp1 {
  padding-top: 70px;
  padding-bottom: 40px;
}

.section-sp2 {
  padding-top: 120px;
  padding-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .section-sp1 {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .section-sp2 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
:root {
  --swiper-navigation-size: 30px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  outline: 0;
  box-shadow: none;
}

.swiper-button-prev {
  left: 20px;
}

.swiper-button-next {
  right: 20px;
}

.btn {
  padding: 13px 20px;
}
.btn i {
  font-size: 18px;
  transform: translateY(4px);
}

.social-link {
  padding: 0;
  margin-left: 0;
  display: flex;
  gap: 5px;
}
.social-link li {
  display: inline-block;
}
.social-link li a {
  font-size: 18px;
  align-items: center;
  padding: 0px;
  width: 45px;
  height: 45px;
  background: rgba(var(--bs-primary-rgb), 0.1);
  border-radius: 30px;
  text-align: center;
  line-height: 45px;
  color: var(--bs-primary);
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-link li a i {
  display: flex;
}
.social-link li a:hover {
  background-color: var(--bs-primary);
  color: #fff;
}

.web-story-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #aaa;
}
.web-story-card img {
  object-fit: cover;
}
.web-story-card .title {
  position: absolute;
  text-align: center;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  font-size: 20px;
  color: white;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #000);
  margin-bottom: 0;
}

.custom-pagination {
  text-align: center;
}
.custom-pagination > div {
  width: 200px !important;
  text-align: center !important;
  padding: 10px !important;
  margin: 10px auto !important;
  border: 1px solid var(--bs-border-color) !important;
  font-size: 15px !important;
  border-radius: var(--bs-border-radius) !important;
}
.custom-pagination .page-nav {
  margin: 0;
}
.custom-pagination .page-nav a li {
  background-color: var(--bs-primary-bg-subtle);
  color: var(--theme);
  font-size: 15px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 5px;
}
.custom-pagination .page-nav > a > li:hover,
.custom-pagination .page-nav > a > li.active {
  background-color: var(--theme);
  box-shadow: none;
  color: #000;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 5px;
}

.small-post {
  display: flex;
  background-color: #fff;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 4px 0 rgba(225, 229, 237, 0.2);
}
.small-post .post-title {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.5;
}
.small-post .post-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.small-post .post-image {
  width: 160px;
  min-width: 160px;
  height: 100px;
  border-radius: 6px 0 0 6px;
  overflow: hidden;
}
.small-post .post-image a {
  display: block;
  height: 100%;
}
.small-post .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.small-post .post-content {
  padding: 13px;
  align-self: center;
}
.small-post .post-meta {
  margin-bottom: 8px;
}

.small-post-2 {
  display: flex;
  align-items: center;
}
.small-post-2 .post-title {
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1.4;
}
.small-post-2 .post-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.small-post-2 .post-image {
  width: 100px;
  min-width: 100px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
}
.small-post-2 .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.small-post-2 .post-content {
  padding: 5px 0 5px 15px;
}
.small-post-2 .post-meta {
  margin-bottom: 6px;
}

.post-meta {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 5px 0;
}
.post-meta li {
  display: inline-block;
  position: relative;
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 400;
}
.post-meta li:not(:last-child)::after {
  content: "";
  height: 3px;
  width: 3px;
  border-radius: 50px;
  background-color: var(--secondary);
  display: inline-block;
  margin: 0 6px;
  transform: translateY(-3px);
}
.post-meta li a {
  color: inherit;
  font-weight: 400;
}
.post-meta li a:hover {
  color: var(--bs-primary);
}
.post-meta .post-category a {
  font-weight: 400;
}

.post-video-btn {
  height: 40px;
  width: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.bg-line {
  position: relative;
}
.bg-line::after {
  content: "";
  background-image: url(../imgs/bg-line.png);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  left: 0;
  background-position: center;
  background-size: 20%;
  opacity: 0.12;
}

.slide-arrow-left,
.slide-arrow-right {
  height: 32px;
  width: 32px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s;
}
.slide-arrow-left:hover,
.slide-arrow-right:hover {
  color: var(--black);
  background-color: var(--theme);
}

.swiper-slide-wrap {
  position: relative;
}
.swiper-slide-wrap .slide-arrow-left,
.swiper-slide-wrap .slide-arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.swiper-slide-wrap .slide-arrow-left {
  left: -40px;
}
.swiper-slide-wrap .slide-arrow-right {
  right: -40px;
}
@media (max-width: 575.98px) {
  .swiper-slide-wrap .slide-arrow-left,
  .swiper-slide-wrap .slide-arrow-right {
    display: none;
  }
}

.post-grid .post-image {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}
.post-grid .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.25s;
}
.post-grid .btn-tranding {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  color: #000;
  background-color: var(--bs-secondary);
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
}
.post-grid .post-title {
  font-size: 18px;
  margin-bottom: 5px;
  line-height: 1.4;
  font-weight: 600;
}
.post-grid .post-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-grid .post-content {
  padding-top: 15px;
}
.post-grid .post-content p:last-child {
  margin-bottom: 0;
}
.post-grid .post-content p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
}
.post-grid .post-meta {
  margin-bottom: 8px;
}
.post-grid:hover .post-image img {
  transform: scale(1.05);
}
.post-grid.grid-large .post-title {
  font-size: 28px;
  margin-bottom: 5px;
  line-height: 1.5;
}
.post-grid.grid-large .post-video-btn {
  height: 60px;
  width: 60px;
  font-size: 24px;
}
.post-grid.grid-large .post-content {
  padding-top: 25px;
}
.post-grid.grid-large .post-image {
  aspect-ratio: 16/11;
}
@media (max-width: 575.98px) {
  .post-grid.grid-large .post-title {
    font-size: 24px;
  }
}
.post-grid.grid-small .post-title {
  font-size: 16px;
  margin-bottom: 5px;
  line-height: 1.5;
}
.post-grid.grid-small .post-image {
  aspect-ratio: 16/11;
}

.heading-wrapper {
  margin-bottom: 20px;
}
.heading-wrapper .heading-title {
  font-size: 20px;
  font-weight: 600;
}

.widget {
  margin-bottom: 40px;
}
.widget .widget-title {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.widget_social .widget-content ul {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
  padding: 0;
}
.widget_social .widget-content ul li {
  display: inline-block;
  padding: 5px;
  width: 33.33%;
}
.widget_social .widget-content ul li a {
  color: #fff;
  display: block;
  padding: 12px 10px 8px;
  text-align: center;
  border-radius: 6px;
}
.widget_social .widget-content ul li a span {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}
.widget_social .widget-content ul li a .text {
  margin: 0;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1px;
  opacity: 0.7;
  color: #fff;
}
.widget_social .widget-content ul li a i {
  font-size: 20px;
  margin-bottom: 3px;
  display: block;
  line-height: 1.2;
}
.widget_social .widget-facebook {
  background: linear-gradient(45deg, #1877F2, #4A90E2);
}
.widget_social .widget-twitter {
  background: linear-gradient(45deg, #080808, #303030);
}
.widget_social .widget-youtube {
  background: linear-gradient(45deg, #FF0000, #cc0000);
}
.widget_social .widget-instagram {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}
.widget_social .widget-vimeo {
  background: linear-gradient(45deg, #08b0f0, #04baff);
}
.widget_social .widget-telegram {
  background: linear-gradient(45deg, #0088cc, #2AABEE);
}

.category-card {
  text-align: center;
}
.category-card .category-image {
  height: 150px;
  width: 150px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.category-card .category-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.25s;
}
.category-card .post-title {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.category-card p {
  font-size: 16px;
  margin: 0;
  line-height: 1.2;
}
.category-card:hover .category-image img {
  transform: scale(1.05);
}
@media (max-width: 1199.98px) {
  .category-card .category-image {
    height: 120px;
    width: 120px;
    margin: 0 auto 12px;
  }
  .category-card .post-title {
    font-size: 16px;
  }
  .category-card p {
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .category-card .category-image {
    height: 80px;
    width: 80px;
    margin: 0 auto 10px;
  }
  .category-card .post-title {
    font-size: 14px;
    margin-bottom: 0;
  }
  .category-card p {
    font-size: 13px;
  }
}

.youtube-heading-bx {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 10px;
}
.youtube-heading-bx .title-head {
  font-size: 22px;
}

.insta-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}
.insta-wrapper .insta-item {
  width: 16.66%;
  aspect-ratio: 1/1;
  padding: 8px;
}
@media (max-width: 575.98px) {
  .insta-wrapper {
    margin: -4px;
  }
  .insta-wrapper .insta-item {
    width: 33.33%;
    padding: 4px;
  }
}

.insta-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--bs-border-radius);
  height: 100%;
}
.insta-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.insta-card a {
  position: absolute;
  height: 35px;
  width: 35px;
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  color: #fff;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50px;
  font-size: 15px;
  transition: all 0.25s;
}
.insta-card:hover a {
  transform: translate(-50%, -50%) scale(1);
}

.insta-username {
  display: flex;
  align-items: center;
  gap: 15px;
}
.insta-username i {
  height: 50px;
  width: 50px;
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 20px;
}
@media (max-width: 767.98px) {
  .insta-username i {
    height: 40px;
    width: 40px;
    font-size: 16px;
  }
}

.insta-heading-bx {
  margin-bottom: 35px;
  flex-direction: row-reverse;
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
}
.insta-heading-bx .title-head {
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
}
@media (max-width: 767.98px) {
  .insta-heading-bx {
    margin-bottom: 25px;
  }
  .insta-heading-bx .title-head {
    font-size: 20px;
  }
}
@media (max-width: 575.98px) {
  .insta-heading-bx {
    flex-direction: row;
  }
}

.marquee-wrapper {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  top: 50px;
  align-items: center;
  gap: 50px;
}
.marquee-wrapper .marquee-item {
  margin: 0;
  padding: 0;
  white-space: nowrap;
  font-size: 100px;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1;
  position: relative;
  opacity: 0.2;
  animation: marquee 50s linear infinite;
  display: flex;
  align-items: center;
  gap: 50px;
}
.marquee-wrapper .marquee-item i {
  animation: rotateText 50s linear infinite;
}

@keyframes marquee {
  100% {
    transform: translateX(-3000px);
  }
}
@keyframes rotateText {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.contact-card {
  border-radius: 10px;
  border: 1px solid var(--bs-border-color);
  position: relative;
  overflow: hidden;
}
.contact-card .contact-info {
  padding: 35px;
}
.contact-card iframe {
  height: 240px;
  margin-bottom: -7px;
  width: 100%;
}
@media (max-width: 575.98px) {
  .contact-card .contact-info {
    padding: 25px;
  }
  .contact-card iframe {
    height: 250px;
  }
}

.team-member {
  text-align: center;
}
.team-member .team-img {
  border-radius: var(--bs-border-radius);
  margin-bottom: 15px;
  width: 100%;
}
.team-member .team-name {
  margin-bottom: 2px;
}

.shorts-card {
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.shorts-card .shorts-media {
  aspect-ratio: 9/16;
  border: 0;
  transform: scale(1.01);
  object-fit: cover;
  width: 100%;
}

.youtube-card {
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 30px;
}

.youtube-card .youtube-media {
  aspect-ratio: 16/9;
  border: 0;
  transform: scale(1.01);
  object-fit: cover;
  width: 100%;
}
.youtube-card.object-content {
  background-color: #000;
}
.youtube-card.object-content .youtube-media {
  object-fit: contain;
}

.shorts-card .icon,
.youtube-card .icon {
  position: absolute;
  width: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.youtube-full .youtube-card {
  margin-bottom: 20px;
}

.youtube-small {
  margin-bottom: 30px;
}
.youtube-small .youtube-card {
  margin-bottom: 12px;
}
.youtube-small .icon {
  width: 50px;
}
.youtube-small .title {
  font-size: 15px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

div.glob-err {
  position: fixed;
  left: auto !important;
  right: 20px;
  bottom: 20px !important;
  padding: 8px 14px;
  border-radius: var(--bs-border-radius);
  width: 280px;
  background-color: var(--bs-danger);
  color: #fff;
  z-index: 9999;
}
div.glob-err .dismiss {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.7;
  font-weight: 500;
  padding: 4px;
  cursor: pointer;
  float: right;
}
@media (max-width: 591px) {
  div.glob-err {
    right: 50%;
    transform: translateX(50%);
  }
}

div.glob-notice {
  position: fixed;
  left: auto !important;
  right: 20px;
  bottom: 20px !important;
  padding: 8px 14px;
  border-radius: var(--bs-border-radius);
  width: 280px;
  background-color: var(--bs-success);
  color: #fff;
  z-index: 9999;
}
div.glob-notice .dismiss {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.7;
  font-weight: 500;
  padding: 4px;
  cursor: pointer;
  float: right;
}
@media (max-width: 591px) {
  div.glob-notice {
    right: 50%;
    transform: translateX(50%);
  }
}

.profile-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  background-color: var(--bs-light);
  border-radius: 6px;
  padding: 20px;
}
.profile-box .profile-avatar {
  height: 85px;
  width: 85px;
  border-radius: 100px;
  overflow: hidden;
  object-fit: cover;
}
.profile-box .profile-info .name {
  margin-bottom: 5px;
  font-size: 24px;
  line-height: 1.2;
}
.profile-box .profile-info .email {
  margin-bottom: 0;
}

.list-style-point {
  padding-left: 20px;
  margin-bottom: 30px;
}
.list-style-point li {
  padding: 4px 0;
}

.statement-content hr {
  margin: 35px 0;
  opacity: 0.1;
}

.auth-form {
  max-width: 500px;
  min-width: 500px;
}

.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 15px;
  justify-content: center;
}

@media (max-width: 591px) {
  .auth-form {
    max-width: 100%;
    min-width: 100%;
  }
}
.main-wrap .post-grid .post-content p {
  color: rgba(255, 255, 255, 0.6);
}
.main-wrap .post-meta li {
  color: rgba(255, 255, 255, 0.6);
}
.main-wrap .post-meta li:not(:last-child)::after {
  background-color: rgba(255, 255, 255, 0.6);
}

.trend-wrap {
  padding-top: 35px;
  padding-bottom: 35px;
}
.trend-wrap .widget-title {
  margin-bottom: 12px;
}

.aside-bar {
  padding-left: 10px;
}
@media (max-width: 991px) {
  .aside-bar {
    padding-left: 0;
  }
}

.breadcrumb {
  display: flex;
}
.breadcrumb .breadcrumb-item:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  color: var(--bs-secondary);
}

.breadcrumb-wrap {
  padding-top: 12px;
  padding-bottom: 12px;
}

.blog-card {
  position: relative;
  margin-bottom: 10px;
}
.blog-card .blog-img {
  overflow: hidden;
  border-radius: var(--bs-border-radius-lg);
  margin-bottom: 20px;
}
.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.25s;
}
.blog-card p {
  font-size: 15px;
  margin-bottom: 12px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-card .title {
  -webkit-line-clamp: 2;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-card .btn-link {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}
.blog-card .btn-link i {
  font-size: 18px;
}
.blog-card .blog-category {
  background: linear-gradient(120deg, var(--bs-secondary) 0%, var(--bs-primary) 60%);
  position: absolute;
  left: 10px;
  top: 10px;
  color: #fff;
  font-size: 13px;
  padding: 4px 15px;
  border-radius: 30px;
}
.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 10px;
}
.blog-meta li {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 13px;
  position: relative;
}
.blog-meta li::after {
  content: "";
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background-color: #000;
  margin: 0 8px;
  opacity: 0.3;
}
.blog-meta li:last-child::after {
  content: none;
}
.blog-meta .blog-author img {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  margin-right: 6px;
}

.blog-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 3px;
  position: relative;
}
.blog-tags::before {
  content: "";
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.blog-tags strong {
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
}
.blog-tags a {
  background-color: var(--theme);
  color: var(--black);
  display: inline-block;
  padding: 6px 8px;
  border-radius: 4px;
  transition: all 0.25s;
  font-size: 12px;
}
.blog-tags a:hover {
  background-color: var(--black);
  color: var(--theme);
}

.blog-details {
  font-size: 16px;
  margin-bottom: 60px;
}
.blog-details .blog-title {
  font-size: 40px;
  margin-top: 8px;
  margin-bottom: 20px;
}
.blog-details iframe {
  width: 100%;
  aspect-ratio: 16/9;
  margin: 10px 0 5px;
  border-radius: 6px;
}
@media (max-width: 591px) {
  .blog-details {
    font-size: 15px;
  }
  .blog-details .blog-title {
    font-size: 26px;
  }
}

.inner-details {
  overflow: hidden;
  margin-bottom: 25px;
}
.inner-details p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 16px;
}
.inner-details img {
  border-radius: 6px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.25s;
}
.inner-details figure {
  margin: 12px 0;
}
.inner-details figcaption {
  font-size: 12px;
  text-align: center;
  margin-top: 8px;
}
.inner-details ul {
  padding-left: 20px;
  margin-bottom: 30px;
}
.inner-details ul li {
  margin: 15px 0;
  position: relative;
}
.inner-details ul li a {
  text-decoration: underline !important;
  display: block;
}
.inner-details ul li::after {
  content: "";
  height: 5px;
  width: 5px;
  position: absolute;
  left: -20px;
  background-color: var(--primary);
  top: 6px;
  border-radius: 50%;
  opacity: 0.2;
}
.inner-details h2 {
  font-size: 36px;
  margin-top: 30px;
  margin-bottom: 10px;
}
.inner-details h3 {
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 10px;
}
.inner-details h4 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 10px;
}
@media (max-width: 591px) {
  .inner-details h2 {
    font-size: 22px;
  }
  .inner-details h3 {
    font-size: 20px;
  }
  .inner-details h4 {
    font-size: 18px;
  }
}

.blog-card-list {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
}
.blog-card-list .blog-img {
  overflow: hidden;
  border-radius: var(--bs-border-radius-lg);
  width: 135px;
  height: 135px;
  min-width: 135px;
}
.blog-card-list .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.25s;
}
.blog-card-list p {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-card-list .title {
  -webkit-line-clamp: 2;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
}
.blog-card-list .btn-link {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}
.blog-card-list .btn-link i {
  font-size: 18px;
}
.blog-card-list:hover .blog-img img {
  transform: scale(1.05);
}
@media (max-width: 1199.98px) {
  .blog-card-list .blog-img {
    width: 110px;
    height: 110px;
    min-width: 110px;
  }
}

.blog-aside {
  padding-left: 30px;
}
.blog-aside .widget-title {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (max-width: 1199.98px) {
  .blog-aside {
    padding-left: 0;
  }
}

.comment-form {
  background-color: #F7F6F9;
  border-radius: 12px;
  padding: 40px;
}
.comment-form .widget-title {
  font-size: 20px;
  margin-bottom: 15px;
}
.comment-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 6px;
  outline: 0;
}
@media (max-width: 591px) {
  .comment-form {
    padding: 25px;
  }
}

.comments-area {
  margin-bottom: 50px;
}
.comments-area .widget-title {
  font-size: 20px;
  margin-bottom: 30px;
}

.comment-list {
  margin-bottom: 20px;
}
.comment-list .comment-wrap {
  display: flex;
}
.comment-list .comment-info {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 20px;
  width: 100%;
  margin-bottom: 20px;
}
.comment-list .comment-info .user {
  font-size: 16px;
  color: var(--bs-heading-color);
  line-height: 1.2;
  font-weight: 600;
}
.comment-list .comment-info .date {
  font-size: 13px;
  display: inline-block;
  line-height: 12px;
  margin-left: 10px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 7px;
  text-transform: uppercase;
}
.comment-list .comment-info p {
  font-size: 15px;
  line-height: 1.5;
}
.comment-list .comment-info .comment-form {
  margin-top: 15px;
  padding: 25px;
}
.comment-list .comment-info .comment-form .widget-title {
  font-size: 18px;
  margin-bottom: 12px;
}
.comment-list:last-child > .comment-info {
  border-bottom: 0;
}
.comment-list .comment-head {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px 0;
}
.comment-list .comment-user {
  overflow: hidden;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  min-width: 80px;
  margin-right: 20px;
}
.comment-list .comment-user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comment-list .btn-reply {
  background-color: var(--bs-primary);
  color: #fff;
  border-radius: var(--bs-border-radius);
  font-size: 13px;
  padding: 4px 12px;
  display: inline-block;
}
.comment-list .comment-list {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: var(--bs-border-radius);
  margin-top: 15px;
  margin-bottom: 0;
}
@media (max-width: 591px) {
  .comment-list .comment-list {
    padding: 12px;
  }
}
.comment-list .comment-list .comment-user {
  height: 60px;
  width: 60px;
  min-width: 60px;
}
.comment-list .comment-list .comment-info .comment {
  margin-bottom: 0;
}
.comment-list .comment-list .comment-wrap:last-child .comment-info {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 591px) {
  .comment-list .comment-head {
    flex-direction: row;
  }
  .comment-list .comment-user {
    height: 65px;
    width: 65px;
    min-width: 65px;
    margin-right: 15px;
  }
  .comment-list .comment-info .date {
    border-left: 0;
    padding-left: 0;
    margin-left: 0;
  }
}

.reply-form {
  display: none;
}

.comment-list:not(:has(.comment-wrap)) {
  display: none;
}

/*# sourceMappingURL=master-blog.css.map */
