/*
    =========================
	Template Name 	 : XMENU
	Author			 : IndianCoder
	Version			 : 1.2
	Author Portfolio : https://codecanyon.net/user/indiancoder
	=========================

	[Table of Contents] 

	=== SCSS Start ===

    1. Abstract
		1.1 abstract.scss
		1.2 mixins.scss
		1.3 variable.scss

	2. Base
		2.1 base.scss
		2.2 fonts.scss
		2.3 preloader.scss
		2.4 reset.scss

    3. Components
	4. Layout

*/
:root {
  --primary: #f46700;
  --secondary: #000;
  --primary-hover: rgb(255, 130.7581967213, 40);
  --primary-dark: rgb(91, 38.4139344262, 0);
  --rgba-primary-1: rgba(244, 103, 0, 0.1);
  --rgba-primary-2: rgba(244, 103, 0, 0.2);
  --rgba-primary-3: rgba(244, 103, 0, 0.3);
  --rgba-primary-4: rgba(244, 103, 0, 0.4);
  --rgba-primary-5: rgba(244, 103, 0, 0.5);
  --rgba-primary-6: rgba(244, 103, 0, 0.6);
  --rgba-primary-7: rgba(244, 103, 0, 0.7);
  --rgba-primary-8: rgba(244, 103, 0, 0.8);
  --rgba-primary-9: rgba(244, 103, 0, 0.9);
  --font-family-base: DM Sans, sans-serif;
  --grey: #f7f7f7;
  --border-radius-base: 20px;
  --border-color: #D7D7D7;
  --font-family-title: Lufga, sans-serif;
  --title: #000;
  --white: var(--title);
  --light:#FFFAF3;
}

* {
  outline: none;
  padding: 0;
}
*::after {
  margin: 0;
  padding: 0;
}
*::before {
  margin: 0;
  padding: 0;
}

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

body {
  margin: 0;
  line-height: 1.6;
  color: #5E626F;
  font-size: 1rem;
  font-family: var(--font-family-base);
  overflow-x: clip;
  background-color: #f7f7f7;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media only screen and (max-width: 575px) {
  body {
    font-size: 14px;
  }
}

.text-white {
  color: #fff;
}

p {
  font-family: var(--font-family-base);
  margin-top: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: var(--title);
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-family-title);
  font-weight: 600;
  color: var(--title);
  line-height: 1.4;
  margin-top: 0;
}

ul {
  padding: 0;
  margin: 0;
}

img {
  border-style: none;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  outline: none;
  color: var(--primary);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
a:hover {
  text-decoration: none;
  outline: none;
  color: var(--primary);
}

.container {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container-fluid {
  padding-left: 80px;
  padding-right: 80px;
}
@media only screen and (max-width: 1280px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.text-black {
  color: #000;
}

::selection {
  color: #ffffff;
  background: var(--primary);
}

.show-focus-outline .search-link:focus,
.show-focus-outline .quik-search-remove:focus,
.show-focus-outline button:focus,
.show-focus-outline select:focus,
.show-focus-outline input:focus,
.show-focus-outline a:focus {
  outline: 2px solid red !important;
}

@media (max-width: 991px) {
  .show-focus-outline .nav a > i:focus {
    outline: 2px solid red !important;
  }
}
.show-focus-outline li:focus-within > .mega-menu {
  opacity: 1 !important;
  visibility: visible !important;
  margin-top: 0 !important;
}

.show-focus-outline .sub-menu-down a:focus {
  outline: 2px solid #000 !important;
}

.show-focus-outline .sub-menu-down a:after:focus {
  outline: 2px solid #000 !important;
}

.nav-inline li {
  display: inline-block;
  margin-right: 15px;
  padding: 0.25rem 0 !important;
}

img::selection {
  background: none;
}

.text-underline {
  text-decoration: underline !important;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(223, 223, 223, 0.9);
}

::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0);
}

* {
  scrollbar-color: rgba(223, 223, 223, 0.9) rgba(255, 255, 255, 0);
  scrollbar-width: thin;
}

@supports (-ms-ime-align: auto) {
  * {
    scrollbar-color: rgba(223, 223, 223, 0.9) rgba(255, 255, 255, 0);
    scrollbar-width: thin;
  }
}
.xmenu-code .code-box {
  min-height: 300px;
  max-height: 300px;
  overflow-y: scroll;
  background-color: #efefef;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.xmenu-code .code-box.h-auto {
  min-height: auto;
  max-height: auto;
}
@media only screen and (max-width: 575px) {
  .xmenu-code {
    padding: 0 15px;
  }
}

.page-height {
  min-height: calc(100vh - 50px);
}
@media only screen and (max-width: 991px) {
  .page-height {
    min-height: 100vh;
  }
}

.rounded {
  border-radius: 12px;
}

.p-a0 {
  padding: 0px;
}

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

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

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

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

.m-a0 {
  margin: 0px;
}

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

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

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

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

.p-a5 {
  padding: 5px;
}

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

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

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

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

.m-a5 {
  margin: 5px;
}

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

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

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

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

.p-a10 {
  padding: 10px;
}

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

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

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

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

.m-a10 {
  margin: 10px;
}

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

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

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

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

.p-a15 {
  padding: 15px;
}

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

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

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

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

.m-a15 {
  margin: 15px;
}

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

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

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

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

.p-a20 {
  padding: 20px;
}

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

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

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

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

.m-a20 {
  margin: 20px;
}

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

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

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

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

.p-a25 {
  padding: 25px;
}

.p-l25 {
  padding-left: 25px;
}

.p-t25 {
  padding-top: 25px;
}

.p-r25 {
  padding-right: 25px;
}

.p-b25 {
  padding-bottom: 25px;
}

.m-a25 {
  margin: 25px;
}

.m-l25 {
  margin-left: 25px;
}

.m-t25 {
  margin-top: 25px;
}

.m-r25 {
  margin-right: 25px;
}

.m-b25 {
  margin-bottom: 25px;
}

.p-a30 {
  padding: 30px;
}

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

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

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

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

.m-a30 {
  margin: 30px;
}

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

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

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

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

.p-a35 {
  padding: 35px;
}

.p-l35 {
  padding-left: 35px;
}

.p-t35 {
  padding-top: 35px;
}

.p-r35 {
  padding-right: 35px;
}

.p-b35 {
  padding-bottom: 35px;
}

.m-a35 {
  margin: 35px;
}

.m-l35 {
  margin-left: 35px;
}

.m-t35 {
  margin-top: 35px;
}

.m-r35 {
  margin-right: 35px;
}

.m-b35 {
  margin-bottom: 35px;
}

.p-a40 {
  padding: 40px;
}

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

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

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

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

.m-a40 {
  margin: 40px;
}

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

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

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

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

.p-a45 {
  padding: 45px;
}

.p-l45 {
  padding-left: 45px;
}

.p-t45 {
  padding-top: 45px;
}

.p-r45 {
  padding-right: 45px;
}

.p-b45 {
  padding-bottom: 45px;
}

.m-a45 {
  margin: 45px;
}

.m-l45 {
  margin-left: 45px;
}

.m-t45 {
  margin-top: 45px;
}

.m-r45 {
  margin-right: 45px;
}

.m-b45 {
  margin-bottom: 45px;
}

.p-a50 {
  padding: 50px;
}

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

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

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

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

.m-a50 {
  margin: 50px;
}

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

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

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

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

@media only screen and (min-width: 991px) {
  .menu-wraper {
    max-width: 1320px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}

.card-hover:hover {
  background-color: rgba(0, 0, 0, 0.025);
  color: #000000;
}

.card-overlay {
  position: relative;
  overflow: hidden;
}
.card-overlay .overlay-content {
  position: relative;
  z-index: 1;
}
.card-overlay:after {
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background-color: #000;
  opacity: var(--bs-bg-opacity);
}

/* like button */
.heart {
  width: 60px;
  height: 60px;
  display: inline-block;
  background: url(../images/like.png) no-repeat;
  cursor: pointer;
  margin: -25px -18px;
}

.heart-blast {
  background-position: -1680px 0;
  transition: background 1s steps(28);
}

.menu-swiper .swiper-pagination {
  position: relative;
}

.swiper-button-prev,
.swiper-button-next {
  background-color: rgba(255, 255, 255, 0.3);
  height: 35px;
  width: 35px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
}
.swiper-button-prev.button-black,
.swiper-button-next.button-black {
  background-color: rgba(0, 0, 0, 0.3);
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #f46700;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: none;
}

@media only screen and (min-width: 991px) {
  .header-box {
    padding: 50px 30px 80px;
    position: relative;
  }
}
@media only screen and (max-width: 575px) {
  .header-box {
    padding: 0;
  }
}
.header-box .header-number {
  position: absolute;
  font-size: 50px;
  font-weight: 700;
  left: -90px;
  opacity: 0.25;
}
@media only screen and (max-width: 1480px) {
  .header-box .header-number {
    font-size: 30px;
    left: -50px;
    top: 65px;
  }
}
@media (max-width: 1366px) {
  .header-box .header-number {
    position: static;
  }
}
@media only screen and (max-width: 575px) {
  .header-box .header-number {
    display: none;
  }
}

.z-index-full {
  z-index: 999999;
}

.tabs {
  width: 100%;
}
.tabs .tab-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.tabs .tab-links a {
  display: block;
  padding: 5px 15px;
  background: #efefef;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
}
@media only screen and (max-width: 575px) {
  .tabs .tab-links a {
    font-size: 14px;
    padding: 6px 12px;
  }
}
.tabs .tab-links .active a {
  background-color: var(--primary);
  color: #fff;
}
.tabs .tab-content .tab {
  display: none;
}
.tabs .tab-content .tab.active {
  display: block;
}

#xMenuPreloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#xMenuPreloader .loader {
  display: block;
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--primary);
  -webkit-animation: spin 2s linear infinite;
  animation: dzSpin 2s linear infinite;
}
#xMenuPreloader .loader::before, #xMenuPreloader .loader::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}
#xMenuPreloader .loader::before {
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-top-color: var(--primary);
  -webkit-animation: dzSpin 3s linear infinite;
  animation: dzSpin 3s linear infinite;
}
#xMenuPreloader .loader::after {
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-top-color: var(--primary);
  -webkit-animation: dzSpin 1.5s linear infinite;
  animation: dzSpin 1.5s linear infinite;
}

@-webkit-keyframes dzSpin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes dzSpin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@font-face {
  font-family: "Lufga";
  font-style: normal;
  font-weight: 400;
  src: local("Lufga"), url("../fonts/lufga-cufonfonts/LufgaRegular.woff") format("woff");
}
@font-face {
  font-family: "Lufga";
  font-style: normal;
  font-weight: 100;
  src: local("Lufga"), url("../fonts/lufga-cufonfonts/LufgaThin.woff") format("woff");
}
@font-face {
  font-family: "Lufga";
  font-style: normal;
  font-weight: 200;
  src: local("Lufga"), url("../fonts/lufga-cufonfonts/LufgaExtraLight.woff") format("woff");
}
@font-face {
  font-family: "Lufga";
  font-style: normal;
  font-weight: 300;
  src: local("Lufga"), url("../fonts/lufga-cufonfonts/LufgaLight.woff") format("woff");
}
@font-face {
  font-family: "Lufga";
  font-style: normal;
  font-weight: 500;
  src: local("Lufga"), url("../fonts/lufga-cufonfonts/LufgaMedium.woff") format("woff");
}
@font-face {
  font-family: "Lufga";
  font-style: normal;
  font-weight: 600;
  src: local("Lufga"), url("../fonts/lufga-cufonfonts/LufgaSemiBold.woff") format("woff");
}
@font-face {
  font-family: "Lufga";
  font-style: normal;
  font-weight: 700;
  src: local("Lufga"), url("../fonts/lufga-cufonfonts/LufgaBold.woff") format("woff");
}
@font-face {
  font-family: "Lufga";
  font-style: normal;
  font-weight: 800;
  src: local("Lufga"), url("../fonts/lufga-cufonfonts/LufgaExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Lufga";
  font-style: normal;
  font-weight: 900;
  src: local("Lufga"), url("../fonts/lufga-cufonfonts/LufgaBlack.woff") format("woff");
}
button:hover,
button:active,
button:focus,
.btn:hover,
.btn:active,
.btn:focus {
  outline: 0 !important;
}

.btn {
  font-size: 16px;
  padding: 12px 30px;
  line-height: 24px;
  font-weight: 500;
  position: relative;
  font-family: "Lufga", sans-serif;
  text-align: center;
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  border-radius: 10px;
}

.badge {
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 0;
  border: 0;
  font-size: 13px;
  line-height: 1.4;
}
.badge i.fa-circle {
  font-size: 7px;
  transform: translateY(-2px);
  margin-right: 2px;
}
.badge.rounded {
  border-radius: 50px;
}

.badge-drop {
  border-radius: 0;
  position: relative;
}

.badge-drop:after {
  content: "";
  position: absolute;
  bottom: -4px;
}

.drop-start:after {
  left: 0;
  border-right: 4px solid var(--border-color);
  border-bottom: 4px solid transparent;
}

.drop-center:after {
  left: 50%;
  transform: translateX(-50%);
  border-right: 2px solid transparent;
  border-left: 2px solid transparent;
  border-top: 4px solid var(--border-color);
}

.drop-end:after {
  right: 0;
  border-left: 4px solid var(--border-color);
  border-bottom: 4px solid transparent;
}

.bg-primary.badge-drop:after {
  --border-color: #f46700;
}

.bg-success.badge-drop:after {
  --border-color: #31A56D;
}

.bg-info.badge-drop:after {
  --border-color: #0194D9;
}

.bg-danger.badge-drop:after {
  --border-color: #D23636;
}

.bg-warning.badge-drop:after {
  --border-color: #E79600;
}

.bg-secondary.badge-drop:after {
  --border-color: #000;
}

.bg-dark.badge-drop:after {
  --border-color: #444444;
}

.badge-circle {
  padding: 3px 3px;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
}

.badge-blank {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  display: inline-block;
}

.badge-wave {
  animation-duration: 1.2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.bg-primary {
  background-color: #f46700 !important;
  color: #fff;
}

.text-primary {
  color: #f46700 !important;
}

.bg-primary.light {
  background-color: rgba(244, 103, 0, 0.1) !important;
  color: #f46700;
}

.wave-primary {
  animation-name: wave-primary;
}

@keyframes wave-primary {
  0% {
    box-shadow: 0 0 0px 0px rgba(244, 103, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 0px 10px rgba(244, 103, 0, 0);
  }
}
.bg-secondary {
  background-color: #000 !important;
  color: #fff;
}

.text-secondary {
  color: #000 !important;
}

.bg-secondary.light {
  background-color: rgba(0, 0, 0, 0.1) !important;
  color: #000;
}

.wave-secondary {
  animation-name: wave-secondary;
}

@keyframes wave-secondary {
  0% {
    box-shadow: 0 0 0px 0px rgba(0, 0, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 0px 10px rgba(0, 0, 0, 0);
  }
}
.bg-success {
  background-color: #31A56D !important;
  color: #fff;
}

.text-success {
  color: #31A56D !important;
}

.bg-success.light {
  background-color: rgba(49, 165, 109, 0.1) !important;
  color: #31A56D;
}

.wave-success {
  animation-name: wave-success;
}

@keyframes wave-success {
  0% {
    box-shadow: 0 0 0px 0px rgba(49, 165, 109, 0.5);
  }
  100% {
    box-shadow: 0 0 0px 10px rgba(49, 165, 109, 0);
  }
}
.bg-info {
  background-color: #0194D9 !important;
  color: #fff;
}

.text-info {
  color: #0194D9 !important;
}

.bg-info.light {
  background-color: rgba(1, 148, 217, 0.1) !important;
  color: #0194D9;
}

.wave-info {
  animation-name: wave-info;
}

@keyframes wave-info {
  0% {
    box-shadow: 0 0 0px 0px rgba(1, 148, 217, 0.5);
  }
  100% {
    box-shadow: 0 0 0px 10px rgba(1, 148, 217, 0);
  }
}
.bg-warning {
  background-color: #E79600 !important;
  color: #fff;
}

.text-warning {
  color: #E79600 !important;
}

.bg-warning.light {
  background-color: rgba(231, 150, 0, 0.1) !important;
  color: #E79600;
}

.wave-warning {
  animation-name: wave-warning;
}

@keyframes wave-warning {
  0% {
    box-shadow: 0 0 0px 0px rgba(231, 150, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 0px 10px rgba(231, 150, 0, 0);
  }
}
.bg-danger {
  background-color: #D23636 !important;
  color: #fff;
}

.text-danger {
  color: #D23636 !important;
}

.bg-danger.light {
  background-color: rgba(210, 54, 54, 0.1) !important;
  color: #D23636;
}

.wave-danger {
  animation-name: wave-danger;
}

@keyframes wave-danger {
  0% {
    box-shadow: 0 0 0px 0px rgba(210, 54, 54, 0.5);
  }
  100% {
    box-shadow: 0 0 0px 10px rgba(210, 54, 54, 0);
  }
}
.bg-light {
  background-color: #FFFAF3 !important;
  color: #fff;
}

.text-light {
  color: #FFFAF3 !important;
}

.bg-light.light {
  background-color: rgba(255, 250, 243, 0.1) !important;
  color: #FFFAF3;
}

.wave-light {
  animation-name: wave-light;
}

@keyframes wave-light {
  0% {
    box-shadow: 0 0 0px 0px rgba(255, 250, 243, 0.5);
  }
  100% {
    box-shadow: 0 0 0px 10px rgba(255, 250, 243, 0);
  }
}
.bg-dark {
  background-color: #444444 !important;
  color: #fff;
}

.text-dark {
  color: #444444 !important;
}

.bg-dark.light {
  background-color: rgba(68, 68, 68, 0.1) !important;
  color: #444444;
}

.wave-dark {
  animation-name: wave-dark;
}

@keyframes wave-dark {
  0% {
    box-shadow: 0 0 0px 0px rgba(68, 68, 68, 0.5);
  }
  100% {
    box-shadow: 0 0 0px 10px rgba(68, 68, 68, 0);
  }
}
.badge-zoom {
  animation: badgeZoom 0.95s infinite ease-in-out;
}

@keyframes badgeZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.bg-primary-blink {
  -webkit-animation: bgPrimaryBlink 0.5s infinite alternate;
}

@-webkit-keyframes bgPrimaryBlink {
  10% {
    background-color: var(--primary);
  }
  50% {
    background-color: #bc8b6b;
  }
  100% {
    background-color: red;
  }
}
.badge-wrapper {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
}

.hr-line {
  opacity: 0.2;
}

footer {
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--title);
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
footer .copyright-text {
  margin: 0;
}

.footer-fixed {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
