@charset "UTF-8";
/*----------------------------------------------
    # All Animation style here
----------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

.cir36 {
  animation: cir36 20s linear infinite;
  -webkit-animation: cir36 20s linear infinite;
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes float-bob-y {
  0% {
    transform: translateY(-30px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-30px);
  }
}

.float-bob-x {
  animation-name: float-bob-x;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

/*----------------------------------------------
    # Header style here
----------------------------------------------*/
.header-section-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 150;
}

.main-header-wrapper {
  display: flex;
  align-items: center;
  gap: 100px;
}

@media (max-width: 1899px) {
  .main-header-wrapper {
    gap: 70px;
  }
}

@media (max-width: 1600px) {
  .main-header-wrapper {
    gap: 40px;
  }
}

@media (max-width: 1199px) {
  .main-header-wrapper {
    padding: 15px 0;
  }
}

.main-header-wrapper .main-header-items {
  width: 100%;
}

.main-header-wrapper .main-header-items .header-contact-info-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  border: 1px solid #d4dced;
}

@media (max-width: 1600px) {
  .main-header-wrapper .main-header-items .header-contact-info-area {
    padding: 0 30px;
  }
}

@media (max-width: 1199px) {
  .main-header-wrapper .main-header-items .header-contact-info-area {
    display: none;
  }
}

@media (max-width: 575px) {
  .main-header-wrapper .main-header-items .header-contact-info-area {
    gap: 30px;
  }
}

.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  position: relative;
  padding: 30px 0;
  border-right: 1px solid #d4dced;
  padding-right: 50px;
}

@media (max-width: 1399px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items {
    border-right: none;
    padding-right: 0;
  }
}

.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: relative;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--theme);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  position: relative;
}

@media (max-width: 1399px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  content: "";
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid rgba(30, 32, 35, 0.1);
  transform: translate(-50%, -50%);
}

@media (max-width: 1399px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon::before {
    width: 54px;
    height: 54px;
  }
}

.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content p {
  color: var(--text-color);
  margin-bottom: 5px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
}

.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 {
  font-size: 20px;
  color: var(--title);
  text-transform: initial;
}

@media (max-width: 1600px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 {
    font-size: 18px;
  }
}

.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 a {
  color: var(--title);
}

.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items.style-2 {
  border: none;
  padding-right: 0;
}

@media (max-width: 1600px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .header-button .theme-btn {
    font-size: 14px;
    padding: 24px 27px;
  }
}

.header-right {
  gap: 30px;
}

@media (max-width: 1399px) {
  .header-right {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .header-right {
    gap: 5px;
  }

  .header-right .theme-btn {
    display: none;
  }
}

.header-right .search-icon {
  color: var(--title);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--title);
  font-size: 20px;
  font-weight: 900;
  border-right: 1px solid var(--title);
  padding-right: 25px;
}

.header-right .header__cart {
  padding: 0 8px;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

@media (max-width: 991px) {
  .header-right .header__cart {
    padding: 0px 10px;
  }
}

.header-right .header__cart:hover>a {
  color: var(--theme);
}

.header-right .header__cart:hover .header__right__dropdown__wrapper {
  visibility: visible;
  opacity: 1;
  top: 100%;
  transition: 0.3s;
}

.header-right .header__cart>a {
  font-size: 18px;
  color: var(--text-color);
  padding: 15px 0;
  position: relative;
}

.header-right .header__cart>a::before {
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  position: absolute;
  top: 0;
  right: -10px;
  width: 15px;
  height: 15px;
  padding: 0 4px;
  content: "3";
  text-align: center;
  border-radius: 100%;
  background: var(--theme);
  color: var(--white);
}

@media (max-width: 991px) {
  .header-right .header__cart>a::before {
    top: 7px;
    right: 11px;
  }
}

.header-right .header__cart .header__right__dropdown__wrapper {
  position: absolute;
  width: 300px;
  max-height: 700px;
  padding: 20px;
  border-bottom: 3px solid var(--border);
  background-color: var(--white);
  box-shadow: 0 0 50px 10px rgba(95, 45, 237, 0.15);
  top: 100%;
  left: -235px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

@media (max-width: 767px) {
  .header-right .header__cart .header__right__dropdown__wrapper {
    left: -220px;
  }
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__close {
  position: absolute;
  right: 0;
  top: -10px;
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__close a :hover {
  color: var(--theme-2);
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner {
  border-bottom: 1px solid var(--border-2);
  margin-bottom: 30px;
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__img {
  width: 30%;
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__img a {
  display: inline-block;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__img img {
  width: 100%;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content {
  text-align: left;
  width: 70%;
  margin-left: 15px;
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content a {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--title);
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content a:hover {
  color: var(--theme-2);
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content p {
  color: var(--title);
  font-size: 14px;
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content p span {
  color: var(--theme);
}

.header-right .header__cart .header__right__dropdown__wrapper .dropdown__price {
  text-align: left;
  font-size: 17px;
  margin-bottom: 20px;
}

.header-right .header__cart .header__right__dropdown__wrapper .dropdown__price span {
  float: right;
  color: var(--theme);
  font-weight: 700;
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  width: 100%;
  padding: 10px 0px;
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.white__color {
  border: 1px solid var(--theme-2);
  margin-bottom: 20px;
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.white__color:hover {
  background: var(--theme-2);
  color: var(--white);
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.blue__color {
  background: var(--title);
  color: var(--white);
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.blue__color:hover {
  background: var(--theme-2);
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  height: 81px;
  border-radius: 100px;
  background: rgba(241, 90, 41, 0.05);
  margin-top: 30px;
  padding: 12px 50px;
  margin: 30px 200px 0 200px;
}

@media (max-width: 1199px) {
  .header-main {
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
  }
}

@media (max-width: 767px) {
  .header-main {
    height: 61px;
  }
}

.header-main .main-menu ul {
  margin-bottom: 0;
}

.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 35px;
}

.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}

.header-main .main-menu ul li a {
  display: inline-block;
  text-align: left;
  position: relative;
  color: var(--black-100) !important;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
  .header-main .main-menu ul li a {
    letter-spacing: 1px;
  }
}

.header-main .main-menu ul li a:hover,
.header-main .main-menu ul li a.active {
  color: var(--black) !important;
}

.header-main .main-menu ul li:hover>a {
  color: var(--title);
}

.header-main .main-menu ul li:hover>a::after {
  color: var(--theme);
}

.header-main .header-left .logo .header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1399px) {
  .header-main .header-left .logo .header-logo .logo-text {
    display: none;
  }
}

@media (max-width: 1199px) {
  .header-main .header-left .logo .header-logo .logo-text {
    display: inline-block;
  }
}

@media (max-width: 350px) {
  .header-main .header-left .logo .header-logo .logo-text {
    display: none;
  }
}

@media (max-width: 1199px) {
  .header-main .header-right .bf-btn-wrap {
    display: none;
  }
}

.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--title);
}

.sticky {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 850px;
  max-width: 90%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.5));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  text-align: center;
}

@media (max-width: 1199px) {
  .sticky {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
    top: 0;
  }
}

.sticky .header-main {
  margin: 0;
}

.sticky .header-main .header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky .header-main .header-logo .logo-text {
  display: none;
}

.sticky .header-main .sidebar__toggle svg path {
  stroke: var(--white);
}

.sticky .header-main .sidebar__toggle svg line {
  stroke: var(--white);
}

.sticky .header-main .main-menu ul li a {
  color: var(--white) !important;
}

.sticky .header-main .main-menu ul li a.active {
  color: var(--black) !important;
}

.sticky .header-main .main-menu ul li a:hover {
  color: var(--black) !important;
}

.offcanvas__info {
  background: var(--title) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  transform: translateX(calc(100% + 80px));
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  transform: translateX(0);
  background: var(--black);
}

.offcanvas__logo a img {
  width: 150px;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
  background-color: var(--black);
}

.offcanvas__wrapper .offcanvas__content .text {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .bf-btn-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

@media (max-width: 470px) {
  .offcanvas__wrapper .offcanvas__content .bf-btn-wrap {
    flex-wrap: wrap;
  }
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact h4 {
  color: var(--theme-2);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme-2);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 16px 40px;
  text-transform: capitalize !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
  justify-content: center;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: var(--theme);
  color: var(--white);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme-2);
  color: var(--title) !important;
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}

/*----------------------------------------------
    # Buttons style here
----------------------------------------------*/
.bf-btn-wrap .bf-theme-btn {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--theme);
  padding: 12px 32px;
  border: 1px solid transparent;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bf-btn-wrap .bf-theme-btn.bf-theme-btn-2 {
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.bf-btn-wrap .bf-theme-btn.bf-theme-btn-2 i {
  color: #ffffff;
}

.bf-btn-wrap .bf-theme-btn.bf-theme-btn-2 span {
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 24px !important;
  text-transform: capitalize !important;
}

.bf-btn-wrap .bf-theme-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--black);
  transform: translateX(-100%);
  transition: transform 0.45s ease;
  z-index: -1;
}

.bf-btn-wrap .bf-theme-btn span,
.bf-btn-wrap .bf-theme-btn svg {
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
}

.bf-btn-wrap .bf-theme-btn:hover::before {
  transform: translateX(0);
}

.bf-btn-wrap .bf-theme-btn:hover span {
  color: var(--white);
}

.bf-btn-wrap .bf-theme-btn:hover svg {
  transform: translateX(3px);
}

.bf-btn-wrap .bf-theme-btn:hover svg path {
  fill: var(--white);
}

.bf-btn-wrap .bf-theme-btn.black-btn {
  background: var(--black);
  border: 1px solid white !important;
}

.bf-btn-wrap .bf-theme-btn.black-btn::before {
  background: #d9ff00;
}

.bf-btn-wrap .bf-theme-btn.black-btn span {
  color: var(--white);
}

.bf-btn-wrap .bf-theme-btn.black-btn svg path {
  fill: var(--white);
}

.bf-btn-wrap .bf-theme-btn.black-btn:hover span {
  color: var(--black);
}

.bf-btn-wrap .bf-theme-btn.black-btn:hover svg {
  transform: translateX(3px);
}

.bf-btn-wrap .bf-theme-btn.black-btn:hover svg path {
  fill: var(--black);
}

.bf-btn-wrap .bf-theme-btn span {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
}

.bf-btn-wrap .bf-white-btn {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
  padding: 6px 32px;
  border: 1px solid var(--shadow-text);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.bf-btn-wrap .bf-white-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--theme);
  transform: translateX(-100%);
  transition: transform 0.45s ease;
  z-index: -1;
}

.bf-btn-wrap .bf-white-btn span,
.bf-btn-wrap .bf-white-btn svg {
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
}

.bf-btn-wrap .bf-white-btn:hover {
  border: 1px solid transparent;
}

.bf-btn-wrap .bf-white-btn:hover::before {
  transform: translateX(0);
}

.bf-btn-wrap .bf-white-btn:hover span {
  color: var(--white);
}

.bf-btn-wrap .bf-white-btn:hover svg {
  transform: translateX(3px);
}

.bf-btn-wrap .bf-white-btn:hover svg path {
  fill: var(--white);
}

.bf-btn-wrap .bf-white-btn span {
  position: relative;
  z-index: 2;
  color: var(--theme);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-transform: capitalize;
}

.bf-simple-btn {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bf-simple-btn span {
  color: var(--theme);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: 30%;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.bf-simple-btn:hover {
  color: var(--white);
}

/*----------------------------------------------
    # All Common style here
----------------------------------------------*/
.star ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}

.star ul li i {
  color: var(--orange);
}

i {
  color: var(--black);
  font-size: 22px;
}

i:hover {
  color: var(--theme);
}

.radio-item input {
  display: none;
}

.radio-item {
  display: inline-flex;
  align-items: center;
  margin-right: 24px;
  font-size: 14px;
  cursor: pointer;
  position: relative;
}

.w-100 {
  width: 100% !important;
}

/* outer circle */
.radio-mark {
  width: 16px;
  height: 16px;
  border: 2px solid var(--black);
  border-radius: 50%;
  margin-right: 6px;
  position: relative;
}

/* inner dot */
.radio-item input:checked+.radio-mark::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--black);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.arrow-button {
  position: absolute;
  z-index: 9;
}

.arrow-button .arrow-prev {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-right: 8px;
  background-color: var(--white);
  color: var(var(--title-color));
  border: 1px solid var(var(--title-color));
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.arrow-button .arrow-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--theme-2);
  color: var(var(--title-color));
  border: 1px solid var(--theme-2);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.arrow-button .arrow-next:hover,
.arrow-button .arrow-prev:hover {
  background-color: var(var(--title-color));
  color: var(--white);
  border: 1px solid var(var(--title-color));
}

.fix-visible {
  overflow: visible;
}

.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.mask-content {
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center center;
  -webkit-mask-position: center center;
  width: 100%;
}

.section-title {
  margin-bottom: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.section-title span {
  margin-bottom: 15px;
  display: inline-block;
}

.section-title .see-more-btn {
  font-size: 16px;
  line-height: 26px;
  color: var(--btn-text);
}

body.modal-open {
  overflow: hidden;
  height: 100vh;
}

.map-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.map-modal .map-container {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
}

.map-modal .map-container .map-search-box {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.map-modal .map-container .map-search-box input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.map-modal .map-container .map-search-box button {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: #f15a29;
  color: #fff;
  transition: 0.3s;
}

.map-modal .map-container .map-search-box button:hover {
  background: #d94e1f;
}

.map-modal .map-container #map {
  width: 100%;
  height: 400px;
  margin-top: 10px;
}

.map-modal .map-container .map-btns {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

.map-modal .map-container .map-btns .confirm-btn {
  padding: 8px 16px;
  background: #4caf50;
  color: #fff;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.map-modal .map-container .map-btns .confirm-btn:hover {
  background: #45a049;
}

.map-modal .map-container .map-btns .cancel-btn {
  padding: 8px 16px;
  background: #f44336;
  color: #fff;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.map-modal .map-container .map-btns .cancel-btn:hover {
  background: #d32f2f;
}

.pb-80 {
  padding-bottom: 80px;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

@media (max-width: 767px) {
  .mb-40 {
    margin-bottom: 20px !important;
  }
}

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

@media (max-width: 991px) {
  .mb-50 {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .mb-50 {
    margin-bottom: 20px;
  }
}

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

.mt-50 {
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .mt-50 {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .mt-50 {
    margin-bottom: 20px;
  }
}

.pb-50 {
  padding-bottom: 50px;
}

@media (max-width: 991px) {
  .pb-50 {
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .pb-50 {
    padding-bottom: 20px;
  }
}

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

.pt-50 {
  padding-top: 50px;
}

.error-text {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.4;
  color: #e03131;
}

@media (max-width: 1199px) {
  .map-wrapper iframe {
    height: 350px;
  }
}

.section-top-content {
  margin-bottom: 50px;
}

.section-top-content .sub-icon {
  display: inline-block;
  margin-bottom: 20px;
}

.section-top-content .section-top-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 450px) {
  .section-top-content .section-top-bottom-content {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
}

.section-top-content .section-top-bottom-content .sub-title {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  border-radius: 100px;
  border: 1px solid var(--shadow-text);
  background: var(--white);
  display: inline-flex;
  padding: 6px 20px 6px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.section-top-content .section-top-bottom-content .sub-title .sub-title-span {
  font-size: 14px;
}

.section-top-content .section-top-bottom-content.style2 {
  flex-direction: column;
}

.section-top-content .section-top-bottom-content .about-title {
  color: var(--black);
  text-align: center;
  font-size: 56px;
  font-weight: 600;
  line-height: 150%;
  max-width: 887px;
  margin-bottom: 24px;
}

@media (max-width: 1199px) {
  .section-top-content .section-top-bottom-content .about-title {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .section-top-content .section-top-bottom-content .about-title {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .section-top-content .section-top-bottom-content .about-title {
    font-size: 30px;
  }
}

@media (max-width: 500px) {
  .section-top-content .section-top-bottom-content .about-title {
    font-size: 28px;
  }
}

.section-top-content .section-top-bottom-content h2 {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--black);
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

@media (max-width: 1199px) {
  .section-top-content .section-top-bottom-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .section-top-content .section-top-bottom-content h2 {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .section-top-content .section-top-bottom-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 500px) {
  .section-top-content .section-top-bottom-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 470px) {
  .section-top-content .section-top-bottom-content h2 {
    font-size: 25px;
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 450px) {
  .section-top-content .section-top-bottom-content h2 {
    font-size: 24px;
  }
}

.section-top-content .section-top-bottom-content h2 span {
  margin: 0;
}

.section-top-content .section-top-bottom-content .text {
  color: var(--shadow-text);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  max-width: 931px;
}

.section-top-content .section-top-bottom-content .bf-btn-wrap {
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: end;
}

@media (max-width: 450px) {
  .section-top-content .section-top-bottom-content .bf-btn-wrap {
    display: inline-block;
  }
}

.provider-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 16px;
  border: 1px solid var(--shadow-text);
  padding: 15px;
  height: 100%;
}

@media (max-width: 450px) {
  .provider-card {
    flex-direction: column;
  }
}

.provider-card.style-two {
  height: -moz-max-content;
  height: max-content;
}

.provider-card.style-two .thumb-content .thumb {
  width: 180px;
  aspect-ratio: 180/150;
  overflow: hidden;
  background: #f2f2f2;
  border-radius: 8px;
}

.provider-card.style-two .thumb-content .thumb img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}

.provider-card.style-two .review-meta {
  color: var(--shadow-text);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}

.provider-card .thumb-content .thumb {
  width: 180px;
  aspect-ratio: 180/137;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .provider-card .thumb-content .thumb {
    width: 180px;
    aspect-ratio: 180/180;
    overflow: hidden;
  }
}

@media (max-width: 1399px) {
  .provider-card .thumb-content .thumb {
    width: 150px;
    aspect-ratio: 180/180;
    overflow: hidden;
  }
}

@media (max-width: 350px) {
  .provider-card .thumb-content .thumb {
    width: 100px;
    aspect-ratio: 180/180;
    overflow: hidden;
  }
}

.provider-card .thumb-content .thumb img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 1600px) {
  .provider-card .thumb-content .thumb img {
    height: 100% !important;
  }
}

.provider-card .card-content {
  width: 100%;
}

.provider-card .card-content .title {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.provider-card .card-content .title a {
  color: var(--black);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  display: inline-block;
}

@media (max-width: 991px) {
  .provider-card .card-content .title a {
    font-size: 18px;
  }
}

@media (max-width: 450px) {
  .provider-card .card-content .title a {
    font-size: 13px;
  }
}

.provider-card .card-content .meta-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
  row-gap: 15px;
}

.provider-card .card-content .meta-info span {
  color: var(--shadow-text);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 450px) {
  .provider-card .card-content .meta-info span {
    font-size: 12px;
  }
}

.provider-card .card-content .card-bottom-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.provider-card .card-content .card-bottom-content .price span {
  color: var(--black);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 12px;
  display: inline-block;
}

.provider-card .card-content .card-bottom-content .price h4 {
  color: var(--black);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 1399px) {
  .provider-card .card-content .card-bottom-content .price h4 {
    font-size: 21px;
  }
}

@media (max-width: 450px) {
  .provider-card .card-content .card-bottom-content .bf-btn-wrap .bf-simple-btn span {
    font-size: 12px;
  }
}

.provider-card .card-content .card-bottom-content .bf-btn-wrap .bf-white-btn {
  padding: 6px 20px;
}

.marquee .scrolling-wrap.style1 {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 60px;
  position: relative;
  z-index: -1;
  background: var(--theme);
}

.marquee .scrolling-wrap.style1 .comm {
  display: flex;
  align-items: center;
  animation: scroll 60s linear infinite;
  cursor: pointer;
  gap: 60px;
}

.marquee .scrolling-wrap.style1 .comm .item {
  border-radius: 8px;
  background: var(--theme);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
}

@media (max-width: 767px) {
  .marquee .scrolling-wrap.style1 .comm .item {
    padding: 15px 20px;
  }
}

.marquee .scrolling-wrap.style1 .comm .item .icon {
  width: 50px;
  height: 48px;
  aspect-ratio: 1/1;
}

.marquee .scrolling-wrap.style1 .comm .item .cmn-textslide-1 {
  font-weight: 600;
  font-size: 36px;
  color: var(--white);
}

.marquee .scrolling-wrap.style1:hover .comm {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll2 {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-200%);
  }
}

.pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.custom-pagination {
  gap: 16px;
  align-items: center;
}

.custom-pagination .page-item {
  margin: 0;
}

.custom-pagination .page-link {
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  color: #AFAFAF;
  font-size: 16px;
  font-weight: 500;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

@media (max-width: 450px) {
  .custom-pagination .page-link {
    font-size: 14px;
    min-width: 22px;
    height: 22px;
  }
}

.custom-pagination .page-link:hover {
  color: #ff5a1f;
  background: rgba(255, 90, 31, 0.1);
}

.custom-pagination .page-link:focus {
  box-shadow: none;
}

.custom-pagination .page-item.active .page-link {
  background: #ff5a1f;
  color: #fff;
  font-weight: 600;
}

.custom-pagination .page-item.dots .page-link {
  cursor: default;
  letter-spacing: 2px;
  color: #AFAFAF;
}

.custom-pagination .page-item.dots .page-link:hover {
  background: transparent;
}

.custom-pagination .page-item.prev .page-link,
.custom-pagination .page-item.next .page-link {
  width: 40px;
  height: 40px;
  border-radius: 100% !important;
}

.custom-pagination .page-item.prev .page-link svg,
.custom-pagination .page-item.next .page-link svg {
  display: block;
}

.custom-pagination .page-item.prev .page-link:hover svg path,
.custom-pagination .page-item.next .page-link:hover svg path {
  fill: #ff5a1f;
}

.custom-pagination .page-item.prev.disabled,
.custom-pagination .page-item.next.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.tp-clip-anim {
  width: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  position: relative;
  position: absolute;
  bottom: 0;
  left: 0;
}

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

.filter-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 30px;
  border: 1px solid var(--shadow-text);
  padding: 5px 10px;
  margin-bottom: 20px;
}

.filter-header .filter-bar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  padding: 30px 0;
  position: relative;
  margin-bottom: 30px;
  transition: transform 0.5s ease 0.4s;
}

.filter-header .filter-bar .dropdown {
  position: relative;
  cursor: pointer;
}

.filter-header .filter-bar .dropdown .dropdown-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid var(--shadow-text);
  border-radius: 5px;
  background: #fff;
}

.filter-header .filter-bar .dropdown .dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  min-width: 180px;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  margin: 5px 0 0 0;
  border-radius: 8px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border: 1px solid #eee;
}

.filter-header .filter-bar .dropdown .dropdown-list li {
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  transition: background 0.2s;
}

.filter-header .filter-bar .dropdown .dropdown-list li:hover {
  background-color: #f8f8f8;
}

.filter-header .filter-bar .dropdown.open .dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .filter-header .filter-bar.active {
    transform: translateX(0);
  }
}

@media (max-width: 1199px) {
  .filter-header .filter-bar {
    position: fixed;
    left: 0;
    top: 80px;
    background: var(--white);
    width: 350px;
    flex-direction: column-reverse !important;
    justify-content: start;
    align-items: start;
    border: none;
    z-index: 999;
    height: 100%;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
  }

  .filter-header .filter-bar::before,
  .filter-header .filter-bar::after {
    display: none;
  }
}

@media (max-width: 450px) {
  .filter-header .filter-bar {
    width: 280px;
    top: 0;
  }
}

.filter-header .filter-bar::before,
.filter-header .filter-bar::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: var(--shadow-text);
}

.filter-header .filter-bar::before {
  top: 0;
}

.filter-header .filter-bar::after {
  bottom: 0;
}

@media (max-width: 991px) {
  .filter-header .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
}

.filter-header .filter-bar .filter-left,
.filter-header .filter-bar .filter-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1199px) {

  .filter-header .filter-bar .filter-left,
  .filter-header .filter-bar .filter-right {
    flex-direction: column;
    align-items: start;
    width: 100%;
  }

  .filter-header .filter-bar .filter-left .filter-header,
  .filter-header .filter-bar .filter-right .filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .filter-header .filter-bar .filter-left .filter-header h3,
  .filter-header .filter-bar .filter-right .filter-header h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 150%;
    color: var(--black);
  }

  .filter-header .filter-bar .filter-left .filter-header .close-icon,
  .filter-header .filter-bar .filter-right .filter-header .close-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--shadow-text);
    cursor: pointer;
  }
}

.filter-header .filter-bar .filter-right span {
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  text-transform: capitalize;
}

.filter-header {
  /* Search Box */
}

.filter-header .search-box {
  position: relative;
}

@media (max-width: 1199px) {
  .filter-header .search-box {
    min-width: 100%;
  }
}

.filter-header .search-box input {
  width: 402px;
  height: 46px;
  padding: 7px 12px 7px 25px;
  border: 1px solid var(--black-100);
  border-radius: 8px;
  color: var(--black-100);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.filter-header .search-box input::-moz-placeholder {
  color: var(--black-100);
}

.filter-header .search-box input::placeholder {
  color: var(--black-100);
}

.filter-header .search-box input:focus {
  outline: none;
  border-color: var(--theme);
}

@media (max-width: 1199px) {
  .filter-header .search-box input {
    width: 100%;
  }
}

.filter-header .search-box button {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--theme);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.filter-header {
  /* Dropdown */
}

.filter-header .dropdown {
  position: relative;
  outline: none;
}

@media (max-width: 1199px) {
  .filter-header .dropdown {
    width: 100%;
  }
}

.filter-header .dropdown:focus .dropdown-btn {
  border-color: var(--theme);
}

.filter-header .dropdown.active .dropdown-btn span {
  color: var(--theme);
}

.filter-header .dropdown.open .dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.filter-header .dropdown.open i {
  transform: rotate(180deg);
}

.filter-header .dropdown .dropdown-btn {
  height: 46px;
  padding: 7px 12px 7px 25px;
  border: 1px solid var(--black-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

@media (max-width: 1199px) {
  .filter-header .dropdown .dropdown-btn {
    justify-content: space-between;
    padding: 7px 12px 7px 12px;
  }
}

.filter-header .dropdown .dropdown-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s;
  z-index: 10;
}

.filter-header .dropdown .dropdown-list li {
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
}

.filter-header .dropdown .dropdown-list li:hover,
.filter-header .dropdown .dropdown-list li:focus {
  background: #f9fafb;
  outline: none;
}

.filter-header .active-show-filter {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-header .active-show-filter .show-filter span {
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  text-transform: capitalize;
}

.filter-header .active-show-filter .right-side-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.filter-header .active-show-filter .right-side-content .title {
  color: var(--black);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-transform: capitalize;
}

.filter-header .active-show-filter .right-side-content .preview-btn {
  border-radius: 100px;
  background: var(--theme);
  padding: 5px 6px 5px 20px;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.filter-header .active-show-filter .right-side-content .preview-btn .close-btn {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  cursor: pointer;
}

.filter-header .active-show-filter .right-side-content .clear-btn {
  color: var(--theme);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: 30%;
  text-underline-position: from-font;
  text-transform: capitalize;
}

/*----------------------------------------------
    # Footer style here
----------------------------------------------*/
.footer-wrapper {
  background: linear-gradient(180deg, #323232 0%, #000 100%);
  padding-top: 85px;
}

.footer-wrapper .footer-inner {
  margin: 0 93px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .footer-wrapper .footer-inner {
    margin: 0;
  }
}

.footer-wrapper .footer-inner .footer-bg-shape {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.footer-wrapper .footer-left-content .footer-logo {
  margin-bottom: 30px;
}

.footer-wrapper .footer-left-content .text {
  color: var(--shadow-text);
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 50px;
}

@media (max-width: 575px) {
  .footer-wrapper .footer-left-content .text {
    margin-bottom: 20px;
  }
}

.footer-wrapper .footer-left-content .contact-cta .title {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 20px;
}

.footer-wrapper .footer-left-content .contact-cta .contact-info {
  margin-bottom: 26px;
}

.footer-wrapper .footer-left-content .contact-cta .contact-info .info-item {
  margin-bottom: 14px;
}

.footer-wrapper .footer-left-content .contact-cta .contact-info .info-item:last-child {
  margin-bottom: 0;
}

.footer-wrapper .footer-left-content .contact-cta .contact-info .info-item span {
  color: var(--shadow-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-wrapper .footer-left-content .contact-cta .contact-info .info-item a {
  color: var(--shadow-text);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-wrapper .footer-left-content .social-icon {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-wrapper .footer-left-content .social-icon a {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer-wrapper .footer-left-content .social-icon a i {
  color: var(--white);
  font-size: 16px;
}

.footer-wrapper .footer-left-content .social-icon a i:hover {
  color: var(--theme);
}

.footer-wrapper .footer-right-content {
  margin-left: 150px;
}

@media (max-width: 1399px) {
  .footer-wrapper .footer-right-content {
    margin-left: 80px;
  }
}

@media (max-width: 767px) {
  .footer-wrapper .footer-right-content {
    margin-left: 0;
  }
}

.footer-wrapper .footer-right-content .footer-menu {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer-wrapper .footer-right-content .footer-menu-item .menu-title {
  color: var(--white);
  font-size: 32px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 30px;
}

@media (max-width: 1600px) {
  .footer-wrapper .footer-right-content .footer-menu-item .menu-title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .footer-wrapper .footer-right-content .footer-menu-item .menu-title {
    font-size: 18px;
  }
}

.footer-wrapper .footer-right-content .footer-menu-item ul li {
  margin-bottom: 20px;
}

.footer-wrapper .footer-right-content .footer-menu-item ul li:last-child {
  margin-bottom: 0;
}

.footer-wrapper .footer-right-content .footer-menu-item ul li a {
  color: var(--text-color-2);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 767px) {
  .footer-wrapper .footer-right-content .footer-menu-item ul li a {
    font-size: 16px;
  }
}

.footer-wrapper .footer-right-content .footer-newsletter label {
  color: var(--white);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 20px;
}

.footer-wrapper .footer-right-content .footer-newsletter .form-group {
  position: relative;
  width: 400px;
}

@media (max-width: 991px) {
  .footer-wrapper .footer-right-content .footer-newsletter .form-group {
    width: 100%;
  }
}

.footer-wrapper .footer-right-content .footer-newsletter .form-group .form-control {
  border-radius: 12px;
  background: var(--white, #FFF);
  box-shadow: 2px 6px 30px 0 rgba(225, 225, 225, 0.2);
  height: 60px;
  padding: 6px 6px 6px 24px;
}

.footer-wrapper .footer-right-content .footer-newsletter .form-group .bf-btn-wrap {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.footer-wrapper .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  padding: 30px 0;
  position: relative;
}

@media (max-width: 500px) {
  .footer-wrapper .footer-bottom {
    flex-direction: column;
    row-gap: 15px;
  }
}

.footer-wrapper .footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: var(--shadow-text);
}

.footer-wrapper .footer-bottom p {
  color: var(--text-color-3);
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

.footer-wrapper .footer-bottom span {
  color: var(--text-color-3);
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

.footer-wrapper .footer-bottom span a {
  color: var(--text-color-3);
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

/*----------------------------------------------
    # Helping  style here
----------------------------------------------*/
::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--orange);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.fix {
  overflow: hidden;
}

@media (max-width: 767px) {
  br {
    display: none;
  }
}

.gx-12 {
  --bs-gutter-x: 12px !important;
}

.gx-40 {
  --bs-gutter-x: 40px !important;
}

@media (max-width: 1199px) {
  .gx-40 {
    --bs-gutter-x: 24px !important;
  }
}

.gx-64 {
  --bs-gutter-x: 64px !important;
}

@media (max-width: 1800px) {
  .gx-64 {
    --bs-gutter-x: 24px !important;
  }
}

.gy-30 {
  --bs-gutter-y: 30px !important;
}

.gy-24 {
  --bs-gutter-y: 24px !important;
}

.gy-20 {
  --bs-gutter-y: 20px !important;
}

@media (max-width: 1399px) {
  .col-xxdl-6 {
    width: 50%;
  }
}

@media (max-width: 991px) {
  .col-xxdl-6 {
    width: 100%;
  }
}

/* background */
.bg-cover {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative !important;
  background-position: center !important;
}

.bg-cover-2 {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative !important;
  background-position: center !important;
  width: 100% !important;
  height: 100% !important;
}

.box-shadow {
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.06);
}

.center {
  text-align: center;
  margin: 0 auto;
}

.fix {
  overflow: hidden;
}

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

.no-cursor {
  pointer-events: auto;
  cursor: pointer;
}

.cursor-content {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  text-align: center;
  background: var(--white);
  border-radius: 100%;
  white-space: nowrap;
  z-index: 2;
}

.hover-item {
  position: relative;
  display: inline-block;
}

.tp-clip-anim {
  width: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  position: relative;
}

.tp-clip-anim.tp-anim-img {
  opacity: 0;
  width: 100%;
  height: 100%;
}

.tp-clip-anim.mask {
  background-size: cover;
  background-position: center;
  transform: scale(11205);
}

.tp-clip-anim>* {
  grid-area: 1/1/2/2;
  width: 100%;
  height: 100%;
  max-height: 100%;
}

/*----------------------------------------------
    # Meanmenu style here
----------------------------------------------*/
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container .mean-nav>ul .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav>ul .homemenu-items {
    flex-wrap: wrap;
  }
}

.mean-container .mean-nav>ul .homemenu-items .homemenu {
  position: relative;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav>ul .homemenu-items .homemenu {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid var(--border);
    padding: 10px;
  }
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb::before {
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  content: "";
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--white) !important;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border) !important;
  border: none;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme-2);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

/*----------------------------------------------
    # Preloader style here
----------------------------------------------*/
.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader .animation-preloader {
  z-index: 1000;
}

.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}

.preloader .animation-preloader .txt-loading {
  font: bold 5em var(--font-primary), var(--font-body);
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}

.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header-color);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: var(--font-primary);
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}

.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}

.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.preloader .loader .row {
  height: 100%;
}

.preloader .loader .loader-section {
  padding: 0px;
}

.preloader .loader .loader-section .bg {
  background-color: var(--bg-color);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
}

.back-to-top {
  border-radius: 12px;
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 99;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top:hover {
  background-color: var(--header-color);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text-color);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

@media (min-width: 0px) and (max-width: 319px) {
  body {
    min-width: 319px;
  }
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--black-100);
  outline: none;
}

input::-moz-placeholder {
  color: var(--black-100);
}

input::placeholder {
  color: var(--black-100);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  margin: 0px;
  padding: 0;
  color: var(--header-color);
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 80px;
  font-weight: 500;
  line-height: 150%;
}

@media (max-width: 1399px) {
  h1 {
    font-size: 75px;
    line-height: 75px;
  }
}

h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 150%;
}

h3 {
  font-size: 24px;
}

@media (max-width: 767px) {
  h3 {
    font-size: 16px;
  }
}

h4 {
  font-size: 22px;
}

@media (max-width: 1399px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 30px;
}

h2 a {
  font-size: 48px;
  font-weight: 600;
  line-height: 150%;
  display: inline-block;
}

h3 a {
  font-size: 60px;
  font-weight: 600;
  line-height: 70px;
  display: inline-block;
}

h4 a {
  font-size: 52px;
  font-weight: 600;
  line-height: 62px;
  display: inline-block;
}

h5 a {
  font-size: 36px;
  font-weight: 600;
  line-height: 46px;
  display: inline-block;
}

h6 a {
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header-color);
  transition: all 0.4s ease-in-out;
}

a:hover {
  color: var(--orange) !important;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

span {
  margin: 0px;
  transition: all 0.4s ease-in-out;
  font-size: 18px;
  line-height: 150%;
}

span a {
  font-size: 18px;
  line-height: 150%;
}

/*----------------------------------------------
    # All Variables here
----------------------------------------------*/
:root {
  --body: #fff;
  --black: #111;
  --black-100: #B5B5B5;
  --white: #fff;
  --theme: #F15A29;
  --theme-2: #DCFCE7;
  --red-100: #FFF6F4;
  --red-200: #F9B39D;
  --red-300: #F69070;
  --black-400: #414141;
  --red-500: #F15A29;
  --header-color: #241442;
  --title-color: #131313;
  --text-color: #525252;
  --text-color-2: #F8FAF0;
  --text-color-3: #F5E4DF;
  --text-color-4: #E6E6E6;
  --text-color-5: #4A5565;
  --btn-text: #252525;
  --pra-text: #464646;
  --orange: #F74F22;
  --gray1: #F6F8F0;
  --border: #D0D0D0;
  --border-2: #E5E7EB;
  --shadow-text: #AFAFAF;
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  --font-primary: "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --fa: "Font Awesome 6 Pro";
}

.hero-area {
  padding-top: 140px;
  position: relative;
}

@media (max-width: 1199px) {
  .hero-area {
    padding-top: 82px;
  }
}

.hero-wrapper {
  position: relative;
  margin: 0 60px;
  border-radius: 21px;
  padding: 134px 0;
  max-width: 100%;
  /* overflow: hidden; */
  background-size: cover;
  background-position: center;
}

@media (max-width: 1199px) {
  .hero-wrapper {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .hero-wrapper {
    margin: 0;
    border-radius: 0;
  }
}

.bg-thumb {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 21px;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.hero-wrapper .hero-left-content {
  padding-left: 130px;
  position: relative;
  z-index: 99;
}

.hero-wrapper .swiper {
  position: relative;
  z-index: 99;
}

@media (max-width: 1199px) {
  .hero-wrapper .hero-left-content {
    padding-left: 50px;
  }
}

@media (max-width: 767px) {
  .hero-wrapper .hero-left-content {
    padding: 30px;
  }
}

@media (max-width: 450px) {
  .hero-wrapper .hero-left-content {
    padding: 15px;
  }
}

.hero-wrapper .hero-left-content h1 {
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 60px;
}

@media (max-width: 1600px) {
  .hero-wrapper .hero-left-content h1 {
    font-size: 70px;
    font-weight: 500;
    line-height: 150%;
  }
}

@media (max-width: 1399px) {
  .hero-wrapper .hero-left-content h1 {
    font-size: 55px;
    font-weight: 500;
    line-height: 150%;
  }
}

@media (max-width: 767px) {
  .hero-wrapper .hero-left-content h1 {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .hero-wrapper .hero-left-content h1 {
    font-size: 45px;
  }
}

@media (max-width: 450px) {
  .hero-wrapper .hero-left-content h1 {
    font-size: 32px;
  }
}

.hero-wrapper .search-area {
  max-width: 820px;
  margin-bottom: 60px;
}

@media (max-width: 450px) {
  .hero-wrapper .search-area {
    margin-bottom: 30px;
  }
}

.hero-wrapper .search-area .search-box {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 450px) {
  .hero-wrapper .search-area .search-box {
    flex-direction: column;
  }
}

.hero-wrapper .search-area .search-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: var(--white);
  padding: 10px 20px 10px 40px;
  position: relative;
  max-width: 510px;
  height: 65px;
}

@media (max-width: 767px) {
  .hero-wrapper .search-area .search-input {
    padding: 10px 20px;
  }
}

.hero-wrapper .search-area .search-input input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 20px;
  color: var(--black);
}

.hero-wrapper .search-area .search-input input::-moz-placeholder {
  color: var(--red-200);
}

.hero-wrapper .search-area .search-input input::placeholder {
  color: var(--red-200);
}

.hero-wrapper .search-area .search-input .location-suggestions {
  position: absolute;
  top: 90%;
  left: 0;
  background: var(--white);
  width: 100%;
  padding: 0 20px 10px 20px;
  z-index: 99;
  max-height: 220px;
  overflow-y: auto;
  overflow-y: auto;
  display: none;
  z-index: 20;
  border-radius: 0 0 8px 8px;
}

.hero-wrapper .search-area .search-input .location-suggestions li {
  padding: 5px 0;
  border-bottom: 1px solid #E7E7E7;
}

.hero-wrapper .search-area .search-input .search-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ffb199;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.hero-wrapper .search-area .search-input .search-btn:hover {
  background: #fff1ec;
}

.hero-wrapper .search-area .location-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 17px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--red-500);
  font-size: 20px;
  font-weight: 500;
  height: 65px;
}

.hero-wrapper .search-area .location-btn span i {
  color: var(--red-500);
}

.hero-wrapper .clint-review {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-wrapper .clint-review .meta-thumb {
  display: flex;
  margin-left: 12px;
}

.hero-wrapper .clint-review .meta-thumb .thumb-list {
  margin-left: -12px;
}

.hero-wrapper .clint-review .meta-thumb .thumb-list img {
  border-radius: 50%;
  border: 2px solid var(--white);
}

.hero-wrapper .clint-review .clint-review-rating ul {
  display: flex;
  gap: 4px;
}

.hero-wrapper .clint-review .clint-review-rating p {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}

.hero-wrapper .hero-slider-active {
  width: 100%;
  padding-right: 0;
  margin-top: 107px;
}

@media (max-width: 767px) {
  .hero-wrapper .hero-slider-active {
    margin-top: 50px;
  }
}

@media (max-width: 575px) {
  .hero-wrapper .hero-slider-active {
    margin-top: 20px;
  }
}

.hero-wrapper .swiper-slide {
  height: auto;
}

.hero-wrapper .thumb {
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  padding: 12px 12px 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.hero-wrapper .thumb img {
  width: 100%;
  display: block;
  border-radius: 10px;
  margin-bottom: 28px;
  height: 229px !important;
  object-fit: cover;
}

.hero-wrapper .thumb .thumb-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.hero-wrapper .thumb .thumb-content .slider-card-title {
  color: var(--white);
  font-size: 24px;
  font-weight: 500;
}

.hero-wrapper .thumb .thumb-content a {
  width: 32px;
  height: 32px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.banner-wrapper .left-banner {
  position: relative;
  padding: 50px 24px 49px 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.04);
}

.banner-wrapper .left-banner .banner-content {
  z-index: 1;
}

.banner-wrapper .left-banner .banner-left-bg-image {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 16px !important;
}

@media (max-width: 500px) {
  .banner-wrapper .left-banner {
    flex-direction: column;
    gap: 20px;
    padding: 15px;
  }
}

.banner-wrapper .left-banner .offer {
  color: var(--shadow-text);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
  display: inline-block;
}

.banner-wrapper .left-banner .title {
  max-width: 356px;
  color: var(--black);
  font-size: 32px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 20px;
}

@media (max-width: 1399px) {
  .banner-wrapper .left-banner .title {
    font-size: 24px;
  }
}

@media (max-width: 1199px) {
  .banner-wrapper .left-banner .title {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .banner-wrapper .left-banner .title {
    font-size: 18px;
  }
}

.banner-wrapper .right-banner {
  position: relative;
  Z-index: 1;
  padding: 0 40px 15px 28px;
  border-radius: 16px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}

.banner-wrapper .right-banner .banner-right-bg-image {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 16px !important;
}

.banner-wrapper .right-banner .banner-content {
  z-index: 1;
}

@media (max-width: 1199px) {
  .banner-wrapper .right-banner {
    padding: 150px 40px 15px 28px;
  }
}

@media (max-width: 767px) {
  .banner-wrapper .right-banner {
    padding: 200px 40px 15px 28px;
  }
}

@media (max-width: 500px) {
  .banner-wrapper .right-banner {
    flex-direction: column;
    gap: 20px;
  }
}

.banner-wrapper .right-banner .banner-content {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 100%;
}

.banner-wrapper .right-banner .banner-content .offer {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  text-transform: capitalize;
  margin-bottom: 24px;
  display: inline-block;
}

@media (max-width: 500px) {
  .banner-wrapper .right-banner .banner-content .offer {
    color: var(--black);
  }
}

.banner-wrapper .right-banner .banner-content .title {
  color: var(--white);
  font-size: 32px;
  font-weight: 600;
  line-height: 150%;
  text-transform: capitalize;
  max-width: 246px;
}

@media (max-width: 1399px) {
  .banner-wrapper .right-banner .banner-content .title {
    font-size: 24px;
  }
}

@media (max-width: 1199px) {
  .banner-wrapper .right-banner .banner-content .title {
    font-size: 18px;
  }
}

@media (max-width: 500px) {
  .banner-wrapper .right-banner .banner-content .title {
    width: 100%;
    max-width: 100%;
    color: var(--black);
  }
}

.categories-card {
  display: flex;
  padding: 24px 24px 20px 24px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  border-radius: 8px;
  border: 1px solid var(--red-200);
  height: 100%;
}

@media (max-width: 1399px) {
  .categories-card {
    padding: 15px;
  }
}

.categories-card .thumb {
  overflow: hidden;
  border-radius: 8px;
}

@media (max-width: 1199px) {
  .categories-card .thumb {
    width: 100%;
  }
}

.categories-card .thumb img {
  border-radius: 8px;
  transition: all 1s ease-in-out;
  height: 220px !important;
  width: 321px !important;
}

@media (max-width: 1199px) {
  .categories-card .thumb img {
    width: 100%;
  }
}

.categories-card .categories-content {
  width: 100%;
}

.categories-card .categories-content a {
  color: var(--black);
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 1399px) {
  .categories-card .categories-content a {
    font-size: 20px;
  }
}

.categories-card .categories-content a span {
  background: var(--theme);
  padding: 5px 14px;
  border-radius: 6px;
  width: 52px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.categories-card:hover .thumb img {
  transform: scale(1.1);
}

.service-card-wrap:has(.service-card) {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 300px));
  gap: 24px;
}

@media (max-width: 1399px) {
  .service-card-wrap:has(.service-card) {
    grid-template-columns: repeat(4, minmax(0, 100%));
  }
}

@media (max-width: 1199px) {
  .service-card-wrap:has(.service-card) {
    grid-template-columns: repeat(3, minmax(0, 100%));
  }
}

@media (max-width: 991px) {
  .service-card-wrap:has(.service-card) {
    grid-template-columns: repeat(3, minmax(0, 100%));
  }
}

@media (max-width: 767px) {
  .service-card-wrap:has(.service-card) {
    grid-template-columns: repeat(2, minmax(0, 100%));
  }
}

@media (max-width: 575px) {
  .service-card-wrap:has(.service-card) {
    grid-template-columns: repeat(1, minmax(0, 100%));
  }
}

.service-card-wrap.style-two {
  grid-template-columns: repeat(2, minmax(0, 100%));
}

@media (max-width: 575px) {
  .service-card-wrap.style-two {
    grid-template-columns: repeat(1, minmax(0, 100%));
  }
}

.service-card {
  padding: 10px 10px 16px 10px;
  border-radius: 16px;
  background: var(--red-100);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card .thumb-content {
  margin-bottom: 12px;
}

.service-card .thumb-content .thumb {
  aspect-ratio: 280/187;
  background: #f2f2f2;
  border-radius: 8px;
  overflow: hidden;
}

.service-card .thumb-content .thumb img {
  border-radius: 8px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100% !important;
  transition: all 1s ease-in-out;
}

.service-card .title {
  margin-bottom: 12px;
}

.service-card .title a {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.service-card .meta-info {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card .meta-info span {
  color: var(--black);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-card .card-bottom-content {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
}

.service-card .card-bottom-content .price-wrap span {
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.service-card .card-bottom-content .price-wrap .price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card .card-bottom-content .price-wrap .price h4 {
  color: var(--black);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.service-card .card-bottom-content .price-wrap .price del {
  color: var(--shadow-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-decoration-line: line-through;
}

.service-card .card-bottom-content .bf-theme-btn-2 {
  padding: 8px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

@media (max-width: 1399px) {
  .service-card .card-bottom-content .bf-theme-btn-2 {
    padding: 8px 15px;
  }
}

.service-card:hover .thumb-content .thumb img {
  transform: scale(1.1);
}

.service-left-content {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  max-width: 100%;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid var(--shadow-text);
}

@media (max-width: 767px) {
  .service-left-content {
    padding: 15px;
  }
}

.service-left-content .service-slider {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.service-left-content .media-wrap {
  position: relative;
  height: 568px;
  overflow: hidden;
}


.media-wrap-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(241, 90, 41, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.media-wrap-overlay-inner {
  padding: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
}

.servicr-slide-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  color: var(--white);
}

.service-slide-sub-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--white);
}

.media-wrap-overlay-btn {
  width: 45px;
  height: 30px;
  border-radius: 8px;
  background: var(--theme);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.service-left-content .media-wrap img,
.service-left-content .media-wrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 14px;
}

.service-left-content .media-wrap video {
  background: var(--black);
}

.service-left-content .media-wrap .slide-title {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #F15A29 0%, #FFF 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-left-content .swiper-pagination {
  bottom: 12px !important;
}

.service-left-content .swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.service-left-content .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.service-left-content .card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}

@media (max-width: 1399px) {
  .service-left-content .card-content {
    margin-top: 17px;
  }
}

.service-left-content .card-content .content-top h4 {
  color: var(--black);
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 15px;
}

.service-left-content .card-content .content-top p {
  color: var(--shadow-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.service-left-content .card-content a span {
  margin-left: auto;
  background: var(--theme);
  padding: 5px 14px;
  border-radius: 6px;
  width: 52px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-around-content .left-content {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--shadow-text);
}

.services-around-content .left-content .service-cta {
  position: relative;
  padding: 30px 24px 190px 24px;
  border-radius: 8px;

}

.services-around-content .left-content .service-cta .nearest_provider_image {
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.services-around-content .left-content .service-cta .cta-title {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 12px;
}

.services-around-content .left-content .service-cta p {
  color: var(--white);
  margin-bottom: 16px;
}

.services-around-content .left-content .service-cta .cta-title,
.services-around-content .left-content .service-cta p,
.services-around-content .left-content .service-cta .bf-btn-wrap {
  position: relative;
  z-index: 1;
}

.services-around-content .right-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 497px));
  gap: 24px;
  justify-content: center;
}

@media (max-width: 1199px) {
  .services-around-content .right-content {
    grid-template-columns: repeat(2, minmax(0, 100%));
  }
}

@media (max-width: 767px) {
  .services-around-content .right-content {
    grid-template-columns: repeat(1, minmax(0, 100%));
  }
}

@media (max-width: 1399px) {
  .services-around-content .right-content .provider-card.style-two .thumb-content .thumb {
    width: 100px;
    aspect-ratio: 100/100;
    overflow: hidden;
    background: #f2f2f2;
    border-radius: 8px;
  }
}

.service-page-wrapper {
  padding-top: 140px;
}

.service-details-wrapper {
  padding-top: 140px;
}

@media (max-width: 767px) {
  .service-details-wrapper {
    padding-top: 100px;
  }
}

.service-details-wrapper .top-content {
  margin-bottom: 50px;
}

.service-details-wrapper .top-content .thumb-two img,
.service-details-wrapper .top-content .thumb-three img {
  width: 100%;
}

.service-details-wrapper .bottom-content .bottom-left-content .title {
  color: var(--black);
  font-size: 48px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  .service-details-wrapper .bottom-content .bottom-left-content .title {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .service-details-wrapper .bottom-content .bottom-left-content .title {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .service-details-wrapper .bottom-content .bottom-left-content .title {
    font-size: 30px;
  }
}

@media (max-width: 500px) {
  .service-details-wrapper .bottom-content .bottom-left-content .title {
    font-size: 28px;
  }
}

@media (max-width: 470px) {
  .service-details-wrapper .bottom-content .bottom-left-content .title {
    font-size: 25px;
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 450px) {
  .service-details-wrapper .bottom-content .bottom-left-content .title {
    font-size: 24px;
  }
}

.service-details-wrapper .bottom-content .bottom-left-content p {
  color: var(--shadow-text);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 30px;
}

.service-details-wrapper .bottom-content .bottom-left-content .review-content {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.service-details-wrapper .bottom-content .bottom-left-content .provider-information {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  border-top: 1px solid var(--black-100);
  border-bottom: 1px solid var(--black-100);
  padding: 15px 0 20px 0;
  margin-bottom: 50px;
}

@media (max-width: 1399px) {
  .service-details-wrapper .bottom-content .bottom-left-content .provider-information {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .service-details-wrapper .bottom-content .bottom-left-content .provider-information {
    flex-wrap: wrap;
  }
}

.service-details-wrapper .bottom-content .bottom-left-content .provider-information .thumb {
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
  margin-right: 10px;
}

.service-details-wrapper .bottom-content .bottom-left-content .provider-information .thumb img {
  width: 100%;
  box-shadow: 0 4px 56px 0 rgba(0, 0, 0, 0.1);
  border-radius: 100%;
}

.service-details-wrapper .bottom-content .bottom-left-content .provider-information .provider-information-items {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-details-wrapper .bottom-content .bottom-left-content .provider-information .provider-information-items .provider-single-info .title {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 6px;
}

.service-details-wrapper .bottom-content .bottom-left-content .provider-information .provider-information-items .provider-single-info span {
  color: var(--shadow-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-details-wrapper .bottom-content .bottom-left-content .provider-information .provider-information-items .provider-single-info span .bent-btn {
  display: flex;
  padding: 5px 10px 6px 10px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid var(--shadow-text);
  color: var(--shadow-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
}

.service-details-wrapper .bottom-content .bottom-left-content .text-content {
  margin-bottom: 40px;
}

.service-details-wrapper .bottom-content .bottom-left-content .text-content .title,
.service-details-wrapper .bottom-content .bottom-left-content .text-content strong {
  color: var(--black);
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 24px;
}

.service-details-wrapper .bottom-content .bottom-left-content .text-content p {
  color: var(--shadow-text);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 0;
}

.service-details-wrapper .bottom-content .bottom-left-content .text-content ul {
  margin-left: 20px;
}

.service-details-wrapper .bottom-content .bottom-left-content .text-content ul li {
  color: var(--shadow-text);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  list-style: disc;
}

.service-details-wrapper .bottom-content .bottom-right-content .price-card {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--shadow-text);
  margin-bottom: 50px;
}

.service-details-wrapper .bottom-content .bottom-right-content .price-card .price-top {
  margin-bottom: 30px;
}

.service-details-wrapper .bottom-content .bottom-right-content .price-card .price-top .starting {
  color: var(--shadow-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  display: block;
  margin-bottom: 20px;
}

.service-details-wrapper .bottom-content .bottom-right-content .price-card .price-top .price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-details-wrapper .bottom-content .bottom-right-content .price-card .price-top .price-row h2 {
  color: var(--black);
  font-size: 32px;
  font-weight: 500;
  line-height: 150%;
}

.service-details-wrapper .bottom-content .bottom-right-content .price-card .price-top .price-row del {
  color: var(--shadow-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-decoration-line: line-through;
}

.service-details-wrapper .bottom-content .bottom-right-content .price-card .price-top .price-row .save {
  color: var(--red-300);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.service-details-wrapper .bottom-content .bottom-right-content .price-card .date-time {
  position: relative;
  margin-bottom: 30px;
}

.service-details-wrapper .bottom-content .bottom-right-content .price-card .date-time input {
  width: 100%;
  height: 48px;
  color: var(--shadow-text);
  border-radius: 12px;
  border: 1px solid var(--shadow-text);
  padding: 12px 20px 12px 16px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  cursor: pointer;
}

.service-details-wrapper .bottom-content .bottom-right-content .price-card .date-time input::-moz-placeholder {
  color: var(--shadow-text);
}

.service-details-wrapper .bottom-content .bottom-right-content .price-card .date-time input::placeholder {
  color: var(--shadow-text);
}

.service-details-wrapper .bottom-content .bottom-right-content .price-card .date-time input:focus {
  outline: none;
  border-color: #ff5a2c;
}

.service-details-wrapper .bottom-content .bottom-right-content .price-card .date-time .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  pointer-events: none;
}

.service-details-wrapper .bottom-content .bottom-right-content .price-card .submit-btn {
  width: 100%;
  height: 48px;
  border-radius: 14px;
  border-radius: 8px;
  background: var(--theme);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-transform: capitalize;
  cursor: pointer;
  transition: 0.25s ease;
}

.service-details-wrapper .bottom-content .bottom-right-content .price-card .submit-btn:hover {
  opacity: 0.92;
}

.service-details-wrapper .bottom-content .bottom-right-content .why-us-card {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--shadow-text);
}

.service-details-wrapper .bottom-content .bottom-right-content .why-us-card h2 {
  color: var(--black);
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 30px;
}

.service-details-wrapper .bottom-content .bottom-right-content .why-us-card ul {
  margin-left: 20px;
}

.service-details-wrapper .bottom-content .bottom-right-content .why-us-card ul li {
  color: var(--shadow-text);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  list-style: disc;
}

.tab-contents .service-top-content h2 {
  color: var(--black);
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 46px;
}

.service-tab-items .service-tab-item {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  border: 1px solid var(--shadow-text);
  margin-bottom: 16px;
}

.service-tab-items .service-tab-item:last-child {
  margin-bottom: 0;
}

.service-tab-items .service-tab-item .icon {
  display: flex;
  width: 60px;
  height: 60px;
  padding: 18px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #DBEAFE;
}

.service-tab-items .service-tab-item .service-tab-item-content h3 {
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 4px;
}

@media (max-width: 575px) {
  .service-tab-items .service-tab-item .service-tab-item-content h3 {
    font-size: 16px;
  }
}

.service-tab-items .service-tab-item .service-tab-item-content p {
  color: var(--shadow-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.reviews-contents .service-top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.reviews-contents .service-top-content h2 {
  margin-bottom: 0;
}

.reviews-contents .service-tab-item h3 {
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 16px;
}

.reviews-contents .service-tab-item .rating-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}

@media (max-width: 470px) {
  .reviews-contents .service-tab-item .rating-wrap {
    flex-direction: column;
    align-items: start;
  }
}

.reviews-contents .service-tab-item .rating-wrap ul {
  display: flex;
  align-items: end;
}

.reviews-contents .service-tab-item p {
  color: var(--black) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 150% !important;
}

.service-overview-wrapper .nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  border: none;
  gap: 30px;
  padding: 10px 20px;
}

@media (max-width: 767px) {
  .service-overview-wrapper .nav-tabs {
    gap: 10px;
  }
}

.service-overview-wrapper .nav-tabs .nav-link {
  border-radius: 5px;
  border: 1px solid var(--shadow-text);
  color: var(--shadow-text);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

@media (max-width: 767px) {
  .service-overview-wrapper .nav-tabs .nav-link {
    font-size: 16px;
    padding: 5px;
  }
}

@media (max-width: 450px) {
  .service-overview-wrapper .nav-tabs .nav-link {
    font-size: 14px;
  }
}

.service-overview-wrapper .nav-tabs .nav-link.active {
  color: white;
  background: var(--theme);
  border: transparent;
}

.contact-wrapper .contact-inner {
  padding: 40px 40px 40px 100px;
  border-radius: 16px;
}

@media (max-width: 1199px) {
  .contact-wrapper .contact-inner {
    padding: 40px;
  }
}

@media (max-width: 500px) {
  .contact-wrapper .contact-inner {
    padding: 20px;
  }
}

.contact-wrapper .contact-inner .contact-left p {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  display: flex;
  gap: 30px;
  margin-bottom: 42px;
}

.contact-wrapper .contact-inner .contact-left h2 {
  margin-bottom: 20px;
  color: var(--black);
  font-size: 32px;
  font-weight: 600;
  line-height: 150%;
  max-width: 427px;
}

.contact-wrapper .contact-inner .contact-left span {
  color: var(--black-400);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  max-width: 430px;
  display: inline-block;
}


.job-post-how-work .how-work {
    border-radius: 29px;
    background: var(--black);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
}

.job-post-how-work .how-work h4{
    text-align: center;
    color: var(--white);
    font-size: 24px;
    line-height: 1.5;
}

.job-post-how-work-btn-group {
    margin-top: 4px;
    display: flex;
    gap: 30px;
}


.job-post-how-work-btn-group .bf-theme-btn{
    gap: 10px;
}

.job-post-how-work .how-work ul {
    display: flex;
    justify-content: center;
    align-items: start;
    list-style: none;
    flex-direction: column;
    gap: 16px;
}

.job-post-how-work .how-work ul li {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.job-post-how-work .how-work ul li .counter-number{
    width: 42px;
    height: 42px;
    border-radius: 100px;
    opacity: 1;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

}

.job-post-how-work .how-work ul li .counter-number span{
    background-image: linear-gradient(
        163.3deg,
        #FA7E36 -23.08%,
        #FDD170 116.15%
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
}




.job-post-how-work .how-work ul li h6 {
    color: var(--white);
    font-weight: 500;
    line-height: 1.5;
    font-size: 20px;
}

.job-post-how-work .how-work ul li p{
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(176, 174, 165, 1);
}




.contact-wrapper .contact-inner .contact-form {
  border-radius: 29px;
  background: var(--black);
  padding: 40px;
}

@media (max-width: 767px) {
  .contact-wrapper .contact-inner .contact-form {
    padding: 20px;
  }
}

.contact-wrapper .contact-inner .contact-form .form-group label {
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 575px) {
  .contact-wrapper .contact-inner .contact-form .form-group label {
    font-size: 16px;
  }
}

.contact-wrapper .contact-inner .contact-form .form-group .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--white);
  border-radius: 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
  height: 40px;
  margin-bottom: 40px;
}

@media (max-width: 470px) {
  .contact-wrapper .contact-inner .contact-form .form-group .form-control {
    margin-bottom: 20px;
    height: 35px;
  }
}

.contact-wrapper .contact-inner .contact-form .form-group .form-control select.form-control {
  background-color: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  cursor: pointer;
}

.contact-wrapper .contact-inner .contact-form .form-group .form-control option {
  color: #111;
  background: #fff;
}

.contact-wrapper .contact-inner .contact-form .form-group .form-control:focus {
  box-shadow: none;
}

.contact-page-wrapper {
  padding-top: 160px;
}

@media (max-width: 767px) {
  .contact-page-wrapper {
    padding-top: 110px;
  }
}

.contact-page-wrapper .main-title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-page-wrapper .contact-inner {
  margin-top: -30px;
}

.contact-page-wrapper .left-content .section-top-content .section-top-bottom-content h2 {
  max-width: 654px;
  color: var(--black);
  font-family: Inter;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

@media (max-width: 1199px) {
  .contact-page-wrapper .left-content .section-top-content .section-top-bottom-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .contact-page-wrapper .left-content .section-top-content .section-top-bottom-content h2 {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .contact-page-wrapper .left-content .section-top-content .section-top-bottom-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 500px) {
  .contact-page-wrapper .left-content .section-top-content .section-top-bottom-content h2 {
    font-size: 28px;
  }
}

.contact-page-wrapper .left-content .content-cta-item-wrap {
  max-width: 494px;
}

.contact-page-wrapper .left-content .content-cta-item-wrap .content-cta-item {
  gap: 16px;
  display: flex;
  padding: 15px;
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.contact-page-wrapper .left-content .content-cta-item-wrap .content-cta-item:last-child {
  margin-bottom: 0;
}

.contact-page-wrapper .left-content .content-cta-item-wrap .content-cta-item .icon {
  width: 48px;
  height: 48px;
  aspect-ratio: 1/1;
  border: 1px solid var(--red-200);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.contact-page-wrapper .left-content .content-cta-item-wrap .content-cta-item .text-content .title {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.contact-page-wrapper .left-content .content-cta-item-wrap .content-cta-item .text-content a,
.contact-page-wrapper .left-content .content-cta-item-wrap .content-cta-item .text-content p {
  color: var(--shadow-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.contact-page-wrapper .form-contain {
  border-radius: 24px;
  border: 1px solid #FBCCBD;
  background: rgba(255, 255, 255, 0.1);
  padding: 60px 100px;
}

@media (max-width: 1199px) {
  .contact-page-wrapper .form-contain {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .contact-page-wrapper .form-contain {
    padding: 20px;
  }
}

.contact-page-wrapper .form-contain .form-group .form-control {
  border: none;
  border-bottom: 1px solid var(--border-2);
  border-radius: 0;
  padding: 0;
  padding-bottom: 20px;
}

.contact-page-wrapper .form-contain .form-group .form-control:focus {
  box-shadow: none;
  border-bottom: 1px solid var(--theme);
}

.contact-page-wrapper .form-contain .form-group textarea {
  min-height: 120px;
}

.contact-page-wrapper .form-contain .bf-btn-wrap {
  margin-top: 40px;
}

.contact-page-wrapper .form-contain .bf-btn-wrap .bf-theme-btn {
  width: 100%;
}

.blog-card {
  border-radius: 12px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--shadow-text);
  padding: 16px;
  transition: box-shadow 0.3s ease;
  transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.blog-card .thumb-content {
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.blog-card .thumb-content .thumb img {
  width: 100%;
  border-radius: 10px;
  transition: all 1s ease-in-out;
}

.blog-card .meta-info {
  margin-bottom: 20px;
}

.blog-card .meta-info .date {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.blog-card .card-content .title a {
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 16px;
  display: inline-block;
}

.blog-card .card-content p {
  color: var(--shadow-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  max-width: 434px;
}

.blog-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: var(--black);
}

.blog-card:hover .meta-info .date {
  color: var(--white);
}

.blog-card:hover .card-content .title a {
  color: var(--white);
}

.blog-card:hover .thumb-content .thumb img {
  transform: scale(1.1);
}

.blog-details-wrapper {
  padding-top: 160px;
}

@media (max-width: 767px) {
  .blog-details-wrapper {
    padding-top: 110px;
  }
}

.blog-details-wrapper .blog-details {
  margin: 0 140px;
}

@media (max-width: 1199px) {
  .blog-details-wrapper .blog-details {
    margin: 0 40px;
  }
}

@media (max-width: 767px) {
  .blog-details-wrapper .blog-details {
    margin: 0;
  }
}

.blog-details-wrapper .blog-details .blog-title {
  color: var(--black);
  font-size: 56px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .blog-details-wrapper .blog-details .blog-title {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .blog-details-wrapper .blog-details .blog-title {
    font-size: 30px;
  }
}

@media (max-width: 500px) {
  .blog-details-wrapper .blog-details .blog-title {
    font-size: 28px;
  }
}

.blog-details-wrapper .blog-details .blog-intro {
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--black);
  padding-bottom: 32px;
  margin-bottom: 24px;
}

.blog-details-wrapper .blog-details .blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
  row-gap: 20px;
}

.blog-details-wrapper .blog-details .blog-meta .author {
  display: flex;
  align-items: center;
  gap: 24px;
}

.blog-details-wrapper .blog-details .blog-meta .author .author-thumb {
  width: 60px;
  height: 60px;
}

.blog-details-wrapper .blog-details .blog-meta .author .author-thumb img {
  border-radius: 100%;
}

.blog-details-wrapper .blog-details .blog-meta .author .author-by p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.blog-details-wrapper .blog-details .blog-meta .author .author-by span {
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
}

.blog-details-wrapper .blog-details .blog-meta .meta-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details-wrapper .blog-details .blog-meta .meta-content span {
  border-radius: 100px;
  border: 1px solid var(--shadow-text);
  padding: 10px 16px;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.blog-details-wrapper .blog-details .blog-thumb {
  margin-bottom: 50px;
  border-radius: 10px;
  overflow: hidden;
}

.blog-details-wrapper .blog-details .blog-thumb img {
  width: 100%;
  display: block;
  border-radius: 10px;
  max-height: 750px;
}

.blog-details-wrapper .blog-details .blog-content p {
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 32px;
}

.blog-details-wrapper .blog-details .blog-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .blog-details-wrapper .blog-details .blog-content p {
    margin-bottom: 16px;
  }
}

.blog-details-wrapper .blog-details .blog-content h3 {
  color: var(--black);
  font-size: 32px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .blog-details-wrapper .blog-details .blog-content h3 {
    margin-bottom: 24px;
  }
}

.blog-details-wrapper .blog-details .blog-content .conclusion-title {
  color: var(--black);
  font-size: 32px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 24px;
}

.about-page-wrapper {
  padding-top: 160px;
}

.about-page-wrapper .thumb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-wrapper .left-content ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.about-us-wrapper .middle-content {
  margin-left: 110px;
}

@media (max-width: 1600px) {
  .about-us-wrapper .middle-content {
    margin-left: 0;
  }
}

.about-us-wrapper .middle-content .thumb img {
  border-radius: 12px;
}

.about-us-wrapper .right-content {
  margin-left: 80px;
}

@media (max-width: 1600px) {
  .about-us-wrapper .right-content {
    margin-left: 0;
  }
}

.about-us-wrapper .right-content .item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .about-us-wrapper .right-content .item {
    margin-bottom: 20px;
  }
}

.about-us-wrapper .right-content .item span {
  color: var(--text-color-4);
  font-size: 80px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%;
  width: 113px;
  height: 93px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1199px) {
  .about-us-wrapper .right-content .item span {
    font-size: 50px;
  }
}

.about-us-wrapper .right-content .item .items-content {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .about-us-wrapper .right-content .item .items-content {
    margin-top: 20px;
  }
}

.about-us-wrapper .right-content .item .items-content h3 {
  color: var(--black);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 6px;
}

@media (max-width: 1199px) {
  .about-us-wrapper .right-content .item .items-content h3 {
    font-size: 18px;
  }
}

.about-us-wrapper .right-content .item .items-content p {
  color: var(--shadow-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.about-cta-inner {
  border-radius: 12px;
  padding: 60px 100px;
}

@media (max-width: 1199px) {
  .about-cta-inner {
    padding: 40px;
  }
}

@media (max-width: 500px) {
  .about-cta-inner {
    padding: 20px;
  }
}

.about-cta-inner .cta-left-content h2 {
  color: var(--black);
  font-size: 48px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 30px;
  max-width: 784px;
}

@media (max-width: 1199px) {
  .about-cta-inner .cta-left-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 450px) {
  .about-cta-inner .cta-left-content h2 {
    font-size: 22px;
  }
}

.about-cta-inner .cta-left-content .service-list {
  margin-bottom: 40px;
}

.about-cta-inner .cta-left-content .service-list li {
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 16px;
}

.about-cta-inner .cta-right-content {
  height: 100%;
  position: relative;
}

@media (max-width: 991px) {
  .about-cta-inner .cta-right-content {
    display: none;
  }
}

.about-cta-inner .cta-right-content .main-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.about-cta-inner .cta-right-content .single-thumb-1 {
  position: absolute;
  top: 0px;
  left: 0;
}

.about-cta-inner .cta-right-content .single-thumb-2 {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.about-cta-inner .cta-right-content .single-thumb-3 {
  position: absolute;
  top: 0;
  right: 0;
}

.about-cta-inner .cta-right-content .single-thumb-4 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.about-cta-inner .cta-right-content .single-thumb-5 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 100px;
}

@media (max-width: 1600px) {
  .about-cta-inner .cta-right-content .single-thumb-5 {
    right: 10px;
  }
}

.about-cta-inner .cta-right-content .single-thumb-6 {
  position: absolute;
  right: 0;
  bottom: -35px;
}

.vendor-about-page-wrapper {
  margin-top: 160px;
}

.vendor-about-page-wrapper .left-content {
  margin-left: 90px;
}

@media (max-width: 991px) {
  .vendor-about-page-wrapper .left-content {
    margin-left: 0;
  }
}

.vendor-about-page-wrapper .left-content .section-top-content .section-top-bottom-content h2 {
  max-width: 620px !important;
}

.vendor-about-page-wrapper .left-content .bf-btn-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 450px) {
  .vendor-about-page-wrapper .left-content .bf-btn-wrap {
    width: 100%;
  }

  .vendor-about-page-wrapper .left-content .bf-btn-wrap .bf-theme-btn {
    width: 100%;
  }
}

.vendor-about-page-wrapper .left-content .meta-box {
  display: flex;
  align-items: center;
  gap: 41px;
}

.vendor-about-page-wrapper .left-content .meta-box span {
  display: flex;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vendor-about-page-wrapper .right-content {
  margin: 0 90px 0 40px;
}

@media (max-width: 991px) {
  .vendor-about-page-wrapper .right-content {
    margin: 0;
  }
}

.vendor-about-page-wrapper .right-content .thumb {
  position: relative;
}

.vendor-about-page-wrapper .right-content .thumb img {
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1199px) {
  .vendor-about-page-wrapper .right-content .thumb img {
    width: 100%;
  }
}

.vendor-about-page-wrapper .right-content .thumb .thumb-content {
  position: absolute;
  top: 38px;
  left: -100px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 16px 24px;
}

@media (max-width: 1199px) {
  .vendor-about-page-wrapper .right-content .thumb .thumb-content {
    top: 71px;
    left: -41px;
  }
}

@media (max-width: 991px) {
  .vendor-about-page-wrapper .right-content .thumb .thumb-content {
    display: none;
  }
}

.vendor-about-page-wrapper .right-content .thumb .thumb-content span {
  color: var(--text-color-5);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.vendor-about-page-wrapper .right-content .thumb .thumb-content .title {
  color: var(--theme);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}

.testimonial-wrapper .testimonial-inner {
  margin: 0 50px;
}

@media (max-width: 500px) {
  .testimonial-wrapper .testimonial-inner {
    margin: 0;
  }
}

.testimonial-wrapper .testimonial-inner .testimonial-left-content {
  display: flex;
  align-items: end;
  gap: 30px;
}

@media (max-width: 1199px) {
  .testimonial-wrapper .testimonial-inner .testimonial-left-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 20px;
  }
}

.testimonial-wrapper .testimonial-inner .testimonial-left-content .thumb img {
  border-radius: 12px;
}

.testimonial-wrapper .testimonial-inner .testimonial-left-content .clint-info .name {
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 9px;
}

.testimonial-wrapper .testimonial-inner .testimonial-left-content .clint-info .position {
  color: var(--shadow-text);
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.testimonial-wrapper .testimonial-inner .testimonial-right-content {
  display: flex;
  align-items: end;
  gap: 50px;
}

@media (max-width: 1199px) {
  .testimonial-wrapper .testimonial-inner .testimonial-right-content {
    text-align: center;
    gap: 0;
  }
}

.testimonial-wrapper .testimonial-inner .testimonial-right-content .quotation-icon {
  width: 125px;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1199px) {
  .testimonial-wrapper .testimonial-inner .testimonial-right-content .quotation-icon {
    width: 75px;
    height: 75px;
  }
}

@media (max-width: 991px) {
  .testimonial-wrapper .testimonial-inner .testimonial-right-content .quotation-icon {
    display: none;
  }
}

.testimonial-wrapper .testimonial-inner .testimonial-right-content p {
  color: var(--shadow-text);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

@media (max-width: 470px) {
  .testimonial-wrapper .testimonial-inner .testimonial-right-content p {
    font-size: 16px;
  }
}

.provider-profile-wrapper,
.payment-wrapper,
.inv-page {
  padding-top: 160px;
}

.payment-wrapper,
.inv-page {
  padding-bottom: 160px;
}


@media (max-width: 767px) {

  .payment-wrapper,
  .inv-page {
    padding-top: 100px;
  }

  .payment-wrapper,
  .inv-page {
    padding-bottom: 60px;
  }
}

.provider-profile-wrapper .provider-profile-card {
  border-radius: 20px;
  background: var(--white);
  box-shadow: 2px 4px 15px 0 rgba(0, 0, 0, 0.15);
  padding: 50px 80px;
}

@media (max-width: 767px) {
  .provider-profile-wrapper .provider-profile-card {
    padding: 30px;
  }
}

.provider-profile-wrapper .provider-profile-card .thumb {
  margin-bottom: 30px;
}

.provider-profile-wrapper .provider-profile-card .thumb img {
  border-radius: 100%;
}

.provider-profile-wrapper .provider-profile-card .profile-content .top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 27px;
  flex-wrap: wrap;
  gap: 20px;
}

.provider-profile-wrapper .provider-profile-card .profile-content .top-content h2 {
  color: var(--black);
  font-size: 32px;
  font-weight: 600;
  line-height: 150%;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 575px) {
  .provider-profile-wrapper .provider-profile-card .profile-content .top-content h2 {
    font-size: 24px;
  }
}

.provider-profile-wrapper .provider-profile-card .profile-content .top-content h2 span {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 450px) {
  .provider-profile-wrapper .provider-profile-card .profile-content .top-content h2 span {
    display: none;
  }
}

.provider-profile-wrapper .provider-profile-card .profile-content .top-content .meta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.provider-profile-wrapper .provider-profile-card .profile-content .top-content .meta-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--shadow-text);
  display: flex;
  width: 72px;
  height: 48px;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.provider-profile-wrapper .provider-profile-card .profile-content .top-content .meta-btn span svg path {
  transition: all 0.4s ease-in-out;
}

.provider-profile-wrapper .provider-profile-card .profile-content .top-content .meta-btn span:hover {
  border: 1px solid var(--theme);
}

.provider-profile-wrapper .provider-profile-card .profile-content .top-content .meta-btn span:hover svg path {
  stroke: var(--theme);
}

.provider-profile-wrapper .provider-profile-card .profile-content .rating-content {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 27px;
  flex-wrap: wrap;
}

.provider-profile-wrapper .provider-profile-card .profile-content .rating-content .star {
  display: flex;
  align-items: center;
}

.provider-profile-wrapper .provider-profile-card .profile-content .meta-info {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.provider-profile-wrapper .provider-profile-card .profile-content .meta-info .item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--shadow-text);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

@media (max-width: 470px) {
  .provider-profile-wrapper .provider-profile-card .profile-content .meta-info .item {
    font-size: 16px;
  }
}

.provider-profile-wrapper .provider-profile-card .profile-content .trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.provider-profile-wrapper .provider-profile-card .profile-content .trust-badges .badge {
  display: inline-flex;
  padding: 6px 10px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 100px;
  background: #DBEAFE;
  color: #1E40AF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.provider-profile-wrapper .provider-profile-card .profile-content .trust-badges .badge:nth-of-type(2) {
  color: #166534;
  background: #DCFCE7;
}

.provider-profile-wrapper .provider-profile-card .profile-content .trust-badges .badge:nth-of-type(3) {
  color: #6B21BB;
  background: #F3E8FF;
}

.provider-profile-wrapper .provider-profile-card .profile-content .stats-area {
  background: var(--white);
  margin-top: 50px;
}

.provider-profile-wrapper .provider-profile-card .profile-content .stats-area .stats-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

@media (max-width: 991px) {
  .provider-profile-wrapper .provider-profile-card .profile-content .stats-area .stats-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

.provider-profile-wrapper .provider-profile-card .profile-content .stats-area .stat-item span {
  color: var(--black);
  font-size: 32px;
  font-weight: 600;
  line-height: 150%;
}

.provider-profile-wrapper .provider-profile-card .profile-content .stats-area .stat-item p {
  color: var(--shadow-text);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

@media (max-width: 450px) {
  .provider-profile-wrapper .provider-profile-card .profile-content .stats-area .stat-item p {
    font-size: 12px;
  }
}

.profile-overview-wrapper .profile-tabs-area .profile-tabs-card {
  border-radius: 20px;
  background: var(--white);
  box-shadow: 2px 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.profile-overview-wrapper .profile-tabs-area .profile-tabs {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 30px 100px 0 100px;
  border-bottom: 1px solid #AFAFAF;
}

@media (max-width: 767px) {
  .profile-overview-wrapper .profile-tabs-area .profile-tabs {
    padding: 10px 40px 0 40px;
  }
}

@media (max-width: 575px) {
  .profile-overview-wrapper .profile-tabs-area .profile-tabs {
    padding: 10px 20px 0 20px;
    gap: 20px;
  }
}

.profile-overview-wrapper .profile-tabs-area .profile-tabs .nav-link {
  color: var(--shadow-text);
  font-size: 32px;
  font-weight: 500;
  line-height: 150%;
  border: none;
  padding: 0 0 12px 0;
  position: relative;
}

@media (max-width: 575px) {
  .profile-overview-wrapper .profile-tabs-area .profile-tabs .nav-link {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .profile-overview-wrapper .profile-tabs-area .profile-tabs .nav-link {
    font-size: 16px;
  }
}

.profile-overview-wrapper .profile-tabs-area .profile-tabs .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--theme);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

.profile-overview-wrapper .profile-tabs-area .profile-tabs .nav-link.active {
  color: var(--theme);
}

.profile-overview-wrapper .profile-tabs-area .profile-tabs .nav-link.active::after {
  transform: scaleX(1);
}

.profile-overview-wrapper .profile-tabs-area .tab-contents {
  padding: 24px;
  padding: 30px 100px;
}

@media (max-width: 767px) {
  .profile-overview-wrapper .profile-tabs-area .tab-contents {
    padding: 30px 40px;
  }
}

@media (max-width: 470px) {
  .profile-overview-wrapper .profile-tabs-area .tab-contents {
    padding: 20px;
  }
}

.profile-overview-wrapper .profile-tabs-area .tab-contents .content-block {
  margin-bottom: 24px;
}

.profile-overview-wrapper .profile-tabs-area .tab-contents .content-block:last-child {
  margin-bottom: 0;
}

.profile-overview-wrapper .profile-tabs-area .tab-contents .content-block h4 {
  color: var(--black);
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .profile-overview-wrapper .profile-tabs-area .tab-contents .content-block h4 {
    font-size: 18px;
  }
}

.profile-overview-wrapper .profile-tabs-area .tab-contents .content-block p {
  color: var(--shadow-text);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

@media (max-width: 575px) {
  .profile-overview-wrapper .profile-tabs-area .tab-contents .content-block p {
    font-size: 16px;
  }
}

.profile-overview-wrapper .profile-tabs-area .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-overview-wrapper .profile-tabs-area .info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--shadow-text);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 23px;
}

.profile-overview-wrapper .profile-tabs-area .info-list li:last-child {
  margin-bottom: 0;
}

.profile-overview-wrapper .profile-tabs-area .info-list li .icon {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
}

.profile-overview-wrapper .profile-tabs-area .badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.profile-overview-wrapper .profile-tabs-area .badge-group .badge {
  border-radius: 8px;
  background: #DCFCE7;
  color: #166534;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  white-space: nowrap;
  display: flex;
  padding: 6px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.why-join-provider-wrapper .why-join-provider-inner {
  margin: 0 102px;
}

@media (max-width: 1399px) {
  .why-join-provider-wrapper .why-join-provider-inner {
    margin: 0;
  }
}

.why-join-provider-wrapper .why-join-provider-inner .why-join-provider-card {
  display: inline-flex;
  padding: 30px 31px 30px 30px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid var(--border-2);
  height: 100%;
  width: 100%;
}

.why-join-provider-wrapper .why-join-provider-inner .why-join-provider-card .icon {
  display: flex;
  width: 64px;
  height: 64px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 33554400px;
  background: #FEF2F2;
}

.why-join-provider-wrapper .why-join-provider-inner .why-join-provider-card .card-content .title {
  color: var(--black);
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 24px;
}

.why-join-provider-wrapper .why-join-provider-inner .why-join-provider-card .card-content P {
  color: var(--text-color-5);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.process-overview-wrapper .process-overview-inner {
  margin: 0 57px;
}

@media (max-width: 1399px) {
  .process-overview-wrapper .process-overview-inner {
    margin: 0;
  }
}

.process-overview-wrapper .process-overview-inner .top-icon-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 318px;
}

@media (max-width: 1399px) {
  .process-overview-wrapper .process-overview-inner .top-icon-stepper {
    display: none;
  }
}

.process-overview-wrapper .process-overview-inner .top-icon-stepper .icon-items {
  border-radius: 100%;
  border: 4px solid var(--white);
  background: var(--theme);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  display: flex;
  width: 64px;
  height: 64px;
  padding: 16px;
  justify-content: center;
  align-items: center;
}

.process-overview-wrapper .process-overview-inner .border-fix {
  width: 1149px;
  height: 4px;
  background: var(--border-2);
  margin: 0 auto;
  margin-bottom: 24px;
}

@media (max-width: 1399px) {
  .process-overview-wrapper .process-overview-inner .border-fix {
    display: none;
  }
}

.process-overview-wrapper .process-overview-inner .process-overview-card {
  display: inline-flex;
  padding: 30px 31px 30px 30px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid var(--border-2);
  height: 100%;
  width: 100%;
}

.process-overview-wrapper .process-overview-inner .process-overview-card .number {
  color: #E5E7EB;
  text-align: center;
  font-family: Inter;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}

.process-overview-wrapper .process-overview-inner .process-overview-card .card-content .title {
  color: var(--black);
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 24px;
}

.process-overview-wrapper .process-overview-inner .process-overview-card .card-content P {
  color: var(--text-color-5);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  max-width: 247px;
}

.provider-benefits-wrapper .provider-benefits-inner {
  padding: 0 150px;
}

@media (max-width: 1399px) {
  .provider-benefits-wrapper .provider-benefits-inner {
    padding: 0;
  }
}

.provider-benefits-wrapper .provider-benefits-inner .left-content .title {
  color: var(--black);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 50px;
}

.provider-benefits-wrapper .provider-benefits-inner .left-content ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #364153;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .provider-benefits-wrapper .provider-benefits-inner .left-content ul li {
    font-size: 16px;
  }
}

.provider-benefits-wrapper .provider-benefits-inner .left-content ul li .icon {
  border-radius: 100%;
  background: var(--theme-2);
  display: flex;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
}

.custom-modal-width {
  max-width: 672px;
  max-height: 703px;
}

.model-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 32px 32px 20px 32px;
}

@media (max-width: 500px) {
  .model-top {
    padding: 20px;
  }
}

.model-top .title {
  color: var(--black);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 30px;
}

.model-top p {
  color: var(--shadow-text);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 450px) {
  .model-top p {
    font-size: 18px;
  }
}

.modal-body {
  padding: 0 40px 40px 40px;
}

@media (max-width: 500px) {
  .modal-body {
    padding: 0 20px 20px 20px;
  }
}

.modal-body .provider-form {
  max-width: 640px;
  overflow: hidden;
}

.modal-body .provider-form .stepper-v2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.modal-body .provider-form .stepper-v2 .step {
  display: flex;
  flex-direction: column;
  min-width: 70px;
  gap: 8px;
  align-items: start;
}

.modal-body .provider-form .stepper-v2 .step p {
  text-align: start;
}

.modal-body .provider-form .stepper-v2 .step.step-2 {
  align-items: center;
}

.modal-body .provider-form .stepper-v2 .step.step-2 p {
  text-align: center;
}

.modal-body .provider-form .stepper-v2 .step.step-3 {
  align-items: end;
}

.modal-body .provider-form .stepper-v2 .step.step-3 p {
  text-align: end;
}

.modal-body .provider-form .stepper-v2 .step .step-number {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E7E7E7;
  color: #AFAFAF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--shadow-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.modal-body .provider-form .stepper-v2 .step .step-number .line {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 256px;
  height: 4px;
  background: #e5e7eb;
  z-index: -1;
  overflow: hidden;
}

.modal-body .provider-form .stepper-v2 .step .step-number .line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  background: #ff6a2a;
  transition: width 0.4s ease;
}

.modal-body .provider-form .stepper-v2 .step p {
  color: var(--shadow-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

@media (max-width: 500px) {
  .modal-body .provider-form .stepper-v2 .step p {
    font-size: 14px;
  }
}

.modal-body .provider-form .stepper-v2 .step.active .step-number {
  background: var(--theme);
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.modal-body .provider-form .stepper-v2 .step.active p {
  color: #111827;
  font-weight: 400;
}

.modal-body .provider-form .stepper-v2 .step.completed .step-number {
  background: #ff6a2a;
  color: #fff;
}

.modal-body .provider-form .stepper-v2 .step.completed .step-number .line::after {
  width: 100%;
}

.modal-body .provider-form .stepper-v2 .step.completed p {
  color: #111827;
  font-weight: 500;
}

.modal-body .provider-form {
  /* FORM */
}

.modal-body .provider-form .form-step {
  display: none;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
}

.modal-body .provider-form .form-step.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.modal-body .provider-form .form-step h4 {
  color: var(--black);
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 30px;
}

.modal-body .provider-form .form-step .form-group label {
  color: var(--black);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 12px;
}

.modal-body .provider-form .form-step .form-group .form-control {
  display: flex;
  height: 48px;
  padding: 0 12px 0 16px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 10px;
  border: 1px solid var(--shadow-text);
  background: var(--white);
}

.modal-body .provider-form .form-step .form-group .form-control:focus {
  box-shadow: none;
  border: 1px solid var(--black);
}

.modal-body .provider-form .form-step .form-group .form-control::-moz-placeholder {
  color: var(--shadow-text);
}

.modal-body .provider-form .form-step .form-group .form-control::placeholder {
  color: var(--shadow-text);
}

.modal-body .provider-form .form-step .custom-radio-group {
  margin-bottom: 20px;
}

.modal-body .provider-form .form-step .custom-radio-group:last-child {
  margin-bottom: 0;
}

.modal-body .provider-form .form-step .image-uploader {
  width: 100%;
}

.modal-body .provider-form .form-step .image-uploader .title {
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 16px;
  margin-top: 20px;
}

.modal-body .provider-form .form-step .image-uploader .upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 2px solid var(--shadow-text);
  text-align: center;
  cursor: pointer;
  padding: 20px;
  transition: border-color 0.3s, background 0.3s;
}

.modal-body .provider-form .form-step .image-uploader .upload-area .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.modal-body .provider-form .form-step .image-uploader .upload-area p {
  color: var(--black);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 4px;
}

.modal-body .provider-form .form-step .image-uploader .upload-area small {
  color: var(--shadow-text);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.modal-body .provider-form .form-step .image-uploader .upload-area:hover {
  border-color: var(--theme);
  background: #f9f9f9;
}

.modal-body .provider-form .form-step .image-uploader .upload-area input[type=file] {
  display: none;
}

.modal-body .provider-form .form-step .image-uploader .preview {
  text-align: center;
  margin-top: 15px;
}

.modal-body .provider-form .form-step .image-uploader .preview p {
  color: #888;
  font-size: 14px;
}

.modal-body .provider-form .form-step .image-uploader .preview img {
  max-width: 100%;
  border-radius: 5px;
  margin-top: 10px;
  display: none;
  aspect-ratio: 1/1;
  max-width: 300px;
  max-height: 300px;
  -o-object-fit: contain;
  object-fit: contain;
}

.modal-body .provider-form .form-step .image-uploader .preview .previewImg {
  background: #4f46e5;
}

.modal-body .provider-form .form-step .bf-btn-wrap {
  margin-top: 50px;
  display: flex;
  justify-content: end;
  align-items: center;
}

.modal-body .provider-form .form-step .bf-btn-wrap.style-two {
  justify-content: space-between;
}

.modal-body .provider-form .form-step .bf-btn-wrap.style-two .white-btn {
  color: var(--white);
}

.modal-body .provider-form .form-step .bf-btn-wrap .next-btn {
  color: var(--white);
}

.agency-booking-wrapper {
  padding-top: 170px;
}

@media (max-width: 767px) {
  .agency-booking-wrapper {
    padding-top: 110px;
  }
}

.agency-booking-wrapper .booking-details-content .booking-card {
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  padding: 24px;
}

.agency-booking-wrapper .booking-details-content .booking-card .card-title {
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.agency-booking-wrapper .booking-details-content .booking-card .section {
  padding: 24px 0;
  border-top: 1px solid var(--shadow-text);
}

.agency-booking-wrapper .booking-details-content .booking-card .section:first-of-type {
  border-top: 0;
}

.agency-booking-wrapper .booking-details-content .booking-card .section:nth-of-type(2) .field {
  margin-bottom: 16px;
}

.agency-booking-wrapper .booking-details-content .booking-card .section-title {
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.agency-booking-wrapper .booking-details-content .booking-card .grid {
  display: grid;
  gap: 16px;
}

.agency-booking-wrapper .booking-details-content .booking-card .grid.two {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 991px) {
  .agency-booking-wrapper .booking-details-content .booking-card .grid.two {
    grid-template-columns: repeat(1, 1fr);
  }
}

.agency-booking-wrapper .booking-details-content .booking-card .field,
.multiple-booking-modal .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.agency-booking-wrapper .booking-details-content .booking-card .field:first-of-type,
.multiple-booking-modal .field:first-of-type {
  margin-bottom: 0;
}

.agency-booking-wrapper .booking-details-content .booking-card .field .select-input,
.multiple-booking-modal .field .select-input {
  position: relative;
}

.agency-booking-wrapper .booking-details-content .booking-card .field .select-input input,
.multiple-booking-modal .field .select-input input {
  width: 100%;
}

.agency-booking-wrapper .booking-details-content .booking-card .field .select-input input[type=date],
.agency-booking-wrapper .booking-details-content .booking-card .field .select-input input[type=time],
.multiple-booking-modal .field .select-input input[type=date],
.multiple-booking-modal .field .select-input input[type=time] {
  padding-right: 16px;
}

.agency-booking-wrapper .booking-details-content .booking-card .field .select-input input[type=date]::-webkit-calendar-picker-indicator,
.agency-booking-wrapper .booking-details-content .booking-card .field .select-input input[type=time]::-webkit-calendar-picker-indicator,
.multiple-booking-modal .field .select-input input[type=date]::-webkit-calendar-picker-indicator,
.multiple-booking-modal .field .select-input input[type=time]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}

.agency-booking-wrapper .booking-details-content .booking-card .field .icon,
.multiple-booking-modal .field .icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #999;
  pointer-events: none;
}

.agency-booking-wrapper .booking-details-content .booking-card .field label,
.multiple-booking-modal .field label {
  color: var(--black);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 8px;
}

.agency-booking-wrapper .booking-details-content .booking-card .field input,
.agency-booking-wrapper .booking-details-content .booking-card .field textarea,
.multiple-booking-modal .field input,
.multiple-booking-modal .field textarea {
  height: 46px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--shadow-text);
  color: var(--shadow-text);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.agency-booking-wrapper .booking-details-content .booking-card .field input:focus,
.agency-booking-wrapper .booking-details-content .booking-card .field textarea:focus,
.multiple-booking-modal .field input:focus,
.multiple-booking-modal .field textarea:focus {
  outline: none;
  border-color: var(--black);
}

.agency-booking-wrapper .booking-details-content .booking-card .field input::-moz-placeholder,
.agency-booking-wrapper .booking-details-content .booking-card .field textarea::-moz-placeholder,
.multiple-booking-modal .field input::-moz-placeholder,
.multiple-booking-modal .field textarea::-moz-placeholder {
  color: var(--shadow-text);
}

.agency-booking-wrapper .booking-details-content .booking-card .field input::placeholder,
.agency-booking-wrapper .booking-details-content .booking-card .field textarea::placeholder,
.multiple-booking-modal .field input::placeholder,
.multiple-booking-modal .field textarea::placeholder {
  color: var(--shadow-text);
}

.agency-booking-wrapper .booking-details-content .booking-card .field textarea,
.multiple-booking-modal .field textarea {
  height: 94px;
  padding: 10px 16px;
}

.agency-booking-wrapper .booking-details-content .booking-card .radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.agency-booking-wrapper .booking-service-summary-content {
  display: flex;
  align-items: center;
  justify-content: end;
}

@media (max-width: 991px) {
  .agency-booking-wrapper .booking-service-summary-content {
    justify-content: start;
  }
}

.agency-booking-wrapper .service-summary {
  width: 655px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  padding: 24px;
}

@media (max-width: 991px) {
  .agency-booking-wrapper .service-summary {
    width: 100%;
  }
}

.agency-booking-wrapper .service-summary .title {
  color: var(--black);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 24px;
}

.agency-booking-wrapper .service-summary .service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--shadow-text, #AFAFAF);
  padding: 16px;
  margin-bottom: 24px;
  position: relative;
}

@media (max-width: 450px) {
  .agency-booking-wrapper .service-summary .service-item {
    flex-direction: column;
    align-items: self-start;
  }
}

.agency-booking-wrapper .service-summary .service-item .left {
  display: flex;
  gap: 12px;
}

.agency-booking-wrapper .service-summary .service-item .left img {
  max-width: 80px;
  max-height: 80px;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 500px) {
  .agency-booking-wrapper .service-summary .service-item .left img {
    display: none;
  }
}

.agency-booking-wrapper .service-summary .service-item .left .info h4 {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  max-width: 233px;
  margin-bottom: 8px;
}

.agency-booking-wrapper .service-summary .service-item .left .info span {
  color: var(#929292);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.agency-booking-wrapper .service-summary .service-item .middle .qty {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.agency-booking-wrapper .service-summary .service-item .right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.agency-booking-wrapper .service-summary .service-item .right .price {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.agency-booking-wrapper .service-summary .service-item .right .remove {
  position: absolute;
  top: 8px;
  right: 8px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
}

.agency-booking-wrapper .service-summary hr {
  border: none;
  border-top: 1px solid var(--shadow-text);
  margin: 24px 0;
}

.agency-booking-wrapper .service-summary .summary-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--shadow-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 12px;
}

.agency-booking-wrapper .service-summary .summary-list li:last-child {
  margin-bottom: 0;
}

.agency-booking-wrapper .service-summary .summary-list li span {
  color: var(--black);
  text-align: right;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.agency-booking-wrapper .service-summary .total {
  display: flex;
  justify-content: space-between;
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.agency-booking-wrapper .service-summary .total .total-price {
  color: var(--black);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.agency-booking-wrapper .service-summary .coupon {
  margin-top: 12px;
}

.agency-booking-wrapper .service-summary .coupon label {
  color: var(--shadow-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.agency-booking-wrapper .service-summary .coupon .coupon-box {
  display: flex;
  gap: 10px;
  margin: 8px 0;
}

.agency-booking-wrapper .service-summary .coupon .coupon-box input {
  flex: 1;
  height: 46px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--shadow-text);
  color: var(--shadow-text);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.agency-booking-wrapper .service-summary .coupon .coupon-box input::-moz-placeholder {
  color: var(--shadow-text);
}

.agency-booking-wrapper .service-summary .coupon .coupon-box input::placeholder {
  color: var(--shadow-text);
}

@media (max-width: 575px) {
  .agency-booking-wrapper .service-summary .coupon .coupon-box input {
    width: 100%;
  }
}

.agency-booking-wrapper .service-summary .coupon .coupon-box button {
  background: #ff5a1f;
  color: #fff;
  border: none;
  padding: 0 18px;
  border-radius: 8px;
  cursor: pointer;
}

.agency-booking-wrapper .service-summary .coupon small {
  color: var(--black-200);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.agency-booking-wrapper .service-summary .note {
  margin-top: 20px;
  width: 100%;
  border-radius: 10px;
  background: #FEEFEA;
  padding: 16px;
}

.agency-booking-wrapper .service-summary .note span {
  max-width: 283px;
  color: #F47B54;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  max-width: 283px;
  display: inline-block;
}

.agency-booking-wrapper .service-summary .note span .strong {
  color: var(#F47B54);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.all-provider {
  padding-top: 170px;
}

@media (max-width: 767px) {
  .all-provider {
    padding-top: 110px;
  }
}

.categories-wrapper.categories-all {
  padding-top: 170px;
}

@media (max-width: 767px) {
  .categories-wrapper.categories-all {
    padding-top: 110px;
  }
}

.all-service-agency {
  padding-top: 170px;
}

@media (max-width: 767px) {
  .all-service-agency {
    padding-top: 110px;
  }
}

.all-blog {
  padding-top: 170px;
}

@media (max-width: 767px) {
  .all-blog {
    padding-top: 110px;
  }
}

.all-blog .section-top-content .section-top-bottom-content .title {
  margin-bottom: 24px;
}

.all-blog .section-top-content .section-top-bottom-content p {
  max-width: 707px;
}

.sign-up-wrapper,
.login-wrapper {
  margin-top: 118px;
}

@media (max-width: 1199px) {

  .sign-up-wrapper,
  .login-wrapper {
    margin: 100px 200px 0 200px !important;
  }
}

@media (max-width: 991px) {

  .sign-up-wrapper,
  .login-wrapper {
    margin: 100px 100px 0 200px !important;
  }
}

@media (max-width: 991px) {

  .sign-up-wrapper,
  .login-wrapper {
    margin: 50px 50px 0 50px !important;
  }
}

@media (max-width: 575px) {

  .sign-up-wrapper,
  .login-wrapper {
    margin: 50px 0 0 0 !important;
  }
}

@media (max-width: 1199px) {
  .auth-left-content {
    margin-bottom: 100px;
  }
}

.auth-left-content .logo {
  margin-bottom: 20px;
}

.auth-left-content .text-content h2 {
  color: var(--black);
  font-size: 48px;
  font-weight: 500;
  line-height: 150%;
  text-transform: capitalize;
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .auth-left-content .text-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 500px) {
  .auth-left-content .text-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 470px) {
  .auth-left-content .text-content h2 {
    font-size: 25px;
    flex-direction: column;
    align-items: start;
  }
}

.auth-left-content .text-content p {
  color: var(--shadow-text);
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}

.auth-left-content .auth-form .form-group .form-control-wrap {
  position: relative;
}

.auth-left-content .auth-form .form-group .form-control-wrap .icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-left-content .auth-form .form-group .form-control-wrap .iti {
  width: 100%;
}

.auth-left-content .auth-form .form-group .form-control {
  display: flex;
  height: 48px;
  padding: 0 12px 0 46px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 10px;
  border: 1px solid var(--shadow-text);
  background: var(--white);
}

.auth-left-content .auth-form .form-group #captcha {
  padding: 0 12px;
}

.captcha-group {
  border: 1px solid var(--shadow-text);
  border-radius: 10px;
}



.auth-left-content .auth-form .form-group .form-control:focus {
  box-shadow: none;
  border: 1px solid var(--black);
}

.auth-left-content .auth-form .form-group .form-control::-moz-placeholder {
  color: var(--shadow-text);
}

.auth-left-content .auth-form .form-group .form-control::placeholder {
  color: var(--shadow-text);
}

.auth-left-content .auth-form .forget-password {
  color: var(--shadow-text);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-align: end;
  margin: 24px 0;
}

.auth-left-content .auth-form .bf-btn-wrap .bf-theme-btn {
  width: 100%;
}

.auth-left-content .social-login p {
  color: var(--shadow-text);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 30px 0;
  text-align: center;
}

.auth-left-content .social-login .social-login-wrap .social-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  gap: 24px;
  align-self: stretch;
  border-radius: 12px;
  border: 1px solid #CBCBCB;
  background: var(--white);
  margin-bottom: 16px;
}

.auth-left-content .social-login .social-login-wrap .social-login-btn .icon {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-left-content .social-login .social-login-wrap .social-login-btn:last-child {
  margin-bottom: 0;
}

.auth-left-content .page-move-btn {
  color: var(--shadow-text);
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  margin-top: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.auth-left-content .page-move-btn a {
  color: var(--theme);
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 10.5%;
  text-underline-offset: 30%;
  text-underline-position: from-font;
}

.image-mask-wrapper {
  position: relative;
}



@media (max-width: 1600px) {
  .image-mask-wrapper .image-mask {
    width: 100%;
    margin: 0;
  }
}

.image-mask-wrapper .icon {
  position: absolute;
  right: 80px;
  top: 0;
  z-index: 10;
}

@media (max-width: 1600px) {
  .image-mask-wrapper .icon {
    right: 0;
    top: 20px;
  }
}

@media (max-width: 1399px) {
  .image-mask-wrapper .icon {
    right: -8px;
    top: 35px;
  }
}

.faq-wrapper .section-top-content .section-top-bottom-content .title {
  max-width: 764px;
  color: var(--black);
  text-align: center;
  font-size: 56px;
  font-weight: 600;
  line-height: 150%;
}

@media (max-width: 1199px) {
  .faq-wrapper .section-top-content .section-top-bottom-content .title {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .faq-wrapper .section-top-content .section-top-bottom-content .title {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .faq-wrapper .section-top-content .section-top-bottom-content .title {
    font-size: 30px;
  }
}

@media (max-width: 500px) {
  .faq-wrapper .section-top-content .section-top-bottom-content .title {
    font-size: 28px;
  }
}

.faq-wrapper .faq-main-content {
  margin: 0 300px;
}

@media (max-width: 1399px) {
  .faq-wrapper .faq-main-content {
    margin: 0 150px;
  }
}

@media (max-width: 1199px) {
  .faq-wrapper .faq-main-content {
    margin: 0 100px;
  }
}

@media (max-width: 991px) {
  .faq-wrapper .faq-main-content {
    margin: 0 50px;
  }
}

@media (max-width: 991px) {
  .faq-wrapper .faq-main-content {
    margin: 0;
  }
}

.faq-wrapper .faq-main-content .accordion .accordion-button::after {
  content: "+";
  background-image: none;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  width: auto;
  height: auto;
  margin-left: auto;
  transform: none;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: #AFAFAF;
  font-size: 20px;
}

.faq-wrapper .faq-main-content .accordion .accordion-button:not(.collapsed)::after {
  content: "–";
}

.faq-wrapper .faq-main-content .accordion .accordion-item {
  padding: 12px 24px;
  border-radius: 8px;
  background: #F9F9F9;
  margin-bottom: 24px;
  box-shadow: none;
  border: none;
}

.faq-wrapper .faq-main-content .accordion .accordion-item .accordion-header {
  --bs-accordion-border-color: none;
}

.faq-wrapper .faq-main-content .accordion .accordion-item .accordion-header .accordion-button {
  background: #F9F9F9;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.faq-wrapper .faq-main-content .accordion .accordion-item .accordion-header .accordion-button .content {
  max-width: 897px;
  color: var(--black);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

@media (max-width: 575px) {
  .faq-wrapper .faq-main-content .accordion .accordion-item .accordion-header .accordion-button .content {
    font-size: 18px;
  }
}

@media (max-width: 470px) {
  .faq-wrapper .faq-main-content .accordion .accordion-item .accordion-header .accordion-button .content {
    font-size: 16px;
  }
}

.faq-wrapper .faq-main-content .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.faq-wrapper .faq-main-content .accordion .accordion-item .accordion-body {
  padding: 0;
  padding-top: 20px;
  color: var(--shadow-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  max-width: 897px;
}

@media (max-width: 575px) {
  .faq-wrapper .faq-main-content .accordion .accordion-item .accordion-body {
    font-size: 14px;
  }
}

@media (max-width: 470px) {
  .faq-wrapper .faq-main-content .accordion .accordion-item .accordion-body {
    font-size: 13px;
  }
}

/* -----------------------------------------
   # Typography RTL under dir="rtl"
----------------------------------------- */
[dir=rtl] body,
[dir=rtl] p,
[dir=rtl] span,
[dir=rtl] a,
[dir=rtl] h1,
[dir=rtl] h2,
[dir=rtl] h3,
[dir=rtl] h4,
[dir=rtl] h5,
[dir=rtl] h6,
[dir=rtl] li {
  text-align: right;
  direction: rtl;
}

[dir=rtl] {
  /* Optional: specific header/text elements */
}

[dir=rtl] .header-section-1 p,
[dir=rtl] .header-section-1 span,
[dir=rtl] .header-section-1 a,
[dir=rtl] .header-section-1 h1,
[dir=rtl] .header-section-1 h2,
[dir=rtl] .header-section-1 h3,
[dir=rtl] .header-section-1 h4,
[dir=rtl] .header-section-1 h5,
[dir=rtl] .header-section-1 h6,
[dir=rtl] .header-section-1 li,
[dir=rtl] .header-section-1 .title,
[dir=rtl] .main-header-wrapper p,
[dir=rtl] .main-header-wrapper span,
[dir=rtl] .main-header-wrapper a,
[dir=rtl] .main-header-wrapper h1,
[dir=rtl] .main-header-wrapper h2,
[dir=rtl] .main-header-wrapper h3,
[dir=rtl] .main-header-wrapper h4,
[dir=rtl] .main-header-wrapper h5,
[dir=rtl] .main-header-wrapper h6,
[dir=rtl] .main-header-wrapper li,
[dir=rtl] .main-header-wrapper .title,
[dir=rtl] .header-right p,
[dir=rtl] .header-right span,
[dir=rtl] .header-right a,
[dir=rtl] .header-right h1,
[dir=rtl] .header-right h2,
[dir=rtl] .header-right h3,
[dir=rtl] .header-right h4,
[dir=rtl] .header-right h5,
[dir=rtl] .header-right h6,
[dir=rtl] .header-right li,
[dir=rtl] .header-right .title,
[dir=rtl] .header__cart p,
[dir=rtl] .header__cart span,
[dir=rtl] .header__cart a,
[dir=rtl] .header__cart h1,
[dir=rtl] .header__cart h2,
[dir=rtl] .header__cart h3,
[dir=rtl] .header__cart h4,
[dir=rtl] .header__cart h5,
[dir=rtl] .header__cart h6,
[dir=rtl] .header__cart li,
[dir=rtl] .header__cart .title,
[dir=rtl] .offcanvas__info p,
[dir=rtl] .offcanvas__info span,
[dir=rtl] .offcanvas__info a,
[dir=rtl] .offcanvas__info h1,
[dir=rtl] .offcanvas__info h2,
[dir=rtl] .offcanvas__info h3,
[dir=rtl] .offcanvas__info h4,
[dir=rtl] .offcanvas__info h5,
[dir=rtl] .offcanvas__info h6,
[dir=rtl] .offcanvas__info li,
[dir=rtl] .offcanvas__info .title,
[dir=rtl] .offcanvas__wrapper p,
[dir=rtl] .offcanvas__wrapper span,
[dir=rtl] .offcanvas__wrapper a,
[dir=rtl] .offcanvas__wrapper h1,
[dir=rtl] .offcanvas__wrapper h2,
[dir=rtl] .offcanvas__wrapper h3,
[dir=rtl] .offcanvas__wrapper h4,
[dir=rtl] .offcanvas__wrapper h5,
[dir=rtl] .offcanvas__wrapper h6,
[dir=rtl] .offcanvas__wrapper li,
[dir=rtl] .offcanvas__wrapper .title {
  text-align: right !important;
  direction: rtl !important;
}

[dir=rtl] .text-start {
  text-align: right !important;
}

[dir=rtl] .hero-left-content {
  margin-right: 130px;
}

[dir=rtl] .tz-itm-title {
  direction: rtl;
  unicode-bidi: bidi-override;
  /* Word sequence thik rakhar jonno */
  display: block;
}

[dir=rtl] .footer-wrapper .footer-right-content .footer-newsletter .form-group .form-control {
  padding: 6px 24px 6px 6px;
}

[dir=rtl] .footer-wrapper .footer-right-content .footer-newsletter .form-group .bf-btn-wrap {
  left: 16px;
  right: auto;
}

[dir=rtl] .banner-wrapper .right-banner {
  flex-direction: row-reverse;
}

[dir=rtl] {
  /* Animation */
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(50%);
  }
}

[dir=rtl] .agency-booking-wrapper .booking-details-content .booking-card .field .icon {
  right: auto;
  left: 14px;
}

[dir=rtl] .provider-profile-wrapper .provider-profile-card .profile-content .stats-area .stat-item p {
  display: flex;
  align-items: center;
  justify-content: center;
}

[dir=rtl] .filter-header .search-box input {
  padding: 7px 25px 7px 12px;
}

[dir=rtl] .filter-header .search-box button {
  left: 6px;
  right: auto;
}

[dir=rtl] .service-details-wrapper .bottom-content .bottom-right-content .price-card .date-time input {
  padding: 12px 16px 12px 20px;
}

[dir=rtl] .service-details-wrapper .bottom-content .bottom-right-content .price-card .date-time .icon {
  left: 20px;
  right: auto;
}

[dir=rtl] .auth-left-content .auth-form .form-group .form-control.iti__tel-input {
  text-align: -webkit-right;
  padding: 0 46px 0 12px;
}

[dir=rtl] .iti__country-container {
  right: 0;
  left: auto;
}

[dir=rtl] .faq-wrapper .faq-main-content .accordion .accordion-button::after {
  margin-left: 0;
}

/* Parent text stays RTL */
[dir=rtl] .tz-itm-title,
[dir=rtl] .tz-sub-tilte,
[dir=rtl] .text_invert-2 {
  direction: rtl;
  text-align: right;
}

/* BUT SplitText generated spans stay LTR */
[dir=rtl] .split-line,
[dir=rtl] .split-line * {
  direction: ltr;
  unicode-bidi: plaintext;
}

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




.service-modal .modal .modal-body {
  padding: 25px !important;
}

.service-modal .btn-close {
  position: absolute;
  top: -12px;
  right: -18px;
  overflow: hidden;
  width: 30px;
  height: 30px;
  text-align: center;

  background: var(--theme);
  color: var(--white);
  opacity: 1;
  border-radius: 50%;
}

.service-modal .btn-close i {
  color: var(--white);
  line-height: 30px;
  font-size: 17px;
}

.service-modal .modal_service_img {
  height: 260px;
  border-radius: 5px;
  overflow: hidden;
}

.service-modal .cart_popup_text .title {
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
}

.service-modal .cart_popup_text {
  margin-top: 20px;
}

.service-modal .service_variants {
  background: var(--red-100);
  padding: 10px;
  border-radius: 10px;
  margin-top: 20px;
}

.service-modal .service_variants .service_varinats_option p {
  font-size: 16px;
  margin-bottom: 0;
}

.service-modal .service_variants .service_variant_add {
  display: flex;
  align-items: center;
  justify-content: start;
}

.service-modal .service_variants .service_variant_add button {
  width: 35px;
  height: 35px;

  color: var(--white);
  background: var(--theme);
  outline: none;
  border: none;
  padding: 0;
}

.service-modal .service_variants .service_variant_add button i {
  color: var(--white);
  line-height: 35px;
  font-size: 15px;

}

.service-modal .service_variants .service_variant_add input {
  width: 60px;
  text-align: center;
  height: 35px;
  border-radius: 6px;
  border: 1px solid #ddd;
  margin: 0px 5px;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  padding: 0;
}



/* From Uiverse.io by 00Kubi */
.radio-inputs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  border-radius: 1rem;
  background: linear-gradient(145deg, #e6e6e6, #ffffff);
  box-sizing: border-box;
  box-shadow:
    5px 5px 15px rgba(0, 0, 0, 0.15),
    -5px -5px 15px rgba(255, 255, 255, 0.8);
  padding: 0.5rem;
  width: 300px;
  font-size: 14px;
  gap: 0.5rem;
}

.radio-inputs .radio {
  flex: 1 1 auto;
  text-align: center;
  position: relative;
}

.radio-inputs .radio input {
  display: none;
}

.radio-inputs .radio .name {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  border: none;
  padding: 0.7rem 0;
  color: #2d3748;
  font-weight: 500;
  font-family: inherit;
  background: linear-gradient(145deg, #ffffff, #e6e6e6);
  box-shadow:
    3px 3px 6px rgba(0, 0, 0, 0.1),
    -3px -3px 6px rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  overflow: hidden;
}

.radio-inputs .radio input:checked+.name {
  background: linear-gradient(145deg, #F15A29, #F15A29);
  color: white;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow:
    inset 2px 2px 5px rgba(0, 0, 0, 0.2),
    inset -2px -2px 5px rgba(255, 255, 255, 0.1),
    3px 3px 8px rgba(59, 130, 246, 0.3);
  transform: translateY(2px);
}

/* Hover effect */
.radio-inputs .radio:hover .name {
  background: linear-gradient(145deg, #f0f0f0, #ffffff);
  transform: translateY(-1px);
  box-shadow:
    4px 4px 8px rgba(0, 0, 0, 0.1),
    -4px -4px 8px rgba(255, 255, 255, 0.8);
}

.radio-inputs .radio:hover input:checked+.name {
  transform: translateY(1px);
}

/* Animation */
.radio-inputs .radio input:checked+.name {
  animation: select 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Particles */
.radio-inputs .radio .name::before,
.radio-inputs .radio .name::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.radio-inputs .radio input:checked+.name::before,
.radio-inputs .radio input:checked+.name::after {
  animation: particles 0.8s ease-out forwards;
}

.radio-inputs .radio .name::before {
  background: #60a5fa;
  box-shadow: 0 0 6px #60a5fa;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.radio-inputs .radio .name::after {
  background: #93c5fd;
  box-shadow: 0 0 8px #93c5fd;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Sparkles */
.radio-inputs .radio .name::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%),
      rgba(59, 130, 246, 0.3) 0%,
      transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.radio-inputs .radio input:checked+.name::after {
  opacity: 1;
  animation: sparkle-bg 1s ease-out forwards;
}

/* Multiple particles */
.radio-inputs .radio input:checked+.name {
  overflow: visible;
}

.radio-inputs .radio input:checked+.name::before {
  box-shadow:
    0 0 6px #F15A29,
    10px -10px 0 #F15A29,
    -10px -10px 0 #F15A29;
  animation: multi-particles-top 0.8s ease-out forwards;
}

.radio-inputs .radio input:checked+.name::after {
  box-shadow:
    0 0 8px #F15A29,
    10px 10px 0 #F15A29,
    -10px 10px 0 #F15A29;
  animation: multi-particles-bottom 0.8s ease-out forwards;
}

@keyframes select {
  0% {
    transform: scale(0.95) translateY(2px);
  }

  50% {
    transform: scale(1.05) translateY(-1px);
  }

  100% {
    transform: scale(1) translateY(2px);
  }
}

@keyframes multi-particles-top {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }

  40% {
    opacity: 0.8;
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px) scale(0);
    box-shadow:
      0 0 6px transparent,
      20px -20px 0 transparent,
      -20px -20px 0 transparent;
  }
}

@keyframes multi-particles-bottom {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }

  40% {
    opacity: 0.8;
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px) scale(0);
    box-shadow:
      0 0 8px transparent,
      20px 20px 0 transparent,
      -20px 20px 0 transparent;
  }
}

@keyframes sparkle-bg {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(2);
  }
}

/* Ripple effect */
.radio-inputs .radio .name::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%),
      rgba(255, 255, 255, 0.5) 0%,
      transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.radio-inputs .radio input:checked+.name::before {
  animation: ripple 0.8s ease-out;
}

.radio-inputs .radio input:checked+.name::after {
  display: none;
}


@keyframes ripple {
  0% {
    opacity: 1;
    transform: scale(0.2);
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}

/* Glowing border */
.radio-inputs .radio input:checked+.name {
  position: relative;
}

.radio-inputs .radio input:checked+.name::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(45deg,
      rgba(59, 130, 246, 0.5),
      rgba(37, 99, 235, 0.5));

  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-glow 1.5s ease-in-out infinite alternate;
}

@keyframes border-glow {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.pac-logo:after {
  background-image: none !important;
  height: 0 !important;
}

.pac-container {
  padding: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15),
    -5px -5px 15px rgba(255, 255, 255, 0.8);
}

.pac-item {
  padding: 5px 10px;
  border-top: 0 !important;
  border-bottom: 1px solid #e6e6e6 !important;
}

.pac-item:nth-last-child {
  border-bottom: 0 !important;
}


.bf-theme-btn-2:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
  opacity: 0.6;
  border: 1px solid #aaa;
}

.iti.iti--allow-dropdown.iti--show-flags.iti--inline-dropdown {
  width: 100%;
}

.iti__tel-input {
  width: 100%;
}

.select2-container {
  border: 1px solid var(--border-2) !important;
  border-radius: 4px !important;
}

.select2-dropdown {
  border: 1px solid var(--border) !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--theme) !important;
  color: white;
}

.select2-container--default .select2-selection--single {
  border: 1px solid var(--shadow-text);
  ;
  border-radius: 4px !important;
  height: 48px !important;
  display: flex !important;
  align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--text-color) !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid var(--border-2) !important;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -9px;
  margin-top: 8px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 10px !important;
  right: 5px !important;
  width: 20px;
}

.select2.select2-container.select2-container--default {
  width: 100% !important;
}

.field {
  position: relative;
}

/* Fix for Select2 scroll jump issue */
.select2-hidden-accessible {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
}

.sub-category .select2-container {
  width: 100% !important;
}

.sub-category .select2-container--default .select2-selection--multiple {
  font-size: 1rem;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: border-color 0.3s;
}

.select2-container--default .select2-results__option--selected {

  background-color: rgba(var(--primary-color-rgb), 0.1) !important;
  color: var(--primary-color) !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: rgba(var(--primary-color-rgb), 0.1) !important;
  color: var(--primary-color) !important;
}

.sub-category .select2-selection__choice {
  border: none !important;
  background-color: var(--primary-color) !important;
  margin-top: 0 !important;
}

.sub-category .select2-search__field {
  margin-top: 0 !important;
}

.sub-category .select2-selection__choice .select2-selection__choice__remove {
  color: var(--white-color) !important;
}

.sub-category .select2-selection__choice .select2-selection__choice__remove:hover {
  background: var(--primary-color) !important;
  color: var(--white-color) !important;
}

.sub-category .select2-selection__choice .select2-selection__choice__display {
  color: var(--white-color) !important;
}

.agency-booking-wrapper .booking-details-content .booking-card .field .select2-search__field {
  height: auto !important;
  padding: 0;
  border: none !important;
  line-height: 1;
  margin-top: 0;
}

.agency-booking-wrapper .booking-details-content .booking-card .field .form-check-input {

  height: auto;
  padding: 7px;
  margin-top: 0 !important;
  border-radius: 3px;
}


.scheduled-list .scheduled-item {
  display: flex;
  background: var(--red-100);
  padding: 12px;
  border-radius: 10px;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
}

.scheduled-list .scheduled-item .form-control.form-control-sm.dynamic-time-picker {
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 7px;
}

.scheduled-list .scheduled-item .remove-btn {
  cursor: pointer;
  font-size: 15px;
  background: var(--theme);
  color: var(--white);
  width: 35px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.scheduled-list .scheduled-item .remove-btn i {
  color: white;
  font-size: 15px;
}

#map {
  height: 300px;
}

.map-wrap {
  border-radius: 8px;
  border: 1px solid #AFAFAF;
  padding: 24px;
  height: 100%;
  min-height: 350px;
}


@media (max-width: 450px) {
  .job-area .google-map {
    padding: 10px;
  }
}

.job-area .google-map iframe {
  width: 100%;
  border-radius: 8px;
}

.job-area .job-card {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 8px;
  border: 1px solid #AFAFAF;
  height: 100%;
}

.job-card__content {
  width: 100%;
}

.job-area .job-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.job-area .job-card .top-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.job-area .job-card__img {
  width: 100% !important;
}

.job-area .job-card__img img {
  width: 100% !important;
  object-fit: cover;
  border-radius: 8px;
  height: 140px !important;
}

.job-area .job-card__title {
  color: #111;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 16px;
}

.job-area .job-card__location {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.job-area .job-card__location span {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.job-area .job-card__desc {
  color: #AFAFAF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 43px;
}

.job-area .job-card__footer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;

}

@media (max-width: 767px) {
  .job-area .job-card__footer {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.job-area .job-card .price {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

@media (max-width: 1600px) {
  .job-area .job-card .price {
    font-size: 18px;
  }
}

.job-area .job-card .bf-theme-btn {
  padding: 8px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
}

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




.job-details-area {
  padding-top: 140px;
}

.job-details-area .job-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 32px;
  align-items: start;
}

.job-details-area .job-image-wrap {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  height: 320px;
  background: #ddd;
  margin-bottom: 28px;
}

.job-details-area .job-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.job-details-area .job-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--theme);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.job-details-area .job-header {
  margin-bottom: 24px;
}

.job-details-area .job-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 10px;
}

.job-details-area .job-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.job-details-area .job-location {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #7a7a7a;
  font-size: 0.88rem;
}

.job-details-area .job-location svg {
  color: var(--theme);
  flex-shrink: 0;
}

.job-details-area .job-time {
  font-size: 0.83rem;
  color: #7a7a7a;
}

.job-details-area .job-poster {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.job-details-area .poster-avatar {
  background: var(--red-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--theme);
}

.job-details-area .poster-avatar img {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
}

.job-details-area .poster-info {
  font-size: 0.82rem;
}

.job-details-area .poster-label {
  color: #7a7a7a;
  display: block;
}

.job-details-area .poster-name {
  color: var(--black);
  font-weight: 600;
}

.job-details-area .divider {
  height: 1px;
  background: #e8e8e8;
  margin: 24px 0;
}

.job-details-area .section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.job-details-area .section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e8e8e8;
}

.job-details-area .section-body {
  color: #7a7a7a;
  font-size: 0.93rem;
  line-height: 1.75;
}

.job-details-area .job-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 88px;
}

.job-details-area .card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e8e8e8;
}

.job-details-area .offer-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.job-details-area .offer-card-sub {
  font-size: 0.83rem;
  color: #7a7a7a;
  margin-bottom: 20px;
}

.job-details-area .btn-place-offer {
  width: 100%;
  background: var(--theme);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(232, 68, 28, 0.30);
}

.job-details-area .btn-place-offer:hover {
  background: #c93a16;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 68, 28, 0.38);
  color: white !important;
}

.job-details-area .info-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.job-details-area .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.job-details-area .info-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #7a7a7a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.job-details-area .info-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
}

.job-details-area .info-value-accent {
  color: var(--theme);
}

.job-details-area .info-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.job-details-area .tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.job-details-area .tag {
  background: var(--red-100);
  color: var(--theme);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ========== RESPONSIVE ========== */

/* Large desktops / small laptops */
@media (max-width: 1199px) {
  .job-details-area .job-layout {
    grid-template-columns: 1fr 360px;
    gap: 24px;
  }
}

/* Tablets – stack to single column */
@media (max-width: 991px) {
  .job-details-area .job-details-area {
    padding-top: 120px;
  }

  .job-details-area .job-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .job-details-area .job-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .job-details-area .job-sidebar .card {
    flex: 1 1 280px;
  }

  .job-details-area .job-image-wrap {
    height: 280px;
  }
}

/* Small tablets / large phones */
@media (max-width: 767px) {
  .job-details-area .job-details-area {
    padding-top: 100px;
  }

  .job-details-area .job-title {
    font-size: 1.55rem;
  }

  .job-details-area .job-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .job-details-area .job-poster {
    margin-left: 0;
  }

  .job-details-area .job-image-wrap {
    height: 220px;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .job-details-area .card {
    padding: 18px;
    border-radius: 10px;
  }

  .job-details-area .info-grid {
    gap: 14px;
  }

  .job-details-area .job-sidebar {
    flex-direction: column;
  }

  .job-details-area .job-sidebar .card {
    flex: 1 1 100%;
  }

  .job-details-area .divider {
    margin: 18px 0;
  }
}

/* Small phones */
@media (max-width: 575px) {
  .job-details-area .job-details-area {
    padding-top: 90px;
  }

  .job-details-area .job-title {
    font-size: 1.35rem;
  }

  .job-details-area .job-image-wrap {
    height: 180px;
    margin-bottom: 16px;
  }

  .job-details-area .job-category-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
    top: 10px;
    left: 10px;
  }

  .job-details-area .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .job-details-area .section-title {
    font-size: 0.93rem;
  }

  .job-details-area .section-body {
    font-size: 0.87rem;
  }

  .job-details-area .btn-place-offer {
    padding: 12px;
    font-size: 0.93rem;
  }

  .job-details-area .tags-row {
    gap: 6px;
  }

  .job-details-area .tag {
    font-size: 0.73rem;
    padding: 4px 10px;
  }
}

/* Extra small phones */
@media (max-width: 400px) {
  .job-details-area .info-grid {
    grid-template-columns: 1fr;
  }
}

#offerModal .modal-body input {
  display: flex;
  height: 48px;
  padding: 10px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 10px;
  border: 1px solid #dee2e6;
  background: var(--white);
  width: 100%;
}

#offerModal .modal-body input:focus,
#offerModal .modal-body textarea:focus {
  box-shadow: none;
  border: 1px solid var(--black);
}



.services-area .services-wrapper .skeleton,
#section_service_list_wrapper .skeleton {
  background-color: #e2e5e7;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  background-size: 200px 100%;
  background-repeat: no-repeat;
  background-position: left -200px top 0;
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
  to {
    background-position: right -200px top 0;
  }
}

.services-area .services-wrapper .skeleton-card,
#section_service_list_wrapper .skeleton-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  padding: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}

.services-area .services-wrapper .skeleton-card .thumb,
#section_service_list_wrapper .skeleton-card .thumb {
  height: 200px;
  width: 100%;
}

.services-area .services-wrapper .skeleton-card .card-content,
#section_service_list_wrapper .skeleton-card .card-content {
  padding: 20px;
}

.services-area .services-wrapper .skeleton-title,
#section_service_list_wrapper .skeleton-title {
  width: 80%;
  height: 20px;
  margin-bottom: 15px;
  border-radius: 4px;
}

.services-area .services-wrapper .skeleton-text,
#section_service_list_wrapper .skeleton-text {
  height: 12px;
  margin-bottom: 10px;
  border-radius: 4px;
}

.services-area .services-wrapper .skeleton-btn,
#section_service_list_wrapper .skeleton-btn {
  width: 100px;
  height: 40px;
  border-radius: 30px;
}

@keyframes shimmer2 {
  100% {
    background-position: -400px 0;
  }
}


#nearest_providers .skeleton-card,
#top_provider_services_area_row .skeleton-card {
  width: 500px;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 16px;
  padding: 14px;
  display: flex;
  gap: 18px;

}

#nearest_providers .skeleton-card .image-placeholder,
#top_provider_services_area_row .skeleton-card .image-placeholder {
  width: 185px;
  height: 150px;
  background: #e5e5e5;
  border-radius: 6px;
  flex-shrink: 0;
  background: linear-gradient(90deg,
      #e5e5e5 25%,
      #f5f5f5 50%,
      #e5e5e5 75%);

  background-size: 400px 100%;
  animation: shimmer2 1.5s infinite linear;

}

#nearest_providers .skeleton-card .content,
#top_provider_services_area_row .skeleton-card .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#nearest_providers .skeleton-card .line,
#top_provider_services_area_row .skeleton-card .line {
  background: #e5e5e5;
  border-radius: 4px;
  height: 20px;
}

#nearest_providers .skeleton-card .line-1,
#top_provider_services_area_row .skeleton-card .line-1 {
  width: 100%;
  height: 30px;
}

#nearest_providers .skeleton-card .line-group,
#top_provider_services_area_row .skeleton-card .line-group {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

#nearest_providers .skeleton-card .line-2,
#top_provider_services_area_row .skeleton-card .line-2 {
  width: 58%;
  height: 22px;
}

#nearest_providers .skeleton-card .line-3,
#top_provider_services_area_row .skeleton-card .line-3 {
  width: 38%;
  height: 22px;
}

#nearest_providers .skeleton-card .line-4,
#top_provider_services_area_row .skeleton-card .line-4 {
  width: 38%;
  height: 22px;
}

#nearest_providers .skeleton-card .line-5,
#top_provider_services_area_row .skeleton-card .line-5 {
  width: 42%;
  height: 22px;
}

#nearest_providers .skeleton-card .line-6,
#top_provider_services_area_row .skeleton-card .line-6 {
  width: 100%;
  height: 40px;
  border-radius: 5px;
}


/* invoice page css */


/* ─────────────────────────────────────────────
           PAGE SHELL
        ───────────────────────────────────────────── */
.inv-page {
  min-height: 100vh;
}

.inv-page .inv-wrap {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ─────────────────────────────────────────────
           HEADER
        ───────────────────────────────────────────── */
.inv-page .inv-header {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 2px 32px rgba(0, 0, 0, .05);
  position: relative;
}

/* Left accent stripe */
.inv-page .inv-header-stripe {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--theme) 0%, var(--orange) 100%);
}

.inv-page .inv-header-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
}

.inv-page .inv-header-left {
  padding: 2.75rem 2.75rem 2.75rem 3.25rem;
  border-right: 1px solid var(--border-2);
}

.inv-page .inv-header-right {
  padding: 2.75rem 2.5rem;
  background: linear-gradient(160deg, #fafafa 0%, var(--red-100) 100%);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Eyebrow */
.inv-page .inv-eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.4rem;
}

.inv-page .inv-badge {
  display: inline-flex;
  align-items: center;
  padding: .28rem .8rem;
  border-radius: 999px;
  background: var(--theme);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.inv-page .inv-ref-num {
  color: var(--text-color-5);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  font-variant-numeric: tabular-nums;
}

/* Title */
.inv-page .inv-title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--header-color);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 1rem;
}

.inv-page .inv-title em {
  font-style: italic;
  color: var(--theme);
}

.inv-page .inv-subtitle {
  color: var(--text-color);
  font-size: .95rem;
  line-height: 1.75;
  max-width: 38rem;
  margin-bottom: 2rem;
}

/* Parties */
.inv-page .inv-parties {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--border-2);
  border-radius: 1rem;
  overflow: hidden;
}

.inv-page .inv-party {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 1.1rem 1.3rem;
  background: #fff;
}

.inv-page .inv-party:first-child {
  border-right: 1px solid var(--border-2);
}

.inv-page .inv-party-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--theme);
  margin-bottom: .2rem;
}

.inv-page .inv-party-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--title-color);
  line-height: 1.3;
}

.inv-page .inv-party-addr {
  font-size: .88rem;
  color: var(--text-color);
  line-height: 1.6;
}

.inv-page .inv-party-divider {
  display: none;
}

/* Right sidebar */
.inv-page .inv-logo-block {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-2);
}

.inv-page .inv-logo {
  max-width: 140px;
  height: auto;
  object-fit: contain;
  display: block;
}

.inv-page .inv-meta-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.inv-page .inv-meta-item {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .9rem 1rem;
  border-radius: .85rem;
  border: 1px solid var(--border-2);
  background: #fff;
}

.inv-page .inv-meta-key {
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--theme);
}

.inv-page .inv-meta-val {
  font-size: .98rem;
  font-weight: 800;
  color: var(--title-color);
}

.inv-page .inv-meta-note {
  font-size: .82rem;
  color: var(--text-color);
  line-height: 1.5;
}

/* ─────────────────────────────────────────────
           BODY GRID
        ───────────────────────────────────────────── */
.inv-page .inv-body-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
  align-items: start;
}

/* ─────────────────────────────────────────────
           TABLE CARD
        ───────────────────────────────────────────── */
.inv-page .inv-table-card {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .04);
}

.inv-page .inv-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border-2);
  background: #fff;
}

.inv-page .inv-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--title-color);
  letter-spacing: -.02em;
  margin-bottom: .2rem;
}

.inv-page .inv-card-sub {
  font-size: .86rem;
  color: var(--text-color);
  margin: 0;
}

.inv-page .inv-pill {
  display: inline-flex;
  align-items: center;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: var(--red-100);
  border: 1px solid rgba(241, 90, 41, .18);
  color: var(--theme);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Table */
.inv-page .inv-table {
  width: 100%;
  border-collapse: collapse;
}

.inv-page .inv-table thead tr {
  background: #f8f8f8;
  border-bottom: 1px solid var(--border-2);
}

.inv-page .inv-table thead th {
  padding: .85rem 1.5rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-color-5);
  white-space: nowrap;
}

.inv-page .inv-table tbody tr {
  border-bottom: 1px solid var(--border-2);
  transition: background .15s;
}

.inv-page .inv-table tbody tr:last-child {
  border-bottom: 0;
}

.inv-page .inv-table tbody tr:hover {
  background: rgba(241, 90, 41, .025);
}

.inv-page .inv-table tbody td {
  padding: 1.1rem 1.5rem;
  font-size: .92rem;
  color: var(--text-color);
  vertical-align: middle;
}

.inv-page .inv-service-name {
  font-weight: 700;
  color: var(--title-color);
}

.inv-page .inv-qty-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: .2rem .55rem;
  border-radius: .4rem;
  background: var(--red-100);
  color: var(--theme);
  font-size: .82rem;
  font-weight: 800;
  border: 1px solid rgba(241, 90, 41, .14);
}

.inv-page .inv-subtotal {
  font-weight: 800;
  color: var(--title-color);
}

.inv-page .inv-group-row td {
  padding: .6rem 1.5rem;
  background: linear-gradient(90deg, rgba(241, 90, 41, .06), rgba(241, 90, 41, .02));
  border-top: 1px solid rgba(241, 90, 41, .12);
  border-bottom: 1px solid rgba(241, 90, 41, .12);
}

.inv-page .inv-group-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--theme);
}

/* ─────────────────────────────────────────────
           SUMMARY CARD
        ───────────────────────────────────────────── */
.inv-page .inv-summary-card {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .04);
}

.inv-page .inv-summary-head {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1.5rem 1.5rem 1.3rem;
  border-bottom: 1px solid var(--border-2);
}

.inv-page .inv-summary-head-accent {
  width: 3px;
  min-height: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--theme), var(--orange));
  flex-shrink: 0;
  margin-top: .15rem;
}

.inv-page .inv-summary-rows {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.inv-page .inv-sum-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border-2);
  font-size: .9rem;
  color: var(--text-color);
}

.inv-page .inv-sum-row:last-child {
  border-bottom: 0;
}

.inv-page .inv-sum-row strong {
  font-weight: 800;
  color: var(--title-color);
  white-space: nowrap;
}

.inv-page .inv-sum-row--discount strong {
  color: #22c55e;
}

/* Total block */
.inv-page .inv-total-block {
  margin: 0 1.25rem 1.25rem;
  padding: 1.25rem 1.25rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--header-color) 0%, #3a2060 100%);
  display: flex;
  flex-direction: column;
  gap: .3rem;
  position: relative;
  overflow: hidden;
}

.inv-page .inv-total-block::after {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(241, 90, 41, .2);
}

.inv-page .inv-total-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}

.inv-page .inv-total-amount {
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────────
           NOTES
        ───────────────────────────────────────────── */
.inv-page .inv-note {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: 1.25rem;
  padding: 1.75rem 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .04);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.inv-page .inv-note-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: .65rem;
  background: var(--red-100);
  border: 1px solid rgba(241, 90, 41, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme);
  flex-shrink: 0;
  margin-top: .1rem;
}

.inv-page .inv-note-title {
  font-size: .95rem;
  font-weight: 800;
  color: var(--title-color);
  margin-bottom: .4rem;
}

.inv-page .inv-note-text {
  font-size: .92rem;
  color: var(--text-color);
  line-height: 1.8;
  margin: 0;
}

/* ─────────────────────────────────────────────
           RESPONSIVE — xl breakpoint (< 1200px)
        ───────────────────────────────────────────── */
@media (max-width: 1199.98px) {
  .inv-page .inv-header-body {
    grid-template-columns: 1fr;
  }

  .inv-page .inv-header-left {
    border-right: 0;
    border-bottom: 1px solid var(--border-2);
    padding: 2.25rem 2.25rem 2.25rem 2.75rem;
  }

  .inv-page .inv-header-right {
    padding: 2rem 2.25rem;
    background: #fff;
  }

  .inv-page .inv-meta-stack {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .inv-page .inv-meta-item {
    flex: 1;
    min-width: 180px;
  }

  .inv-page .inv-body-grid {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────
           RESPONSIVE — md breakpoint (< 992px)
        ───────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .inv-page .inv-parties {
    flex-direction: column;
    border-radius: .85rem;
  }

  .inv-page .inv-party:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--border-2);
  }

  /* Responsive table */
  .inv-page .inv-table thead {
    display: none;
  }

  .inv-page .inv-table,
  .inv-page .inv-table tbody,
  .inv-page .inv-table tr,
  .inv-page .inv-table td {
    display: block;
    width: 100%;
  }

  .inv-page .inv-table tr {
    border-bottom: 1px solid var(--border-2);
  }

  .inv-page .inv-table tr:last-child {
    border-bottom: 0;
  }

  .inv-page .inv-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: right !important;
    padding: .75rem 1.5rem;
  }

  .inv-page .inv-table td::before {
    content: attr(data-label);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--theme);
    text-align: left;
    flex: 0 0 42%;
  }

  .inv-page .inv-group-row td {
    display: block;
  }

  .inv-page .inv-group-row td::before {
    display: none;
  }
}

/* ─────────────────────────────────────────────
           RESPONSIVE — sm breakpoint (< 576px)
        ───────────────────────────────────────────── */
@media (max-width: 575.98px) {


  .inv-page .inv-header {
    border-radius: 1rem;
  }

  .inv-page .inv-header-left {
    padding: 1.5rem 1.25rem 1.5rem 1.75rem;
  }

  .inv-page .inv-header-right {
    padding: 1.5rem 1.25rem;
  }

  .inv-page .inv-title {
    font-size: 2.2rem;
  }

  .inv-page .inv-table-card,
  .inv-page .inv-summary-card,
  .inv-page .inv-note {
    border-radius: 1rem;
  }

  .inv-page .inv-card-head {
    padding: 1.1rem 1.25rem;
  }

  .inv-page .inv-table thead th,
  .inv-page .inv-table tbody td {
    padding-inline: 1.1rem;
  }

  .inv-page .inv-sum-row {
    flex-direction: column;
    align-items: flex-start;
    gap: .2rem;
  }

  .inv-page .inv-meta-stack {
    flex-direction: column;
  }

  .inv-page .inv-note {
    flex-direction: column;
    gap: .75rem;
    padding: 1.25rem;
  }
}



/* payment page design   */


.payment-page .payment-box .payment_gateway_list {
  position: relative;
  max-height: 350px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-gutter: stable;
}

.payment-page .payment-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.payment-page .payment-layout>.payment.payment-page {
  flex: 1 0 auto;
}

.payment-page .payment-layout>.footer-area {
  margin-top: auto;
}

.payment-page .payment-main-card,
.payment-page .payment-side-card {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(255, 255, 255, 0.9) !important;
}

.payment-page .payment-main-card {
  box-shadow: 0 20px 60px rgba(172, 108, 78, 0.12);
}

.payment-page .payment-side-card {
  box-shadow: 0 16px 40px rgba(172, 108, 78, 0.08);
}

.payment-page .payment-title {
  letter-spacing: -0.03em;
  font-weight: 700;
}

.payment-page .payment-pill {
  background: linear-gradient(135deg, #ffb08a, #ff8c61);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 140, 97, 0.25);
}

.payment-page .section-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a5a4d;
  font-weight: 700;
}

.payment-page .payment-option-card {
  cursor: pointer;
  border: 1px solid rgba(215, 173, 155, 0.45);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 245, 0.9));
  border-radius: 1.25rem;
  padding: 1rem 1.1rem;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 8px 20px rgba(172, 108, 78, 0.06);
}

.payment-page .payment-option-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 140, 97, 0.55);
  box-shadow: 0 16px 30px rgba(172, 108, 78, 0.12);
}

.payment-page .selectPayment:checked+.payment-option-card {
  border-color: #ff8c61;
  box-shadow: 0 18px 36px rgba(255, 140, 97, 0.18);
  transform: translateY(-2px);
}

.payment-page .payment-list-image img {
  max-height: 44px;
  max-width: 74px;
  object-fit: contain;
}

.payment-page .payment-summary-list {
  min-height: 220px;
}

.payment-page .payment-summary-list .showCharge>li {
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(215, 173, 155, 0.2);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #6e4f45;
  font-weight: 500;
}

.payment-page .payment-summary-list .showCharge>li:last-child {
  border-bottom: 0;
}

.payment-page .payment-summary-list .showCharge>li span:last-child {
  font-weight: 700;
  color: #1f2937;
  text-align: right;
}

.payment-page .payment-summary-list .showCharge>li.text-center {
  display: block;
  border-bottom: 0;
}

.payment-page .payment-summary-list .no-data-image {
  max-width: 180px;
}

.payment-page .payment-mobile-modal {
  max-width: 100%;
  margin: 1rem auto;
}

.payment-page .paymentModal .modal-content {
  background: rgba(245, 228, 223, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 1.25rem;
  overflow: hidden;
}

.payment-page .paymentModal .modal {
  z-index: 10050;
}

.payment-page .paymentModal .modal-header {
  border-bottom-color: rgba(215, 173, 155, 0.2);
}

.payment-page .payment-modal-open .footer-area {
  z-index: 0;
}

.payment-page .payment-modal-open .paymentModal .modal {
  z-index: 10050 !important;
}


.payment-page .theme-btn {
  display: none;
}

.payment-page .cmn-btn-close {
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}



.payment-page .payment-side-bar {
  top: 1.5rem;
}

@media only screen and (max-width: 991px) {
  .payment-page .for-desktop {
    display: none;
  }

  .payment-page .payment-box .payment_gateway_list {
    max-height: 240px;
  }

  .payment-page .payment-main-card {
    padding: 1.25rem !important;
  }

  .payment-page .paymentModal .modal {
    padding-top: 4.75rem;
  }

  .payment-page .payment-mobile-modal {
    width: calc(100% - 1rem);
    margin: 0 auto;
  }

  .payment-page .payment-mobile-modal .modal-content {
    max-height: calc(100vh - 5.5rem);
    overflow-y: auto;
  }

  .payment-page .payment-mobile-modal .modal-header {
    position: sticky;
    top: 0;
    z-index: 2;
    background: rgba(245, 228, 223, 0.98);
  }
}

.service-card {
  position: relative;
}

.thumb-wishlist:has(.wishlist) {
  position: absolute;
  top: 16px;
  right: 18px;
  background: white;
  padding: 5px;
  border-radius: 10px;
  display: none;
  transition: all 0.3s ease;
}

.service-card:hover .thumb-wishlist {
  display: block;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}


.thumb-wishlist i {
  display: flex;
  color: var(--theme);
}

.thumb-wishlist:has(.active) {
  background-color: var(--theme);
}

.thumb-wishlist .active i {
  color: white;
}

.select2-search__field::placeholder {
    color: transparent !important;
}

.select2-selection__placeholder {
    display: none !important;
}




/* cookie start */
#cookiesAlert {
    display: none; /*Hidden by default, shown by JS*/
    position: fixed;
    bottom: 20px;
    width: 100%;
    z-index: 9999;
}
.cookies-alert {
    position: fixed;
    box-shadow: 0 0 8px #0003;
    right: 0;
    background: #ffffff;
    padding: 20px;
    z-index: 1000;
    align-items: flex-start;
    left: 18px;
    max-width: 550px;
    border-radius: 8px 8px 0 0;
    bottom: 20px;
    border: 1px solid rgba(26, 26, 26, 0.08);
}
.cookie-icon img {
    width: 115px;
}
.cookie-title {
    font-size: 18px;
    margin-bottom: 4px;
    color: #080521;
}

.cookie-text span {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}
.cookie-text span a {
    color: var(--theme) !important;
}
.cookieButton {
    display: flex;
    height: 40px;
    line-height: 55px;
    font-size: 17px;
    padding: 0 5rem;
    margin-right: 10px;
    align-items: center;
    background: var(--theme);
    color: #FFFFFF !important;
    width: auto;
    border-radius: 24px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    justify-content: center;
    box-shadow: 0 10px 10px #0003;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}

.cookieButton:hover{
    color: #FFFFFF !important;
}

.cookieClose {
    color: var(--text-color-1);
}
/* cookie end */


@media screen and (max-width: 767px) {
    .cookies-alert {
        left: 0;
        max-width: 400px;
        right: 0;
        margin: auto;
    }
    .cookie-content {
        text-align: center;
    }
    .cookie-buttons {
        justify-content: center !important;
    }
}


.default-page-content {
    padding-top: 160px;
    padding-bottom: 60px;
}
.privacy-section-inner {
    padding: 50px 50px 10px;
    border: 1px solid var(--border-2);
    border-radius: 20px;
}
.privacy-section-inner p span{
    background: transparent !important;
}
.privacy-section-inner p{
    background: transparent !important;
}
.privacy-section-inner p a{
    color: var(--black) !important;
}
.privacy-section-inner p a:hover{
    color: var(--theme) !important;
}
.privacy-section-inner h4, .privacy-section-inner h5{
    color: var(--black);
    font-size: 25px;
    margin-top: 40px;
    text-transform: capitalize !important;
}
.privacy-section-inner ul{
    background: white !important;
    margin: 7px 0;
}
.privacy-section-inner ul li{
    background: white !important;
    margin: 7px 0;
}

.bf-theme-btn.dashboard-button{
    padding: 12px 14px!important;
}
