/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
:root {
  --base-h: 146;
  --base-s: 63%;
  --base-l: 42%;
  --base: var(--base-h) var(--base-s) var(--base-l);
  --bgTransparent: hsla(0, 0%, 100%, 0);

  --secondary-h: 0;
  --secondary-s: 0%;
  --secondary-l: 16%;
  --secondary: var(--secondary-h) var(--secondary-s) var(--secondary-l);

  --bodyColor-h: 0;
  --bodyColor-s: 0%;
  --bodyColor-l: 33%;
  --bodyColor: var(--bodyColor-h) var(--bodyColor-s) var(--bodyColor-l);

  --black-h: 0;
  --black-s: 0%;
  --black-l: 13.53%;
  --black: var(--black-h) var(--black-s) var(--black-l);
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5rem;
  color: hsl(var(--bodyColor));
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Nunito", sans-serif;
}

a {
  display: inline-block;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
input:focus,
textarea:focus {
  outline: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: none;
  cursor: pointer;
}

input,
textarea {
  padding: 15px 25px;
  width: 100%;
}

span {
  display: inline-block;
}


a,
a:focus,
a:hover {
  text-decoration: none;
  color: inherit;
}

/*-------------------------------------------------
    [ ## Heading ]
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: hsl(var(--black));
}

h1 {
  font-weight: 700;
}

h2 {
  font-weight: 700;
}

h3 {
  font-weight: 700;
}

h4,
h5 {
  font-weight: 600;
}


h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  color: inherit;
  text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover {
  color: inherit;
  text-decoration: none;
}

.h5,
h5 {
  font-size: calc(1rem + .3vw);
}

.heading {
  font-size: 1.5px;
  font-weight: 600;
  line-height: 1.25em;
  margin-bottom: 15px;
}

@media(max-width: 767px) {
  .heading {
    font-size: 1.275rem;
  }
}

.section-header {
  margin-bottom: 50px;
}

.section-title {
  position: relative;
  margin-bottom: 10px;
}

.section-title span {
  color: hsl(var(--base));
}

/*-------------------------------------------------
    [ ## Others Typography ]
*/
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

blockquote {
  margin: 0 0 1.3em;
}

img {
  width: 100%;
  height: auto;
}

/*-------------------------------------------------
    [ ## Padding Element ]
*/

.ptb-80 {
  padding: 80px 0;
}

.ptb-120 {
  padding: 120px 0;
}

@media (max-width: 991px) {
  .ptb-120 {
    padding: 100px 0;
  }

  .ptb-80 {
    padding: 50px 0;
  }
}

/*-------------------------------------------------
    [ ## Overlay Element ]
*/
.bg_img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-image {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.bg-fixed {
  background-attachment: fixed;
}

.bg-overlay-primary {
  position: relative;
}

.bg-overlay-primary:before {
  content: "";
  position: absolute;
  background-color: hsl(var(--secondary));
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.84;
}

.bg-overlay-primary>div {
  position: relative;
  z-index: 2;
}

.bg-overlay-primary {
  position: relative;
}

.bg-overlay-primary>div {
  position: relative;
  z-index: 2;
}

.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.738);
  z-index: 99;
  transition: 0.2s linear;
  visibility: hidden;
  opacity: 0;
}

.body-overlay.show {
  visibility: visible;
  opacity: 1;
}

/*-------------------------------------------------
    [ ## Lists ]
*/
li>ul,
li>ol {
  margin-bottom: 0;
  margin-left: 1em;
}

.scrollToTop {
  position: fixed;
  bottom: 0;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: hsl(var(--base));
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  color: #fff;
  line-height: 50px;
  font-size: 1.25rem;
  text-align: center;
  z-index: 99;
  cursor: pointer;
  transition: all 1s;
  transform: translateY(100%);
}

.scrollToTop.active {
  bottom: 30px;
  transform: translateY(0%);
  color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.scrollToTop:hover {
  color: #fff;
}


/*-------------------------------------------------
    [ ## Buttons ]
*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

input[type="submit"]:hover {
  color: #fff;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
  outline: none;
}

button::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  color: hsl(var(--base));
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
}

a:focus {
  outline: none;
}

a:hover,
a:active {
  outline: 0;
  text-decoration: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus {
  outline: none;
}

input[type=time]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button,
input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input,
textarea {
  padding: 12px 20px;
}

input::placeholder,
textarea::placeholder {
  color: #777777;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-text-fill-color: #777777 !important;
}

input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-text-fill-color: #777777 !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

textarea {
  display: block;
  width: 100%;
  display: block;
  min-height: 120px;
}

input,
select,
textarea {
  border: 1px solid #e5e5e5;
  vertical-align: baseline;
  border-radius: 3px;
  color: #777777;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

p {
  margin-bottom: 0;
}

::selection {
  background-color: hsl(var(--base));
  color: #fff;
}

::-webkit-input-placeholder {
  color: #b3b3b3;
}

.widget_newsletter::-webkit-input-placeholder {
  color: #808080;
}

:-moz-placeholder {
  color: #b3b3b3;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

::-moz-placeholder {
  color: #b3b3b3;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

:-ms-input-placeholder {
  color: #b3b3b3;
}

.btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  border-color: #e7e7e7;
}

.btn-close {
  font-size: 0.875rem;
}

.btn-close:focus {
  box-shadow: none;
}

.cmn-btn-active {
  position: relative;
  background: #fff;
  color: hsl(var(--secondary));
  padding: 8px 25px;
  text-transform: capitalize;
  box-shadow: 7px 5px 30px 0px rgb(72 73 121 / 15%);
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 500;
  z-index: 2;
  overflow: hidden;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.cmn-btn-danger {
  position: relative;
  background: #f75959;
  color: #fff;
  padding: 9px 25px !important;
  text-transform: capitalize;
  box-shadow: 7px 5px 30px 0px rgb(72 73 121 / 15%);
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 500;
  z-index: 2;
  overflow: hidden;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.cmn-btn-danger:focus {
  color: #fff;
}

@media (max-width: 767px) {
  .cmn-btn-danger {
    padding: 7px 15px !important;
  }
}

@media (max-width: 424px) {
  .cmn-btn-danger {
    padding: 6px 8px !important;
  }
}

.cmn-btn-danger:hover {
  color: #fff;
}

.cmn-btn-active::before {
  right: 50%;
}

.cmn-btn-active::after {
  left: 50%;
}

.cmn-btn-active::before,
.cmn-btn-active::after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  content: '';
  background-color: #fff;
  z-index: -1;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.cmn-btn-active:focus,
.cmn-btn-active:hover {
  color: #fff;
  background-color: hsl(var(--base));
}

.cmn-btn-active:focus::before,
.cmn-btn-active:hover::before {
  right: 100%;
}

.cmn-btn-active:focus::after,
.cmn-btn-active:hover::after {
  left: 100%;
}

.cmn-btn {
  position: relative;
  background: hsl(var(--base));
  color: #fff;
  padding: 8px 25px;
  text-transform: capitalize;
  box-shadow: 7px 5px 15px 0px hsl(var(--black) / 0.08);
  border-radius: 0;
  border-radius: 3px;
  font-weight: 500;
  z-index: 2;
  overflow: hidden;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.cmn-btn::before {
  right: 50%;
}

.cmn-btn::after {
  left: 50%;
}

.cmn-btn::before,
.cmn-btn::after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  content: '';
  background-color: hsl(var(--base));
  z-index: -1;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.cmn-btn i {
  margin-right: 10px;
}

.cmn-btn:focus,
.cmn-btn:hover {
  color: hsl(var(--base));
  background-color: #fff;
}

.cmn-btn:focus::before,
.cmn-btn:hover::before {
  right: 100%;
}

.cmn-btn:focus::after,
.cmn-btn:hover::after {
  left: 100%;
}

.custom-btn {
  color: hsl(var(--base));
  display: block !important;
  font-size: 1rem;
  transition: all 0.3s;
}

.custom-btn:hover {
  color: hsl(var(--base) / 0.8);
}

.text--danger {
  color: #eb2222 !important;
}


.select-custom:focus {
  box-shadow: none;
  outline: none;
  border-radius: 0px;
  background: none;
  color: #727272;
}

.form-label {
  margin-bottom: .2rem;
  font-weight: 600;
}

.form-select:focus {
  box-shadow: none;
  border-color: hsl(var(--base));
}

form .cmn-btn {
  padding: 0.75rem;
}


input[type="radio"] {
  display: none;
}

input[type="radio"]+label {
  color: #1d2331;
  position: relative;
  padding-left: 23px;
  line-height: 1.2em;
  text-transform: capitalize;
  cursor: pointer;
}

input[type="radio"]+label:before {
  border: 3px solid #B9BEC0;
  content: "";
  height: 0.875rem;
  left: 1px;
  position: absolute;
  top: 3px;
  -webkit-transition: all 0.15s ease-in 0s;
  transition: all 0.15s ease-in 0s;
  width: 0.875rem;
  background-color: #fff;
  border-radius: 50%;
}

input[type="radio"]:checked+label:before {
  border-color: hsl(var(--base));
  background-color: #fff;
}

/* Override Bootstrap Pagination Design */
/* Pagination Start */
/* page link pagination */
.pagination {
  margin-top: 0px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination .page-item a,
.pagination .page-item span {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #fff;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  color: hsl(var(--secondary));
  padding: 6px 16px;
  display: block;
  margin: 0;
  display: inline-block;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-radius: 3px;
}

.pagination .page-item.disabled span {
  background: #f7f7f7;
  border: 1px solid rgb(0 0 0 / 1%);
  color: black;
}

.pagination .page-item.disabled:hover span {
  background: #f7f7f7;
  border: 1px solid #f7f7f7;
  color: black;
}

.pagination .page-item.active .page-link,
.pagination .page-item:hover .page-link {
  background: hsl(var(--base));
  border-color: hsl(var(--base));
  color: #fff;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  font-family: 'Line Awesome Free';
  font-weight: 900;
}

.page-item:first-child .page-link:after,
.page-item:last-child .page-link:before {
  position: absolute;
  background: inherit;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-item:first-child .page-link:after {
  content: "\f104";
}

.page-item:last-child .page-link:before {
  content: "\f105";
}

/* Pagination End */


/* Preloader Start */
.preloader-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsl(var(--secondary));
  z-index: 99999;
}

.jump {
  animation: jump 1.5s infinite ease;
}

@keyframes jump {
  0% {
    top: 0;
  }

  50% {
    top: -40px;
  }

  100% {
    top: 0;
  }
}

.coin {
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  height: 150px;
  width: 150px;
}

@media(max-width: 767px) {
  .coin {
    height: 100px !important;
    width: 100px !important;
  }

  .coin .front,
  .coin .back {
    height: 100px !important;
    width: 100px !important;
  }

  .coin .front:before,
  .coin .back:before {
    margin: 22px 22px !important;
    width: 40px !important;
    height: 40px !important;
  }

  .coin .front .currency,
  .coin .back .currency {
    font-size: 1.5rem !important;
  }

  .coin .front .shapes div,
  .coin .back .shapes div {
    width: 10px !important;
    height: 2px !important;
    margin: 40px 7px !important;
  }

  .coin .front .shapes div:before,
  .coin .back .shapes div:before {
    width: 10px !important;
    height: 2px !important;
    margin: -7px 0 !important;
  }

  .coin .front .shapes div:after,
  .coin .back .shapes div:after {
    width: 10px !important;
    height: 2px !important;
    margin: 3px 0 !important;
  }

  .coin .front .shapes div,
  .coin .back .shapes div {
    width: 10px !important;
    height: 2px !important;
    margin: 40px 7px !important;
  }

  .coin .front .top,
  .coin .back .top {
    font-size: .625rem !important;
    top: 0px !important;
  }

  .coin .front .bottom,
  .coin .back .bottom {
    font-size: .625rem !important;
    bottom: 4px !important;
  }

  .coin .shadow {
    margin: 112px 7px 0 3px !important;
  }
}

.coin .front,
.coin .back {
  position: absolute;
  height: 150px;
  width: 150px;
  background: #ffbd0b;
  border-radius: 50%;
  border-top: 7px solid #ffd84c;
  border-left: 7px solid #ffd84c;
  border-right: 7px solid #d57e08;
  border-bottom: 7px solid #d57e08;
  transform: rotate(44deg);
}

.coin .front:before,
.coin .back:before {
  content: "";
  margin: 35.5px 35.5px;
  position: absolute;
  width: 70px;
  height: 70px;
  background: #f0a608;
  border-radius: 50%;
  border-bottom: 5px solid #ffd84c;
  border-right: 5px solid #ffd84c;
  border-left: 5px solid #d57e08;
  border-top: 5px solid #d57e08;
  z-index: 2;
}

.coin .front .currency,
.coin .back .currency {
  overflow: hidden;
  position: absolute;
  color: #ffbd0b;
  font-size: 2.5rem;
  transform: rotate(-44deg);
  line-height: 3.7;
  width: 100%;
  height: 100%;
  text-align: center;
  text-shadow: 0 3px 0 #cb7407;
  z-index: 3;
  border-radius: 50%;
}

.coin .front .currency:after,
.coin .back .currency:after {
  content: "";
  position: absolute;
  height: 200px;
  width: 40px;
  margin: 20px -65px;
  box-shadow: 50px -23px 0 -10px rgba(255, 255, 255, 0.22), 85px -10px 0 -16px rgba(255, 255, 255, 0.19);
  transform: rotate(-50deg);
  animation: shine 1.5s infinite ease;
}

@keyframes shine {
  0% {
    margin: 20px -65px;
  }

  50% {
    margin: 70px -85px;
  }

  100% {
    margin: 20px -65px;
  }
}

.coin .front .shapes,
.coin .back .shapes {
  transform: rotate(-44deg);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.coin .front .shapes div,
.coin .back .shapes div {
  width: 20px;
  height: 4px;
  background: #d57e08;
  border-top: 2px solid #c47207;
  margin: 75px 7px;
}

.coin .front .shapes div:before,
.coin .back .shapes div:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 4px;
  background: #d57e08;
  border-top: 2px solid #c47207;
  margin: -10px 0;
}

.coin .front .shapes div:after,
.coin .back .shapes div:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 4px;
  background: #d57e08;
  border-top: 2px solid #c47207;
  margin: 8px 0;
}

.coin .front .shape_l,
.coin .back .shape_l {
  float: left;
}

.coin .front .shape_r,
.coin .back .shape_r {
  float: right;
}

.coin .front .top,
.coin .back .top {
  font-size: 0.875rem;
  color: #d67f08;
  text-align: center;
  width: 100%;
  position: absolute;
  left: 0;
  top: 9px;
  text-shadow: 0 1px 0px #cb7407;
}

.coin .front .bottom,
.coin .back .bottom {
  font-size: 0.875rem;
  color: #d67f08;
  text-align: center;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 9px;
  text-shadow: 0 1px 0px #cb7407;
}

.coin .shadow {
  width: 100%;
  height: 20px;
  background: rgba(0, 0, 0, 0.4);
  left: 0;
  bottom: -50px;
  border-radius: 50%;
  z-index: -1;
  margin: 185px 7px 0 7px;
  animation: swift 1.5s infinite ease;
}

@keyframes swift {
  0% {
    opacity: 0.8;
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }

  100% {
    opacity: 0.8;
  }
}

/* Preloader End */

.flex-1 {
  flex: 1;
}


.gap-6 {
  gap: 3.5rem !important
}

/* Header Section Start */
.header-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
}

.header {
  background-color: transparent;
  width: 100%;
  z-index: 99;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}

.header.active {
  transform: translateY(0%);
  position: fixed;
  top: 0;
  left: 0;
  animation-name: fadeInDown;
  animation-duration: 1s;
  transition: all 1s;
}

.header-section.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: hsl(var(--secondary));
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}

.header-bottom-area {
  position: relative;
  background: transparent;
  padding-top: 20px;
}

.header-section.header-fixed .header-bottom-area {
  padding-top: 0;
}

.header-bottom-area .header-account {
  padding-left: 30px;
}

.header-bottom-area .header-account .cmn-btn {
  padding: 12px 30px;
}


.header-bottom-area .navbar-expand-lg {
  z-index: 10;
  background-color: transparent;
  padding: 0 !important;
}

@media only screen and (max-width: 991px) {
  .header-bottom-area .navbar-expand-lg {
    padding: 0 !important;
  }
}

.header-bottom-area .navbar-collapse .main-menu li:last-child .sub-menu {
  left: auto;
  right: 0;
}

.header-bottom-area .navbar-collapse .main-menu li {
  position: relative;
  margin-right: 45px;
}

@media (max-width: 1499px) {
  .header-bottom-area .navbar-collapse .main-menu li {
    margin-right: 25px;
  }
}

.header-bottom-area .navbar-collapse .main-menu li:nth-last-of-type(2) {
  margin-right: 0;
}

@media (max-width: 991px) {
  .header-bottom-area .navbar-collapse .main-menu li {
    margin-right: 0px;
  }
}

.header-bottom-area .navbar-collapse .main-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.header-bottom-area .navbar-collapse .main-menu li.menu_has_children {
  position: relative;
}

.header-bottom-area .navbar-collapse .main-menu li.menu_has_children i {
  font-size: 1.125rem;
  margin-left: 5px;
}

@media (max-width: 991px) {
  .header-bottom-area .navbar-collapse .main-menu li.menu_has_children::before {
    top: 12px;
    right: 15px;
  }
}

.header-bottom-area .navbar-collapse .main-menu li a {
  position: relative;
  padding: 20px 0 20px 0;
  color: #fff;
  font-weight: 600;
  align-items: center;
  display: inline-block;
  font-size: 1rem;
  text-transform: capitalize;
}

.header-bottom-area .navbar-collapse .main-menu li a:hover,
.header-bottom-area .navbar-collapse .main-menu li a:active,
.header-bottom-area .navbar-collapse .main-menu li a.active {
  color: hsl(var(--base)) !important;
}

@media (max-width: 1199px) {
  .dashboard-header .navbar-collapse .main-menu li a:hover {
    color: #fff !important;
  }
}

.header-bottom-area .navbar-collapse .main-menu li:hover a::after {
  width: 100%;
}

.header-bottom-area .header-section.header-fixed .navbar-collapse .main-menu li a {
  padding: 30px 18px 30px 0;
}

.header-bottom-area .navbar-collapse .main-menu li .sub-menu {
  position: absolute;
  top: 105%;
  left: 0;
  width: 200px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  padding: 4px 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 9;
  margin-left: 0;
  border: 0;
  outline: 0;
  border-radius: 5px;
}

.header-bottom-area .navbar-collapse .main-menu li .sub-menu li {
  border-bottom: 1px solid #e5e5e5;
  margin-right: 0;
  transition: all ease 0.3s;
}

.header-bottom-area .navbar-collapse .main-menu li .sub-menu li:last-child {
  border-bottom: 0px solid;
}

.header-bottom-area .navbar-collapse .main-menu li .sub-menu li:hover {
  color: hsl(var(--secondary));
  padding-left: 5px;
}

.header-bottom-area .navbar-collapse .main-menu li .sub-menu li a {
  color: hsl(var(--secondary));
  padding: 8px 20px;
  font-size: 0.875rem;
  display: block;
  transition: all ease 0.5s;
}

.header-bottom-area .navbar-collapse .main-menu li .sub-menu li a::after {
  position: unset;
  content: none;
}

.header-bottom-area .navbar-collapse .main-menu li .sub-menu .header-section.header-fixed .navbar-collapse .main-menu li .sub-menu li a {
  padding: 8px 20px;
}

@media (max-width: 991px) {
  .header-bottom-area .navbar-collapse .main-menu li .sub-menu .navbar-collapse .main-menu li .sub-menu {
    position: initial;
    opacity: 1;
    visibility: visible;
    display: none;
    -webkit-transition: none;
    transition: none;
  }
}

.header-bottom-area .navbar-collapse .main-menu li .sub-menu .navbar-collapse .main-menu li:last-child .sub-menu {
  left: auto;
  right: 0;
}

.language-select-list {
  position: relative;
  z-index: 99;
  margin-right: 20px;
}

.language-thumb i {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.login-thumb i {
  font-size: 1.125rem;
  font-weight: 600;
}

.login-bar-two {
  margin-left: 30px;
}

.language-select .nice-select {
  padding-left: 10px;
  font-size: 0.875rem;
  background: transparent;
  font-weight: 700;
  border: none;
}

.language-select .nice-select span {
  color: #fff;
}

.language-select .nice-select .option {
  font-weight: 600;
}

.language-select .nice-select .option:hover {
  color: #777777;
}

.language-select .nice-select:after {
  border-style: solid;
  border-width: 7px 7px;
  border-color: white transparent transparent;
  transform: rotate(0);
  right: 4px;
}

.site-logo img {
  width: 170px;
}

@media (max-width: 1399px) {
  .site-logo img {
    width: 150px;
  }
}

@media only screen and (max-width: 420px) {
  .site-logo img {
    width: 140px;
  }
}

@media only screen and (max-width: 374px) {
  .site-logo img {
    width: 130px;
  }
}

.navbar-toggler {
  padding: 0 !important;
  border: 0;
}

.navbar-toggler span {
  border-radius: 5px;
  color: hsl(var(--base));
  font-size: 1.875rem;
}

@media only screen and (max-width: 575px) {
  .navbar-toggler span {
    font-size: 1.375rem;
  }
}

@media (max-width: 991px) {
  .header-bottom-area {
    padding: 10px 0;
  }
}

/* Header Section End */


/* Banner Section Start */
.banner-section {
  position: relative;
  background-attachment: fixed;
  z-index: 9;
  padding-top: 250px;
  padding-bottom: 240px;
}

@media only screen and (max-width: 991px) {
  .banner-section {
    padding-top: 150px;
    padding-bottom: 180px;
  }
}

@media only screen and (max-width: 575px) {
  .banner-section {
    padding-top: 130px;
    padding-bottom: 150px;
  }
}

.banner-section .banner-content {
  position: relative;
  z-index: 9;
}

.banner-section .banner-content .title {
  font-size: 3.75rem;
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
  color: #fff;
}

.banner-section .container,
.container-fluid {
  position: relative;
  z-index: 11;
}

.banner-section .banner-content .title span {
  color: #fff;
}

.banner-section .cmn-btn {
  margin-top: 40px;
  padding: 16px 32px;
}

.banner-section .banner-content p {
  font-size: 1.125rem;
  width: 70%;
  margin: 0 auto;
  text-transform: unset;
  line-height: 1.5em;
  color: #fff;
}

@media(max-width: 1199px) {
  .banner-section .banner-content .title {
    font-size: 3.2rem !important;
  }
}

@media(max-width: 991px) {
  .banner-section .banner-content .title {
    font-size: 2.5rem !important;
  }
}

@media(max-width: 768px) {
  .banner-section .banner-content .title {
    font-size: 2.125rem !important;
  }
}

@media(max-width: 575px) {
  .banner-section .banner-content .title {
    font-size: 2rem !important;
  }

  .banner-section .cmn-btn {
    margin-top: 30px;
    padding: 12px 16px;
  }
}

@media (max-width: 991px) {
  .banner-section .banner-content p {
    width: 100%;
  }
}

#particles-js {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

/* Banner Section End */

/* Calculate Section Start */
.calculate-section .cal-area {
  box-shadow: 7px 5px 30px 0px rgb(72 73 121 / 15%);
  background-color: #fff;
  border-radius: 3px;
  margin-top: -88px;
  position: relative;
  z-index: 9;
  background-size: contain;
  background-repeat: repeat;
}

.cal-area-inner {
  padding: 40px 30px;
}

.calculate-section .cal-area .title {
  margin-bottom: 0;
}

@media(max-width: 575px) {
  .contact-icon i {
    font-size: 1.1255rem;
    width: 40px;
    height: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .calculate-section .cal-area .title {
    margin-bottom: 10px;
  }
}

.calculate-section .cal-area .cal-form .form-group {
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .calculate-section .cal-area .cal-form .form-group {
    margin-bottom: 10px;
  }
}

.calculate-section .cal-area .cal-form input {
  background-color: hsl(var(--secondary));
  color: #fff;
  border-radius: 3px;
  padding: 10px 25px;
  border: none;
  text-align: center;
}

.calculate-section .cal-area .cal-form input::placeholder {
  color: #fff;
}

.calculate-section .cal-area .cal-form .nice-select {
  background-color: hsl(var(--base));
  border-radius: 3px;
  height: 45px;
  line-height: 45px;
}

.calculate-section .cal-area .cal-form .nice-select .current {
  color: #fff;
}

.calculate-section .cal-area .cal-form .nice-select::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.calculate-section .cal-area .cal-form .nice-select .option:hover {
  color: #fff;
}

.calculate-section .cal-area .cal-form .nice-select .option.selected:hover {
  color: #777777;
}

.cal-select select.form-select {
  padding: 12px 30px 12px 18px;
  border-radius: 3px;
}

@media(max-width: 575px) {
  .cal-select select.form-select {
    padding: 8px 28px 8px 10px;
  }

  .cal-area-inner {
    padding: 30px 16px;
  }

  .calculate-section .cal-area {
    margin-top: -125px;
  }
}

.calculate-section .cal-area .revenue-area .sub-title {
  color: hsl(var(--base));
}

.calculate-section .cal-area .revenue-area .title {
  font-size: 1.5rem;
  margin-bottom: 0;
}

@media(max-width: 575px) {
  .calculate-section .cal-area .revenue-area .title {
      font-size: 1.25rem;
    }
}

/* Calculate Section End */

/* Site Breadcrumb Start */
.site-breadcrumb {
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .site-breadcrumb {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .site-breadcrumb {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.site-breadcrumb .title {
  color: #fff;
}

@media (max-width: 575px) {
  .ptb-120 {
    padding: 80px 0;
  }
}

/* Site Breadcrumb End */

/* Section Utilities Start */
.title-border {
  position: relative;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  border-radius: 30px;
}

.title-border::before {
  position: absolute;
  content: '';
  top: 50%;
  left: -50px;
  height: 5px;
  width: 70px;
  border: 1px solid hsl(var(--base));
  border-radius: 30px;
  overflow: hidden;
}

.title-border::after {
  position: absolute;
  content: '';
  top: 50%;
  left: -33px;
  height: 5px;
  width: 35px;
  background-color: hsl(var(--base));
  animation: divider-effect 5s linear infinite;
}

.section-header .title-border-left {
  position: relative;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
}

.section-header .title-border-left::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  height: 5px;
  width: 70px;
  border: 1px solid hsl(var(--base));
  border-radius: 30px;
  overflow: hidden;
}

.section-header .title-border-left::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  height: 5px;
  width: 35px;
  background-color: hsl(var(--base));
  animation: divider-effect 5s linear infinite;
}

.section-header p {
  font-size: 1rem;
  margin-left: auto;
  margin-right: auto;
  text-transform: unset;
  font-weight: 400;
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .section-header p {
    width: 100%;
    font-size: 1.125rem;
  }
}

.section {
  background-color: #fff;
}

.section-bg {
  background-color: #f8f8f8;
}

/* Section Utilities End */

/* About Us Section Start */
.about-thumb {
  text-align: center;
}

.about-thumb img {
  width: 480px;
  max-width: 100% !important;
}

.about-section .title-border::before {
  left: 0 !important;
}

.about-section .title-border::after {
  left: 20px !important;
}

.about-section .about-content .title-border {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 30px;
}

.about-section .about-content .title-border::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  height: 5px;
  width: 70px;
  border: 1px solid hsl(var(--secondary));
  border-radius: 30px;
}

.about-section .about-content .title-border::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  height: 5px;
  width: 35px;
  background-color: hsl(var(--secondary));
}

.about-section .about-content .about-item-area {
  margin-top: 30px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-section .about-content .about-item-area .about-item {
  position: relative;
  align-items: unset !important;
}

.about-section .about-content .about-item-area .about-item::before {
  position: absolute;
  content: '';
  left: 24px;
  height: calc(100% - 30px);
  border: 1px dashed hsl(var(--secondary) / 0.5);
  z-index: -1;
  top: 55px;
}

.about-item:last-of-type::before {
  display: none;
}

.about-section .about-content .about-item-area .about-item .about-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  text-align: center;
  background-color: hsl(var(--secondary));
  border-radius: 50%;
  color: #fff;
  font-size: 1.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 400px) {
  .about-section .about-content .about-item-area .about-item .about-icon {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }

  .about-section .about-content .about-item-area .about-item::before {
    left: 19.5px;
    min-height: calc(100% - 0.875rem);
    top: 42px;
  }
}

.about-section .about-content .about-item-area .about-item .about-details .title {
  font-weight: 500;
  margin-bottom: 0;
}

/* About Us Section End */

/* How It Works Section Start */
.how-works-section .work-content-area {
  transition: all 0.5s;
}

.how-works-section .work-item-area .work-item {
  position: relative;
  transition: all 0.5s;
}

.how-works-section .work-item-area .work-item .work-icon {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(var(--secondary));
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  color: #fff !important;
  font-size: 2.5rem;
  border: 3px solid hsl(var(--base));
}

@media(max-width: 767px) {
  .how-works-section .work-item-area .work-item .work-icon {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .how-works-section .work-item-area .work-item .work-icon i {
    bottom: 5px !important;
    right: 5px !important;
    font-size: 1.5rem !important;
  }
}

.how-works-section .work-item-area .work-item .work-icon i {
  position: absolute;
  font-size: 3.125rem;
  right: 0;
  bottom: 0;
  opacity: .2;
  color: hsl(var(--base));
}

/* How It Works Section End */


/* Feature Section Start*/
.choose-section {
  background-color: hsl(var(--secondary));
  overflow: hidden;
}

.choose-section .section-header p {
  color: #fff;
}

.choose-item-area {
  position: relative;
}

.choose-section .choose-item-area .choose-item .choose-icon {
  width: 50px;
}

.choose-section .choose-item-area .choose-item .choose-content .title {
  font-weight: 800;
  font-size: 1.5rem;
}

.choose-section .choose-item-area .choose-thumb-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media(max-width: 991px) {
  .choose-section .choose-item-area .choose-thumb-inner {
    display: none;
  }

  .choose-section .choose-item-area .choose-item .choose-icon {
    width: 40px;
  }

  .choose-item {
    border: 1px solid #444;
    padding: 20px;
    border-radius: 3px;
    height: 100%;
  }
}

@media(max-width: 575px) {
  .choose-item {
    flex-direction: column;
    gap: 1.2rem !important;
  }
}

/* Feature Section End*/

/* Service Section Start */
.service-item {
  border: 1px solid hsl(var(--base));
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  gap: 1.5rem;
}

.service-item:hover {
  scale: 1.02;
  background-color: hsl(var(--base) / 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: hsl(var(--base));
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.service-content .title {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-item {
    padding: 1rem;
  }
}

/* Service Section End */

/* Pricing Plan Section Start */
.pricing-section .pricing-item {
  padding: 20px;
  border-radius: 3px;
  transition: all 0.5s;
  background-color: hsl(var(--secondary));
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.pricing-section .pricing-item:hover {
  scale: 1.01;
}

.pricing-item-inner {
  padding: 2px;
  background: linear-gradient(60deg, hsl(var(--base) / 0.05), hsl(var(--base) / 0.08), hsl(var(--base)), transparent, transparent);
  border-radius: 5px;
  transition: all 0.5s ease;
  height: 100%;
}

.pricing-content {
  background-color: hsl(var(--secondary));
  padding: 20px;
  border-radius: 5px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-section .pricing-item .pricing-icon {
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-section .pricing-item .pricing-header .pricing-border {
  display: inline-block;
  width: 10px;
  height: 10px;
  line-height: 10px;
  background-color: #dfdfdf;
  border-radius: 50%;
  position: relative;
}

.pricing-section .pricing-item .pricing-header .pricing-border::before {
  position: absolute;
  content: '';
  top: 40%;
  left: -70px;
  height: 3px;
  width: 60px;
  border: 1px solid #dfdfdf;
  border-radius: 30px;
}

.pricing-section .pricing-item .pricing-header .pricing-border::after {
  position: absolute;
  content: '';
  top: 40%;
  right: -70px;
  height: 3px;
  width: 60px;
  border: 1px solid #dfdfdf;
  border-radius: 30px;
}

.pricing-section .pricing-item .pricing-header .title {
  font-weight: 600;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
}

.pricing-section .pricing-item .pricing-header .title span {
  font-size: 1rem;
}

.pricing-section .pricing-item .pricing-header .sub-title {
  font-weight: 600;
  color: #fff;
  margin-block: 20px;
  font-size: 1.25rem;
}

.pricing-section .pricing-item .pricing-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-section .pricing-item .pricing-body .pricing-list li {
  padding-bottom: 1px;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--bgTransparent), var(--bgTransparent), hsl(var(--base)),
      hsl(var(--base)), hsl(var(--base)), hsl(var(--base)),
      hsl(var(--base)), var(--bgTransparent),
      var(--bgTransparent));
}

.pricing-section .pricing-item .pricing-body .pricing-list li:last-child {
  padding-bottom: 1px;
  font-size: 1rem;
  color: #fff;
  background: transparent;
}


.pricing-section .pricing-item .pricing-body .pricing-list li .pricing-list-inner {
  padding: 16px;
  background-color: hsl(var(--secondary));
  color: #ddd;
}

.pricing-section .pricing-item .pricing-body .pricing-btn-area {
  margin-top: 10px;
}

.pricing-section .pricing-item .pricing-body .pricing-btn-area .cmn-btn {
  padding: 12px 35px;
}

@media (max-width: 991px) {
  .pricing-section .pricing-item .pricing-icon {
    width: 60px;
  }

  .pricing-section .pricing-item .pricing-body .pricing-list li .pricing-list-inner {
    padding: 16px 10px;
  }
}

.pricing-section .section-header {
  margin-bottom: 24px;
}

@media (max-width: 575px) {

  .pricing-section .pricing-item,
  .pricing-content {
    padding: 0.875rem;
    max-width: 360px;
    margin: 0 auto;
  }

  .pricing-section .pricing-item .pricing-body .pricing-list li .pricing-list-inner {
    padding: 0.875rem 0;
  }

  .pricing-section .pricing-item .pricing-body .pricing-list li {
    padding-bottom: 1px;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(90deg, var(--bgTransparent), hsl(var(--base)), hsl(var(--base)), hsl(var(--base)), hsl(var(--base)), hsl(var(--base)), var(--bgTransparent));
  }
}

/* Pricing Plan Section End */

/* Latest Transactions Section Start*/
.latest-transaction-card-wrapper {
  overflow: hidden;
}

.latest-transaction-card {
  padding: 20px;
  border-radius: 3px;
  transition: all 0.5s;
  background-color: hsl(var(--secondary));
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-basis: 300px;
  flex-shrink: 0;
  flex-grow: 1;
  text-align: center;
}

.latest-transaction-card-wrapper .swiper-slide {
  min-width: 300px;
  width: max-content;
}

@media(max-width: 1399px) {
  .latest-transaction-card-wrapper .swiper-slide {
    min-width: 260px;
  }
}

@media(max-width: 575px) {
  .latest-transaction-card-wrapper .swiper-slide {
    min-width: 280px;
  }
}

.latest-transaction-card .trx-amount {
  font-size: 1rem;
  background: hsl(0deg 0% 0% / 0%);
  text-align: center;
  padding: 8px 20px;
  border-radius: 25px;
  margin-top: 16px;
  background: linear-gradient(60deg, hsl(var(--base)), hsl(var(--base) / 0.8), hsl(var(--base)));
  font-weight: 700;
  width: max-content;
  margin: 16px auto 0;
  min-width: 100px;
}

.latest-transaction-card .trx-number {
  font-size: 1.125rem;
}

/* Latest Transactions Section End */

/* Newsletter Section Start */
.newsletter-section {
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 0px 6px 0px hsl(var(--base));
  border: 1px solid hsl(var(--base));
}

@meida (max-width: 991px) {
  .newsletter-section svg {
    width: 60px;
    height: 60px;
  }
}

.newsletter-form {
  margin-top: 30px;
  position: relative;
}

.newsletter-form .cmn-btn {
  padding: 1rem 1.5rem !important;
  border-radius: 0;
  flex-shrink: 0;
  border-radius: 0px 3px 3px 0px;
}

.newsletter-form input {
  padding: 1rem;
  border-radius: 3px 0 0 3px;
  border: 0;
}

@media(max-width: 575px) {
  .newsletter-section {
    padding: 1.5rem;
  }

  .newsletter-form .cmn-btn,
  .newsletter-form input {
    border-radius: 3px;
    padding: .75rem !important;
  }
}

/* Newsletter Section End */

/* Testimonial Section */
.client-slider {
  overflow: hidden;
}

.client-slider .swiper-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

@media(max-width: 575px) {
  .client-slider .swiper-pagination {
    margin-top: 36px;
  }
}

.client-slider .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: hsl(var(--base));
}

.client-slider .swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 10px;
}

.client-item {
  background-color: hsl(var(--secondary));
  border-radius: 5px;
  padding: 20px 30px;
  position: relative;
  z-index: 2;
}

.client-thumb {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.client-content {
  padding-top: 10px;
}

.client-content p {
  color: #fff;
}

.client-footer {
  padding-top: 20px;
}

.client-footer .title {
  color: #fff;
  margin-bottom: 0;
}

.client-footer .sub-title {
  color: #fff;
  font-size: .875;
  font-style: italic;
}

/* Testimonial End */

/* FAQ Section Start */
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-wrapper .faq-item {
  transition: all 0.3s;
  border: 1px solid #e5e5e5;
  padding: .8rem 1rem;
}

.faq-wrapper .faq-item .faq-title {
  font-size: 1.2rem;
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 3px;
  margin-bottom: 5px;
}

.faq-wrapper .faq-item .faq-title .title {
  width: calc(100% - 40px);
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: unset;
}

@media only screen and (max-width: 991px) {
  .faq-wrapper .faq-item .faq-title .title {
    font-size: 1rem;
  }
}

.faq-wrapper .faq-item.open .right-icon::before {
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-wrapper .faq-item.open .faq-title {
  color: hsl(var(--base));
}


.faq-wrapper .faq-item.active .faq-content {
  display: block;
}

.faq-wrapper .faq-item.active.open .right-icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-wrapper .faq-content {
  display: none;
}

.faq-wrapper .right-icon {
  display: block;
  width: 35px;
  height: 35px;
  position: relative;
}

@media (max-width: 575px) {
  .faq-wrapper .right-icon {
    width: 15px;
    height: 15px;
    right: 0px;
  }
}

.faq-wrapper .right-icon::before,
.faq-wrapper .right-icon::after {
  position: absolute;
  content: '';
  background: #232323;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.faq-wrapper .right-icon::before {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
}

.faq-wrapper .right-icon::after {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
}

/* FAQ Section End */

/* CTA Section Start */
.cta-section {
  background-color: hsl(var(--secondary));
  padding-block: 80px;
}

.cta-section .call-to-action-content .title {
  color: #fff;
  font-weight: 700;
}

.cta-section .call-to-action-content p {
  color: #fff;
}

.cta-section-inner {
  border: 2px solid;
  padding: 40px;
  border-image: linear-gradient(10deg, hsl(var(--base)), hsl(var(--base) / 0.8), hsl(var(--base) / 0.6), hsl(var(--base) / 0.4), transparent, transparent, transparent, transparent, hsl(var(--base) / 0.5), hsl(var(--base) / 0.6), hsl(var(--base) / 0.8), hsl(var(--base)));
  border-image-slice: 1;
}

@media(max-width: 767px) {
  .cta-section-inner {
    border-image: linear-gradient(310deg, hsl(var(--base)), hsl(var(--base) / 0.8), hsl(var(--base) / 0.6), hsl(var(--base) / 0.4), transparent, transparent, transparent, transparent, hsl(var(--base) / 0.5), hsl(var(--base) / 0.6), hsl(var(--base) / 0.8), hsl(var(--base)));
    border-image-slice: 1;
  }
}

.cta-section-inner .cmn-btn {
  padding-block: 12px;
}

/* CTA Section End */

/*--------------------------------------------------------------
    [ ## Blog ]
--------------------------------------------------------------*/
.blog-content .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
}

.blog-item p {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  margin-bottom: 6px;
}

.blog-item:hover .blog-content .title {
  color: hsl(var(--base));
}

.blog-thumb {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-thumb .overlay-date {
  position: absolute;
  background-color: hsl(var(--base));
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 70px;
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .blog-thumb .overlay-date {
    font-size: 1rem;
    width: 90px;
    height: 65px;
  }
}

@media only screen and (max-width: 767px) {
  .blog-thumb .overlay-date {
    width: 70px;
    height: 60px;
  }
}

.blog-thumb img {
  width: 100%;
  transition: all 0.7s;
}

.blog-content {
  margin-top: 1.5rem;
  transition: all 0.7s;
}

.blog-content .date {
  color: hsl(var(--base));
}

.blog-content .date i {
  margin-right: 6px;
}

.blog-content .title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .blog-content .title {
    font-size: 1.2rem;
  }
}

.blog-content .blog-title {
  font-size: 1.8rem;
}

.blog-content .blog-post-meta {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.blog-content .blog-post-meta span i {
  color: #d41919;
  margin-right: 10px;
}

.blog-content .blog-post-meta .blog-date {
  position: relative;
  margin-right: 100px;
}

.blog-content .blog-post-meta .blog-date::after {
  position: absolute;
  content: '';
  top: 0;
  right: -40%;
  width: 1px;
  height: 30px;
  background-color: #e5e5e5;
}

.blog-content .blog-btn .trans-btn i {
  margin-left: 7px;
  transition: all 0.3s;
}

.blog-details-container {
  display: flex;
  gap: .8rem;
}

.blog-details {
  background-color: #fff;
  padding: 1.8rem;
  border-radius: 5px;
}

.blog-details__header {
  margin-bottom: 1.2rem;
}

.blog-details .blog-title {
  font-size: 1.8rem;
  margin-bottom: 0;
}

.blog-details__sidebar {
  background-color: #fff;
  position: sticky;
  top: 100px;
  padding: 1.8rem;
  border-radius: 3px;
  flex-basis: 320px;
  flex-shrink: 0;
  height: max-content;
}


.blog-details__sidebar-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.latest-blog {
  display: flex;
  gap: 1rem;
}

.latest-blog__thumb {
  flex-shrink: 0;
  flex-basis: 100px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.latest-blog__thumb img {
  transition: all 0.3s;
}

.latest-blog__thumb:hover img {
  scale: 1.2;
}

.latest-blog__content .short_description {
  display: none;
}

.latest-blog__content .title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.latest-blog__content .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
}

.latest-blog__content .title a:hover {
  color: hsl(var(--base));
}

.latest-blog__content .blog-date {
  font-size: 0.8125rem;
}

.latest-blog__content .blog-date,
.blog-details__header .blog-date {
  color: #a1a1a1;
}

.blog-details__header .blog-date {
  font-size: 1rem;
}

@media(max-width: 1399px) {
  .blog-details__header {
    margin-bottom: 1rem;
  }

  .blog-details .blog-title {
    font-size: 1.5rem;
  }

  .blog-details__header .blog-date {
    font-size: 0.875rem;
  }
}

@media(max-width: 991px) {
  .latest-blog__content .title {
    margin-bottom: 0;
  }

  .blog-details-container {
    flex-direction: column;
  }

  .blog-details__sidebar {
    flex-grow: 1;
  }

  .latest-blog__thumb {
    flex-basis: 215px;
  }

  .latest-blog__content .short_description {
    display: block;
  }

  .latest-blog__content .short_description p {
    margin-top: .5rem;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
    line-height: 1.5;
  }
}

@media(max-width: 767px) {
  .blog-details__header {
    margin-bottom: .5rem;
  }

  .blog-details .blog-title {
    font-size: 1.2rem;
    line-height: 1;
  }

  .latest-blog__thumb {
    flex-basis: 235px;
  }
}

@media(max-width: 575px) {
  .latest-blog__thumb {
    flex-basis: 160px;
  }

  .blog-details,
  .blog-details__sidebar {
    padding: 1.2rem;
  }

  .blog-content {
    margin-top: 1rem;
  }
}

@media(max-width: 480px) {
  .latest-blog {
    flex-direction: column;
  }

  .latest-blog__thumb {
    flex-basis: 100%;
  }
}

.contact-thumb {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-right: 50px;
}

.contact-section .title-border::before {
  left: 2px;
}

.contact-section .title-border::after {
  left: 3px;
}

.contact-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0px 10px 0px #00000008;
  height: 100%;
  border: 1px solid hsl(var(--base));
  gap: 16px;
}

.contact-info-item:hover {
  background-color: hsl(var(--base) / 0.1);
}

.contact-icon i {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background-color: hsl(var(--base));
  box-shadow: 0px 0px 10px 0.5px rgba(0, 0, 0, 0.05);
}

.contact-description {
  flex-grow: 1;
  word-break: break-all;
}

.contact-description .title {
  display: block;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 1.125rem;
}

.contact-description p {
  margin-bottom: 0;
}


.register-section {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 80px;
}

.register-section .form-check-label {
  display: flex !important;
  gap: 4px;
  flex-wrap: wrap;
}

@media (max-width: 575px) {
  .register-section .form-check-label {
    font-size: 0.875rem;
  }
}

.register-section .form-check-label::after {
  display: none;
}

@media (max-width: 991px) {
  .register-section {
    padding-block: 60px;
  }
}

@media (max-width: 767px) {
  .register-section {
    padding-block: 40px;
  }
}

@media (max-width: 575px) {
  .register-section {
    padding-block: 32px;
  }
}

.registration-form-container {
  width: 580px;
  max-width: 95dvw;
}

.register-section .register-form-area {
  padding: 50px 30px;
  position: relative;
  z-index: 9;
}

.register-section .register-form-area::before {
  position: absolute;
  content: '';
  bottom: -25px;
  left: -25px;
  background-color: hsl(var(--base));
  width: 100%;
  height: 100%;
  border-radius: 5px;
  z-index: -10;
}

@media (max-width: 767px) {
  .register-section .register-form-area::before {
    display: none;
  }
}

.contact-section .register-form-area::before {
  display: none;
}

.contact-section .register-form-area::after {
  display: none;
}

.register-section .register-form-area::after {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: -10;
}

.register-area {
  min-height: 100vh;
}

@media(max-width: 991px) {
  .register-section .register-form-area {
    padding: 30px;
    margin-top: 30px;
  }
}

@media(max-width: 575px) {
  .register-section .register-form-area {
    padding: 20px 12px;
    margin-top: 20px;
  }
}

.register-logo-area {
  background-color: hsl(var(--secondary));
  padding: 10px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.register-logo-area a {
  width: 150px;
}


.account-header .sub-title {
  color: hsl(var(--secondary));
  font-size: 1.125rem;
  font-weight: 600;
}

.account-header .sub-title a {
  color: hsl(var(--base));
}


blockquote .quote-content {
  font-size: 1rem;
  font-style: italic;
  color: #fff;
  background-color: hsl(var(--base));
  text-align: center;
  padding: 20px 25px;
}

@media (max-width: 575px) {
  blockquote .quote-content {
    font-size: 1rem;
  }
}


.tab-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: sticky;
  top: 64px;
  /* background-color: #fff; */
  padding-block: 40px;
  z-index: 99;
  margin-top: -20px;
}


@media(max-width:1199px) {
  .tab-scroll-wrapper {
    padding-block: 30px;
  }
}

.custom--tab {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 1px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border: none;
}

.custom--tab::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.custom--tab .nav-item .nav-link {
  border-radius: 3px;
  border: 1px solid #e5e5e5;
  color: #666;
  font-weight: 600;
}

.custom--tab .nav-item .nav-link.active {
  background: hsl(var(--base));
  border-color: hsl(var(--base));
  color: #fff;
}

.custom--tab .nav-link {
  white-space: nowrap;
  /* Prevent text wrapping */
}

@media(max-width:575px) {
  .tab-scroll-wrapper {
    top: 60px;
    padding-block: 16px;
  }

  .custom--tab .nav-item .nav-link {
    font-weight: 400;
  }

  .custom--tab .nav-item .nav-link {
    padding: 6px 12px;
  }
}

.footer-section {
  background-color: hsl(var(--secondary));
  position: relative;
  margin-top: auto;
  color: #fff;
}

.footer-widget.description {
  flex-basis: 340px;
}

.footer-widget p {
  margin-bottom: 0;
}

@media(max-width: 991px) {
  .footer-widget.description {
    flex-basis: 100%;
  }
}

.footer-about p {
  margin-top: 20px;
}

.footer-item-area {
  margin-top: 40px;
}

.footer-item-area--style {
  margin-top: 0;
}

.footer-item {
  width: 70%;
  padding: 15px;
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.footer-about-icon {
  width: 40px;
}

.footer-about-content li {
  padding: 0 !important;
}

.footer-section .widget-title {
  position: relative;
  color: #fff;
  margin-bottom: 16px;
}

.footer-social li {
  display: inline-block;
}

.footer-social li a {
  position: relative;
  color: white !important;
  font-size: 1.125rem;
  text-align: center;
  display: inline-block;
  padding-left: 0 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 2;
}

.footer-social li a:hover,
.footer-social li a.active {
  color: hsl(var(--base)) !important;
}

.footer-social li a:hover::before,
.footer-social li a.active::before {
  background-color: #fff;
}

.footer-social li a i {
  margin-right: 0 !important;
}

.footer-link-area .footer-link {
  color: #fff;
  margin-right: 20px;
}

.footer-link-area .footer-link i {
  color: hsl(var(--base));
  margin-right: 10px;
}

.privacy-area {
  margin-top: auto;
  padding-top: 15px;
  padding-bottom: 10px;
  position: relative;
  background-color: hsl(var(--secondary));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-area p {
  color: #fff;
}

.profile-section {
  background-color: #f8f8f8;
}

.profile-area {
  background-color: #fff;
  box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 10%);
  padding: 30px 30px;
  border-radius: 5px;
}

.submit-btn {
  padding: 10px 30px;
  border-radius: 5px;
  color: #fff;
  background-color: hsl(var(--base));
  width: 100%;
  margin-top: 10px;
}

.profile-form .nice-select {
  height: 38px;
  line-height: 38px;
  border-radius: 5px;
  border: 1px solid #ced4da;
}

.profile-form .nice-select .option:hover {
  color: #fff;
}

.profile-form .nice-select .option.selected:hover {
  color: #777777;
}

.profile-thumb-preview {
  width: 100%;
  height: 200px;
  position: relative;
  border-radius: 5px;
  border: 1px solid #ced4da;
}

.profile-thumb-preview .image-preview {
  width: 100%;
  height: 100%;
}

.profile-edit .upload {
  display: none;
}

.profile-edit label {
  text-align: center;
  line-height: 35px;
  font-size: 1rem;
  cursor: pointer;
  padding: 2px 25px;
  width: 100%;
  border-radius: 5px;
  background-color: hsl(var(--base));
  color: #fff;
}

.plan-form .cmn-btn:hover,
.support-ticket .cmn-btn:hover,
.support-ticket .cmn-btn:focus {
  background-color: hsl(var(--base));
  color: #fff;
}

.modal .close {
  background: transparent;
  font-size: 1.25rem;
  font-weight: 500;
}

.form-control {
  padding: .7rem 1rem;
  border: 1px solid #e7e7e7;
  color: hsl(var(--bodyColor));
}

.form-control.form-select {
  padding-right: 2rem;
}

.form-control:focus {
  border-color: hsl(var(--black) / 0.3);
  box-shadow: none;
}

.form-control:disabled{
  background-color: #e9ecef57 !important;
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback).form-control {
  border-left: none !important;
  padding-left: 0 !important;
}

.input-group>:not(:last-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback).form-control {
  border-right-color: #fff !important;
  padding-right: 0 !important;
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback).input-group-text {
  border-left-color: #fff !important;
}

.input-group:has(.form-control:focus) .input-group-text {
  border-color: hsl(var(--black) / 0.3);
}

.bg-secondary {
  background-color: hsl(var(--secondary)) !important;
}

.support-ticket .card-title {
  padding-top: 0.5rem;
}

*[class*="btn-"] {
  transition: all 0.3s;
  border-radius: 3px;
}

.btn--dark {
  background-color: hsl(var(--black));
  color: #ffffff;
}

.btn--dark:hover {
  background-color: hsl(var(--black) / .8);
  color: #ffffff;
}

.btn--primary {
  background-color: #4634ff !important;
  color: #ffffff;
}

.btn--primary:hover {
  background-color: #5e50ee !important;
  color: #ffffff;
}

.btn--light {
  background-color: #f7f7f7;
  border: 1px solid #ebebeb;
}

.btn--light:hover,
.btn--light:active,
.btn--light:focus {
  background-color: #f9f9f9;
  border: 1px solid #ebebeb;
}

.btn--base,
.btn-icon {
  background-color: hsl(var(--base));
  color: #fff;
}

.btn--base {
  color: #fff;
  background-color: hsl(var(--base));
}

.btn-light {
  color: hsl(var(--black) / 0.8);
}

.btn-light:hover,
.btn-light:active,
.btn-light:focus {
  background-color: #ebebeb;
  color: hsl(var(--black));
}

.btn--base:hover,
.btn--base:focus,
.btn--base:active,
.btn-icon:hover,
.btn-icon:focus {
  border-color: hsl(var(--base) / 0.8) !important;
  background-color: hsl(var(--base) / 0.8) !important;
  color: #fff !important;
}

.btn--warning {
  background-color: #ff9e42;
  color: hsl(var(--black));
}

.btn--warning:hover {
  background-color: #f89436;
  color: hsl(var(--black));
}

.bg--base {
  background-color: hsl(var(--base));
}

.input-group input {
  padding-left: 16px !important;
}

.copyBtn {
  border-color: hsl(var(--base));
}

.text-muted {
  color: #9f9f9f !important;
}

.text-base,
.text-base:hover,
.text-base:focus {
  color: hsl(var(--base));
}

.menu_has_children a::before {
  position: absolute;
  content: "\f054";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  right: -12px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  color: #fff;
  font-size: 11px;
  transition: .2s linear;
}

/* ======================= Dashboard Menu Small Device Css Start ================================ */
@media (max-width: 1199px) {
  .menu_has_children a::before {
    right: -12px;
  }

  .menu_has_children a {
    position: relative;
    display: block !important;
  }

  .menu_has_children a.icon_rotate::before {
    transform: rotate(90deg);
  }
}

/* ======================= Dashboard Menu Small Device Css End ================================ */

@media (max-width: 1199px) {
  .sidebar-overlay {
    position: fixed;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.752);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .2s linear;
  }

  .sidebar-overlay.show_overlay {
    visibility: visible;
    opacity: 1;
  }
}

.dashboard-menu-bar {
  margin-bottom: 10px;
}

.btn-dark:active:focus {
  box-shadow: none;
}

.header-bottom-area {
  transition: .3s linear;
}

.header-bottom-area.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: hsl(var(--secondary));
  transition: .3s linear;
  z-index: 99;
  padding-top: 0;
}

@media (max-width: 991px) {
  .header-bottom-area.fixed-header {
    padding-top: 10px;
  }

  .header-bottom-area {
    background-color: hsl(var(--secondary));
  }
}



.page-link:focus {
  box-shadow: none;
}

.popular-item-content .title a:hover {
  color: hsl(var(--base));
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-list li a {
  color: #fff;
}

.footer-list li a:hover {
  color: hsl(var(--base));
}

.currency-addon {
  background-color: hsl(var(--base));
  color: #fff;
  border: 1px solid hsl(var(--base));
}

label.required:after {
  content: '*';
  color: #DC3545 !important;
  margin-left: 2px;
}

.checkbox-wrapper {
  margin-top: 20px;
}




.social-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.social-list__item {
  margin: 0 5px;
}

.social-list__link {
  width: 40px;
  height: 40px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  cursor: pointer;
  color: #fff;
  background-color: hsl(var(--secondary));
}

@media (max-width: 575px) {
  .social-list__link {
    width: 35px;
    height: 35px;
    font-size: 0.875rem;
  }
}

.social-list__link.active,
.social-list__link:hover {
  background-color: hsl(var(--base));
  ;
  color: #fff;
}

.input-group .input-group-text {
  padding: 8px 15px;
  line-height: 1;
  background-color: transparent;
  border: 1px solid #e7e7e7;
  color: hsl(var(--bodyColor));
}

.ticket-attachments-message {
  line-height: 1;
}

.custom--card {
  box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 10%);
  border-radius: 5px;
  border: 0;
}

.form-check .form-check-input {
  box-shadow: none;
  background-color: transparent;
  box-shadow: none !important;
  border: 0;
  border: 1px solid hsl(var(--base));
  position: relative;
  border-radius: 3px;
  width: 16px !important;
  height: 16px !important;
  padding: 0;
}

.form-check .form-check-label {
  display: inline-block;
}

.form-check .form-check-input:checked {
  background-color: hsl(var(--base)) !important;
  border-color: hsl(var(--base)) !important;
  box-shadow: none;
}

.form-check .form-check-input[type=checkbox] {
  background-image: none;
}

.form-check .form-check-input:checked::before {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgb(255, 255, 255);
  font-size: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-check:last-child {
  margin-bottom: 0;
}

.form-check:last-child .form-check-label {
  margin-bottom: 0;
}

.form-check {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .dashboard-header .navbar-collapse .main-menu li a.cmn-btn {
    padding: 5px 16px !important;
  }
}

.usernameExist,
.mobileExist {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
}

/* Header Dropdown Menu Responsive Start */
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li a::before {
  display: none;
}

@media (max-width: 991px) {
  .header-bottom-area .navbar-collapse .main-menu {
    padding: 20px;
    background-color: hsl(var(--secondary));
    border-radius: 0 0 5px 5px;
  }

  .header-bottom-area .navbar-collapse .main-menu li a {
    color: #fff !important;
  }

  .header-bottom-area .menu_has_children .sub-menu li {
    width: 100%;
  }

  .header-bottom-area .navbar-collapse .main-menu li a.cmn-btn-active {
    color: inherit !important;
    padding: 8px 20px;
  }

  .header-bottom-area .navbar-collapse .main-menu .menu_has_children.show .sub-menu,
  .header-bottom-area .navbar-collapse .main-menu .menu_has_children.show .sub-menu {
    display: flex !important;
    flex-wrap: wrap;
  }

  .header-bottom-area .navbar-collapse .main-menu li a:not(has) {
    padding: 12px 0;
    display: flex;
  }

  .header-bottom-area .navbar-collapse .main-menu li .cmn-btn {
    padding: 8px 20px;
  }

  .header-bottom-area .navbar-collapse .main-menu li .sub-menu {
    transition: unset;
    background-color: transparent;
    padding: 0;
    visibility: visible;
    opacity: 1;

  }

  .header-bottom-area .menu_has_children .sub-menu {
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
    display: none;
  }

  .header-bottom-area .navbar-collapse .main-menu li .sub-menu li a {
    color: #fff !important;
    padding-left: 0;
  }

  .header-bottom-area .navbar-collapse .main-menu li .sub-menu li {
    border-bottom: 0;
    margin-left: 20px;
  }

  .menu_has_children a::before {
    right: 10px;
  }

  .header-bottom-area .navbar-collapse .main-menu li .sub-menu li a {
    color: #fff !important;
  }
}

/* Header Dropdown Menu Responsive End */
.language-dropdown-btn {
  border-radius: 4px;
  background-color: transparent;
  color: #fff;
  height: 40px;
}

.language_flag {
  flex-shrink: 0;
  display: flex;
}

.language_flag img {
  height: 20px;
  width: 20px;
  object-fit: cover;
  border-radius: 50%;
}

.language-dropdown-btn.show .collapse-icon {
  transform: rotate(180deg)
}

.collapse-icon {
  font-size: 0.875rem;
  display: flex;
  transition: all linear 0.2s;
}

.language_text_select {
  font-size: 0.875rem;
  font-weight: 400;
}

.language-content {
  display: flex;
  align-items: center;
  gap: 6px;
}


.language-list {
  display: flex !important;
  align-items: center;
  gap: 6px;
  padding: 6px 12px !important;
  cursor: pointer;
}

.language .dropdown-menu {
  position: absolute;
  -webkit-transition: ease-in-out 0.1s;
  transition: ease-in-out 0.1s;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  display: unset;
  background: #ffffff;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  min-width: 150px;
  padding: 7px 0 !important;
  border-radius: 8px;
  border: 1px solid rgb(255 255 255 / 10%);
}

.language .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
}

.btn.disabled,
.btn:disabled {
  background: rgb(0 0 0 / 10%);
  color: hsl(var(--bodyColor) / 0.8);
}

.text--success {
  color: #29d748 !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.text--base {
  color: hsl(var(--base));
}

.text--dark {
  color: hsl(var(--black) / 0.7);
}

.empty-message-card {
  font-size: 1.5rem;
  padding: 20px;
  color: #898989;
  text-align: center;
}

.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 #00000036;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}

@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 0.875rem;
    padding: 15px;
  }
}


.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}

.show-filter {
  display: none;
}

.badge--success {
  background-color: rgba(40, 199, 111, 0.2);
  border: 1px solid #28c76f;
  color: #28c76f;
}

.badge--success::before {
  background-color: #28c76f;
}

.badge--dark::before {
  background-color: rgba(0, 0, 0, 0.2);
}

.badge--warning {
  background-color: rgba(255, 159, 67, 0.2);
  border: 1px solid #ff9f43;
  color: #ff9f43;
}

.badge--warning::before {
  background-color: #ff9f43;
}

.badge--info {
  background-color: #c6f7ff;
  border: 1px solid #17a2b8;
  color: #17a2b8;
}

.badge--info::before {
  background-color: #17a2b8;
}

.badge--danger {
  background-color: rgba(234, 84, 85, 0.2);
  border: 1px solid #ea5455;
  color: #ea5455;
}

.badge--danger::before {
  background-color: #ea5455;
}

.badge--primary {
  background-color: rgba(39, 174, 97, 0.2);
  border: 1px solid #27AE61;
  color: #27AE61;
}

.badge--primary::before {
  background-color: #27AE61;
}

.badge--dark {
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid #000000;
  color: #000000;
}

.badge--warning,
.badge--success,
.badge--primary,
.badge--danger,
.badge--dark,
.badge--info {
  padding: 2px 15px;
  position: relative;
  padding-left: 25px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
}

.badge--warning::before,
.badge--success::before,
.badge--primary::before,
.badge--danger::before,
.badge--dark::before,
.badge--info::before {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  left: 9px;
  top: 4px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.close-button {
  border-radius: 3px;
  line-height: 1em;
  padding: 10px;
}

.maintenance-page {
  display: grid;
  place-content: center;
  width: 100vw;
  height: 100vh;
}

.maintenance-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  font-size: 26px;
  color: #E73D3E;
}



button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

.select2-dropdown {
  border: 0 !important;
  margin-top: 8px !important;
  border-radius: 5px !important;
  box-shadow: 0 3px 9px rgba(50, 50, 9, 0.05), 6px 4px 19px rgb(115 103 240 / 20%)
}

.select2-search--dropdown {
  padding: 10px 10px !important;
  border-color: #e7e7e7 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #e7e7e7 !important;
  padding: 10px 20px;
}


.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
  width: 8px;
  border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
  background: #ddd;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2 .selection {
  width: 100%;
}

.select2-container--default .select2-selection--single {
  border-color: #e7e7e7 !important;
  border-radius: .375rem !important;
  padding: .75rem 1rem !important;
  border-width: 1px !important;
  height: max-content !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: unset;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: calc(50% - 0.875rem);
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
  position: absolute;
  right: 10px;
  top: 0;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  transition: .3s;
}


.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
  transform: rotate(-180deg);
}

.select2-results__option:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.select2-results__option:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f1f1f1 !important;
  color: #000 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: #e4e4e4;
  box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
  outline: 0 !important;
}

.select2-container--open .select2-selection.select2-selection--single,
.select2-container--open .select2-selection.select2-selection--multiple {
  border-color: hsl(var(--base)) !important;
  border-radius: .375rem !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
}

.select2-results__option {
  padding: 8px 12px;
}

.select2-results__option:first-child {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

/* User Dashboard */
.user-dropdown {
  display: flex;
}

.user-dropdown .dropdown-btn {
  background-color: transparent;
  color: #fff;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}

.user-dropdown .dropdown-menu,
.dropdown-menu.langList {
  left: auto;
  right: 0;
}

@media (max-width: 991px) {
  .user-dropdown .dropdown-btn {
    font-size: 1rem;
  }

  .user-dropdown {
    width: 100%;
    display: block;
    padding-block: 12px;
  }

  .user-dropdown .dropdown-menu {
    background-color: #211c1c;
    padding-inline: 0.875rem;
    margin-top: 12px;
  }
}

.user-dropdown .dropdown-btn .user-icon {
  font-size: 20px;
  margin-right: 4px;
}

.user-dropdown .dropdown-btn .toggle-icon {
  transition: all linear 0.2s;
  margin-left: 0.5rem;
}

.user-dropdown .dropdown-btn.show .toggle-icon {
  transform: rotate(180deg);
}

.user-dropdown .dropdown-item {
  padding: 0 !important;
  background-color: transparent !important;
}

.language_text {
  color: hsl(var(--black) / 0.8);
}

.user-dropdown .dropdown-item a {
  color: hsl(var(--black) / 0.8);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-dropdown .dropdown-item a:hover {
  background-color: hsl(var(--black) / .03);
}

.dropdown-item a.active {
  color: hsl(var(--base));
}

.primary-menu-button {
  height: 18px;
  width: 24px;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  align-self: center;
}

.primary-menu-button span {
  position: absolute;
  height: 2px;
  background-color: #fff;
  width: 100%;
  transition: all linear 0.3s;
}

.primary-menu-button span:first-child {
  top: 0px;
}

.primary-menu-button span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.primary-menu-button span:last-child {
  bottom: 0px;
}

.primary-menu-button[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
  top: 50%;
}

.primary-menu-button[aria-expanded="true"] span:nth-child(2) {
  display: none;
}

.primary-menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
  top: 50%;
}

.dashboard-section .primary-menu-button {
  margin-bottom: 30px;
}

.dashboard-section .primary-menu-button span {
  background-color: hsl(var(--black));
}

@media (max-width: 767px) {
  .primary-menu-button {
    height: 16px;
  }

  .primary-menu-button span {
    width: 20px;
  }
}

.card {
  border-color: #e7e7e7;
}

.card-header {
  background-color: #fafafa;
  border-color: #e7e7e7;
}

.card {
  --bs-card-spacer-y: 1.5rem;
  --bs-card-spacer-x: 1.5rem;
  --bs-card-cap-padding-y: 1rem;
  --bs-card-cap-padding-x: 1.5rem;
}

@media(max-width: 575px) {
  .card {
    --bs-card-spacer-y: .875rem;
    --bs-card-spacer-x: .875rem;
    --bs-card-cap-padding-y: .5rem;
    --bs-card-cap-padding-x: .875rem;
  }
}

button:disabled {
  background-color: hsl(var(--base) / 0.5);
}


.modal-dialog {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-header,
.modal-footer {
  border: none;
}

#confirmationModal {
  --bs-modal-padding: 1.5rem;
  --bs-modal-header-padding: 1.5rem;
  --bs-modal-footer-padding: 1.5rem;
}

#confirmationModal .modal-body {
  text-align: center;
}

#confirmationModal .modal-body .question {
  font-weight: 500;
  font-size: 1.25rem;
}

#confirmationModal .modal-title {
  flex-grow: 1;
  font-size: 1.5rem;
}

.modal-header {
  padding-bottom: 0;
  text-align: center;
}

#confirmationModal .modal-footer {
  display: flex;
  justify-content: center;
  gap: 3px;
  padding-top: 0;
}

#confirmationModal .modal-footer .btn {
  padding: .375rem 1rem;
}

@media(max-width: 575px) {
  #confirmationModal {
    --bs-modal-padding: 1rem;
    --bs-modal-header-padding: 1rem;
    --bs-modal-footer-padding: 1rem;
  }

  #confirmationModal .modal-body .question {
    font-size: 1rem;
  }

  #confirmationModal .modal-title {
    flex-grow: 1;
    font-size: 1.125rem;
  }
}

.bg-light--base {
  background-color: hsl(var(--base) / 0.05);
}

.text--xsm {
  font-size: 0.75rem;
}

.text--sm {
  font-size: 0.875rem;
}

.alert-danger {
  --bs-alert-color: #842029;
  --bs-alert-bg: #fbf0f1;
  --bs-alert-border-color: #f5c2c7;
}

.alert-warning {
  --bs-alert-color: #664d03;
  --bs-alert-bg: #fdf8e7;
  --bs-alert-border-color: #f7b800;
}

.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  border-right: 0;
}

.dropdown-item .menu-icon {
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}