/* Fonts */
:root {
  --default-font: "Funnel Sans", sans-serif;
  --heading-font: "Funnel Sans", sans-serif;
  --nav-font: "Funnel Sans", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #15212A; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #4322AA; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #15212A; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #fff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #000; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #4322AA; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f8f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #4322AA;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #4322AA;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


.fixedinrightside {
  transform: rotate(90deg);
  position: fixed;
  top: 50%;
  right: -100px;
  z-index: 999;
}


.fixedinrightside a {
  background: #4322AA;
  color: #fff;
  padding: 13px 27px;
  -webkit-border-radius: 0px 0px 10px 10px;
  border-radius: 0px 0px 10px 10px;
  font-size: 20px;
  
 
box-shadow: rgba(2, 6, 16, 0.2) 0px 2px 16px;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 15px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1B222D;
  font-family: var(--heading-font);
  font-weight: 600;
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #fff;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  /*border-bottom: 1px solid #ddd;*/

}

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

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
  /*filter: brightness(0) invert(1);*/
}
.header .logo.newone img {
  max-height: 50px;
  margin-right: 8px;
  /*filter: none !important;*/
}

.scrolled .header .logo.newone img {
  max-height: 50px;
  margin-right: 8px;
  /*filter: brightness(0) invert(1) !important;*/
}


.header.subheader {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}
.header.subheader .logo.newone img {
  /*filter: brightness(1) invert(1) !important;*/
}
.header.subheader input {
  background-color: #fff;
}
.header.subheader .hero__search__form {
  background-color: #fff;
}
.header.subheader .hero__search__form .hero__search__categories {
  color: #000;
}
.header.subheader .hero__search__form form input {
  color: #000;
}

.header.subheader .hero__search__form form input::placeholder {
  color: #000;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .herobtn .hero-content .hero-btns .btn {
  padding: 6px 12px;
  font-weight: normal;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 11px;
}
   .header .logo img {
  max-height: 30px;
  margin-right: 8px;
}

 .header .logo.newone img {
  max-height: 30px;
  margin-right: 8px;
}
.scrolled .header .logo.newone img {
  max-height: 30px;
  margin-right: 8px;
}
.dashboard button img {
  width: 56px;
}
  .header .navmenu {
    order: 3;
  }
}
@media (max-width: 567px) {
.mobilenone {
  display: none;
}
}
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #10103C;
}
.fixed-top {
  position: fixed;
  top: 38px;
  right: 0;
  left: 0;
  z-index: 1030;
}

.scrolled .fixed-top {
  position: fixed;
  top: 0px;
  right: 0;
  left: 0;
  z-index: 1030;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 6px 20px;
    font-size: 14px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

.herobtn .hero-content .hero-btns .btn {
  padding: 10px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.herobtn .hero-content .hero-btns .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #000;
}
.btn-purple{
  background-color: #4322AA;
  border-radius: 30px !important;
  color: #fff;
}
.btn.btn-gradient {
  background: #68D8FC;
  /*background: linear-gradient(90deg, rgba(104, 195, 234, 1) 0%, rgba(0, 140, 200, 1) 50%);*/
  border-radius: 30px !important;
  color: #fff;
}
.btn.btn-gradient:hover {
  background: #4322AA;
  /*background: linear-gradient(90deg,rgba(0, 140, 200, 1)  0%, rgba(104, 195, 234, 1) 50%);*/
  border-radius: 30px !important;
  color: #fff;
}
body .btn.bgblue {
  border-radius: 30px !important;
  color: #1B222D;
  background-color: #68D8FC !important;
}
.btn.bgblue.bgperple {
  background-color: #C099FF !important;
}
.fs18 {
  font-size: 18px;
}
.herobtn .hero-content .hero-btns .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.herobtn .hero-content .hero-btns .btn-outline {
  background-color: transparent;
 border: 2px solid #fff;
  color: #fff;
}

.herobtn .hero-content .hero-btns .btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.mr-1 {
  margin-right: 5px;
}

.team-image {
  margin-bottom: 25px !important;
}

/*--------------------------------------------------------------
# tab
--------------------------------------------------------------*/
.tabdesign .nav {
  justify-content: center;
  margin-bottom: 30px;
  border: none;
}
.tabdesign .nav button {
  border: 2px solid #ddd;
  border-radius: 30px;
  margin: 0px 8px;
  color: #4B4F5E;
  font-size: 16px;
  font-weight: 600;
}
.tabdesign .nav button.active {
  border-color: #10103c;
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #10103C;
  font-size: 15px;
  padding: 40px 0 0 0;
  position: relative;
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.footer .address p {
  margin-bottom: 0px;
}



.footer .copyright {
  padding: 25px 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}
.footer ul {
  list-style: none;
  padding-left: 0px;
}
.footer ul li {
  margin-bottom: 6px;
}
.footer ul li i {
  margin-right: 8px;
}
.footer .about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}
.footer .cta-button .btn-primary {
  background-color: #4322AA;
  border-color: #4322AA;
  color: #0f0e0d;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .tabdesign .nav button {
  border: 1px solid #ddd;
  border-radius: 30px;
  margin: 0px 6px;
    margin-bottom: 0px;
  color: #4B4F5.herosectionquate {
  background-color: #EDE8FF;
  display: inline-block;
  border-radius: 5px;
  padding: 3px 12px;
}E;
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 10px;
}
.reverce{
  flex-direction: column-reverse !important;
}
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 120px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 82px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 73px;
  }

}

.herosectionquate {
  background-color: #EDE8FF;
  display: inline-block;
 border-radius: 30px;
  padding: 3px 12px;
  color: #4322aa;
}


.header .hero__search__form {
  margin-bottom: 0px;
}

.hero__search__form {
  width: 100%;
  border: 1px solid #B7B7F087;
  position: relative;
  float: left;
  border-radius: 30px;
  background-color: #fff;
  padding: 4px 10px;
  margin-bottom: 25px;
}

.hero__search__form form .hero__search__categories {
  font-size: 16px;
  color: #4B4F5E;
  position: relative;
  padding-left: 10px;
}
.bi-geo-alt {
  padding-right: 8px;
}

.hero__search__form form .hero__search__categories::after {
  position: absolute;
  right: -24px;
  top: 0px;
  height: 30px;
  width: 2px;
  background: #B7B7F087;
  opacity: 0.5;
  content: "";
}
.tags span {
  margin: 0px 5px;
  font-size: 16px;
}

.hero__search__form form .hero__search__categories span {
  position: absolute;
  right: 14px;
  top: 14px;
}

.hero__search__form form input {
  border: none;
  height: 44px;
  font-size: 16px;
  color: #fff;
  padding-left: 20px;
  text-align: left !important;
  display: block;
  background-color: #fff;
}
.hero__search__form form input::placeholder {
  color: #4B4F5E;
}

.hero__search__form form button {
  position: absolute;
  right: 10px;
  top: 3px;
  height: 45px;
}
.site-btn {
  border: none;
  /*background-color: red;*/
  border-radius: 50%;
 width: 45px;
  height: auto;
  background: #68D8FC;
 
}
.hero__search__form i.bi-search {
  font-size: 21px;
  position: relative;
  left: 0px;
  color: #fff;
}



@media (max-width: 1200px) {
  .hero__search__form {
  width: 100%;
  border: 1px solid #ebebeb;
  position: relative;
  float: left;
  border-radius: 30px;
  background-color: #fff;
  padding: 0px 5px;
  margin-bottom: 25px;
}
.bi-geo-alt {
  padding-right: 3px;
}
.hero__search__form form .hero__search__categories {
  

  font-size: 11px;
  color: #000;
 
  position: relative;
}
.hero__search__form form input {
  
  border: none;
  height: 48px;
  font-size: 11px;
  color: #000;
  padding-left: 5px;
}
.hero__search__form form .hero__search__categories::after {
  position: absolute;
    right: -16px;
    top: 0px;
    height: 23px;
}
.hero__search__form form button {
  position: absolute;
  right: 10px;
  top: 3px;
  height: 42px;
}
.site-btn{
  width: 42px;
}
.hero__search__form i.bi-search {
  font-size: 16px;
  position: relative;
  left: 0px;
  color: #fff;
}
.mobile-center {
  text-align: center !important;
}

.mobile-left{
  text-align: left !important;
}
.bgblueanker {
  display: block;
  margin-top: 15px;
}

}
input.middle:focus {
    outline-width: 0;
}
*:focus {
    outline: none;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}
.section-title div p {
  font-size: 16px;
  font-weight: normal;
}
.section-title div .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 300px;
  position: relative;
/*  background-color: var(--background-color);*/
  overflow: hidden;
  padding-bottom: 100px;
  background-image: url(../img/banner.jpg) !important;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
.herosecond {
  padding-top: 90px;
  position: relative;
/*  background-color: var(--background-color);*/
  overflow: hidden;
  padding-bottom: 100px;
  background-image: url(../img/bannertwo.jpg) !important;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.hero .hero-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--heading-color);
}

@media (max-width: 992px) {
  .hero .hero-content h2 {
    font-size: 2.5rem;
  }
  .fixedinrightside a {
  /*background: var(--colorRed);*/
  color: #fff;
  padding: 7px 16px;
  -webkit-border-radius: 0px 0px 0px 0px;
  border-radius: 0px 0px 0px 0px;
  font-size: 15px;
  /*background: rgba(0, 0, 0, 0) linear-gradient(135deg, rgb(247, 39, 73), rgb(247, 131, 32)) repeat scroll 0% 0%;*/
  box-shadow: rgba(2, 6, 16, 0.2) 0px 2px 16px;
  width: 100%;
  display: block;
  text-align: center;
}
.fixedinrightside {
  transform: rotate(0deg);
  position: fixed;
  bottom: 0px;
  top: auto;
  right: 0px;
  z-index: 999;
  width: 100%;
}
}

@media (max-width: 768px) {
  .hero .hero-content h2 {
    font-size: 2rem;
  }
}

.hero .hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--default-color);
}

.hero .hero-content .hero-btns {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-btns {
    flex-direction: column;
  }
}

.hero .hero-content .hero-btns .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-btns .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #000;
}

.hero .hero-content .hero-btns .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.hero .hero-content .hero-btns .btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.hero .hero-content .hero-btns .btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-content .hero-stats {
  display: flex;
  gap: 2.5rem;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

.hero .hero-content .hero-stats .stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.hero .hero-content .hero-stats .stat-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--default-color);
}

.hero .hero-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.hero .hero-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .hero {
    padding: 120px 0 80px 0;
  }

  .hero .hero-content {
    margin-bottom: 3rem;
    text-align: center;
  }

  .hero .hero-content .hero-btns {
    justify-content: center;
  }

  .hero .hero-content .hero-stats {
    justify-content: center;
  }
}


/*--------------------------------------------------------------
# Recently Added Businesses
--------------------------------------------------------------*/

.recentlyaddedbusinesses .productimage span {
  position: absolute;
  left: 0px;
  background-color: #4322AA;
  border-radius: 5px 0px 5px 0px;
  padding: 3px 9px;
  color: #fff;
}
.rattings span i {
  color: #FF5930;
}
.rattings span:nth-child(2) {
  color: #000;
  font-weight: 600;
  margin-left: 5px;
}
.rattings span:nth-child(3) {
  opacity: 0.5;
  margin-left: 2px;
}
.productimage img {
  border-radius: 5px;
  width: 100%;
}
.recentlyaddedbusinesses p span {
  color: #239861;
}

.recentlyaddedbusinesses.Sponsored .productimage span {
  position: absolute;
  left: 0px;
  background-color: #FFBF00;
  border-radius: 5px 0px 5px 0px;
  padding: 3px 9px;
  color: #000;
}
.message {
  display: flex;
  background-color: #F5F5F5;
  padding: 8px 10px;
  border-radius: 5px;
}
.message i {
  margin-right: 10px;

 opacity: 0.7;}
.message p {
  margin-bottom: 0px;
  color: #151C22;
  opacity: 0.7;
}


.faq {
  background-color: #E7EEF3;
}
.faq .team-image {
  background-color: #fff;
  text-align: center;
  padding: 20px 10px;
  border-radius: 5px;
}
.faq .team-image img {
  filter: none !important;
  margin-bottom: 7px;

}
.faq .team-image p {
  margin-bottom: 5px;
}
.bg-gredaint {
  padding: 20px 15px;
  border-radius: 8px;
  background: #4322AA;
  /*background: linear-gradient(90deg,rgba(104, 195, 234, 1) 0%, rgba(0, 140, 200, 1) 50%);*/
}
.playbutton {
  border-radius: 30px;
  margin-bottom: 5px;
}
.playbutton img {
  width: 20px;
  margin-right: 6px;
}

.bounss {
  background-color: #239861 !important;
}
.bounss img {
  width: 16px !important;
  margin-right: 6px;
}

.teamcontent p {
  font-size: 18px;
}
/*--------------------------------------------------------------
# Real Stories from Business Owners Like You
--------------------------------------------------------------*/

.Clientreview {
  padding: 24px;
  background-color: #fff;
  border-radius: 12px;
}
.Clientreview i.bi-quote {
  font-size: 25px;
  opacity: 0.5;
}

.Clientreview .bglight span {
  padding: 10px 15px;
  display: block;
  background-color: #EDE8FF;
  border-radius: 30px;
  margin-bottom: 15px;
  margin-top: 10px;
  text-align: center;
  color: #4322AA;
  font-weight: 500;
  width: fit-content;
}
.Clientreview .border-bottom p {
  height: 133px;
}

.teamleader {
  display: flex;
  align-items: center;
}
.teamleaderimages img {
  width: 44px;
  margin-right: 12px;
}
.teamleadercontent p {
  margin-bottom: 0px;
  font-weight: 600;
}
.border-image img {
  border: 1px solid #ddd;
  padding: 6px;
  border-radius: 4px;
  width: 68px;
}




/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .swiper-wrapper {
  height: auto !important;
}
.team {
  background: #F7EAE4;
  background: linear-gradient(90deg, rgba(247, 234, 228, 1) 0%, rgba(207, 234, 252, 1) 50%);
}

.team .team-slider {
  position: relative;
  padding: 20px 0 0px;
}

.team .team-slider .swiper-pagination {
  bottom: 0;
}
.team-image img {
  filter: grayscale(100%);
}
/*--------------------------------------------------------------
# Grow Your Business Online – For FREE
--------------------------------------------------------------*/
.consultation {
  padding-top: 0px;
  padding-bottom: 0px;
}
.bgblueanker {
  margin-left: 15px;
  font-size: 16px;
  color: #4322AA;
  text-decoration: underline;
}

.consultation .cta-wrapper {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 0px 60px;
  position: relative;
  overflow: hidden;
  background: #E6F9FF;
background: linear-gradient(90deg, rgba(230, 249, 255, 1) 50%, rgba(236, 224, 255, 1) 100%);
}

@media (max-width: 992px) {
  .consultation .cta-wrapper {
    padding: 40px;
  }
}

@media (max-width: 576px) {
  .consultation .cta-wrapper {
    padding: 30px 20px;
  }
  .stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}
}

.consultation .cta-content {
  padding-right: 30px;
}

@media (max-width: 992px) {
  .consultation .cta-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}


.widget ul {
    
    list-style: none;
    margin-left: 30px;
    padding: 0px;
}
.widget ul li {
    position: relative;
    margin-bottom: 5px;
    font-size: 16px;
}
.widget ul li::before {
    content: "";
    background-image: url(../img/listicon.png) !important;
    position: absolute;
    left: -23px;
  top: 5px;
  background-size: 17px;
  width: 27px;
  background-repeat: no-repeat;
  height: 27px;
}


.consultation .cta-content h2 {
  font-size: 2.5rem;
  
  margin-bottom: 30px;
 color: #000;
}

@media (max-width: 768px) {
  .consultation .cta-content h2 {
    font-size: 2rem;
  }
}

.consultation .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--default-color);
}

.consultation .cta-content .cta-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.consultation .cta-content .cta-stats .stat-item .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .consultation .cta-content .cta-stats .stat-item .number {
    font-size: 2rem;
  }
}

.consultation .cta-content .cta-stats .stat-item .text {
  font-size: 0.9rem;
  color: var(--default-color);
}



.consultation .cta-form h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .consultation .cta-form h3 {
    font-size: 1.5rem;
  }
}

.consultation .cta-form p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: var(--default-color);
}
.consultation.footerfly .cta-form .form-control {
  height: 50px;
  padding: 10px 0px;
  border-radius: 0px;
  background-color: transparent !important;
  color: var(--default-color);
  font-size: 14px;
  border: none;
  border-bottom: 1px solid #ddd;
}

.consultation .cta-form .form-control {
  height: 50px;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.consultation .cta-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.consultation .cta-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.consultation .cta-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

.consultation .cta-form button[type=submit] {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.consultation .cta-form button[type=submit]:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .team-slider .swiper-pagination {
  bottom: 0;
}

.testimonials .team-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, #4322AA, transparent 20%);
  opacity: 1;
  margin: 0 5px;
  transition: 0.3s;
}

.testimonials .team-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.testimonials .team-slider .swiper-button-prev,
.testimonials .team-slider .swiper-button-next {
  width: 35px;
  height: 35px;
  background-color: color-mix(in srgb, #4322AA, transparent 20%);
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.testimonials .team-slider .swiper-button-prev:after,
.testimonials .team-slider .swiper-button-next:after {
  font-size: 16px;
}

.testimonials .team-slider .swiper-button-prev:hover,
.testimonials .team-slider .swiper-button-next:hover {
  background-color: var(--accent-color);
}



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  color: #000;
}

.testimonials .testimonial-item:hover {
/*  transform: translateY(-5px);*/
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
  color: #FFD700;
  color: #000;
}

.testimonials .testimonial-item .stars i {
  margin-right: 2px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #000;
}

.testimonials .testimonial-item .testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  color: #000;
}

.testimonials .bi.bi-quote {
  font-size: 45px;
}
.testimonials .testimonial-item .testimonial-footer .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
  font-size: 14px;
  color: #000;
}

.testimonials .testimonial-item .testimonial-footer .quote-icon {
  font-size: 36px;
  color: color-mix(in srgb, var(--accent-color), transparent 70%);
  line-height: 1;
}

.testimonials .testimonial-item .testimonial-footer .quote-icon i {
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .testimonials .testimonial-item {
    padding: 25px 20px;
  }

  .testimonials .testimonial-item p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 45px;
    height: 45px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
    font-size: 16px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
    font-size: 13px;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .testimonials .testimonial-item {
    padding: 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}



.CataogryBox {
  padding-top: 88px;
}

.pr-0 {
  padding-right: 0px;
}


/*--------------------------------------------------------------
# sidebar
--------------------------------------------------------------*/

.sidebar {
  padding: 0px 20px;
}

.sidebar .accordion .accordion-item {
  border: none;
  border-radius: 0px;
}
.sidebar .accordion .accordion-item button {
  padding: 10px 0px;
  background-color: transparent;
  border: none;
  color: #000;
  font-weight: 500;
}
.sidebar .accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: none;
}
.sidebar .accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}
.dividersidebar {
  border: 1px solid #ddd;
  margin-top: 8px;
  margin-bottom: 12px;
}
.sidebar h5 {
  font-size: 16px;
}
.sidebar .accordion .accordion-item .accordion-body {
  padding: 5px 0px;
  border: none;
}
/*--------------------------------------------------------------
# price-range-slider
--------------------------------------------------------------*/

 .price-range-slider {
   width: 100%;
   margin-bottom: 25px;
   
}
 .price-range-slider .range-value {
   margin: 0;
}
 .price-range-slider .range-value input {
   width: 100%;
   background: none;
   color: #000;
   font-size: 16px;
   font-weight: initial;
   box-shadow: none;
   border: none;
   margin: 10px 0 20px 0;
}
 .price-range-slider .range-bar {
   border: none;
   background: #4322AA;
   height: 1px;
   width: 96%;
   margin-left: 8px;
}
 .price-range-slider .range-bar .ui-slider-range {
   background: #4322AA;
}
 .price-range-slider .range-bar .ui-slider-handle {
   border: none;
   border-radius: 25px;
   background: #fff;
   border: 2px solid #4322AA;
   height: 17px;
   width: 17px;
   top: -0.52em;
   cursor: pointer;
}
 .price-range-slider .range-bar .ui-slider-handle + span {
   background: #4322AA;
}
/*--- /.price-range-slider ---*/

/*--------------------------------------------------------------
# breadcrumb
--------------------------------------------------------------*/
ul.breadcrumb {
  list-style: none;
}
ul.breadcrumb li {
  display: inline;
  /*font-size: 15px;*/
}
ul.breadcrumb li+li:before {
  color: black;
  content: "\F285";
  display: inline-block;
  font-family: bootstrap-icons !important;
  top: 2px;
  font-size: 11px;
  margin: 0px 7px;
}
ul.breadcrumb li a {
  color: #000;
  text-decoration: none;
}
ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
}
 


 .borderhard {
  border: 1px solid #ddd;
  position: relative;
}

.borderhard::before {
  content: "";
  background-color: #15212A;
  width: 30%;
  height: 2px;
  position: absolute;
  top: -1px;
}

.recentlyaddedbusinesses.Sponsored .productimage span.newone {
  bottom: 5px;
  font-size: 11px;
  border-radius: 4px;
  left: 5px;
  color: #fff;
}
.bi.bi-arrow-repeat {
  padding-right: 8px;
}

.bgspanbox span {
  padding: 4px 7px;
  background-color: #dddddd85;
  border-radius: 4px;
  margin-right: 8px;
}

.bgspanbox span img {
  margin-right: 5px;
}



.Sponsoredlist {
  border: 1px solid #ddd;
  border-radius: 5px;
}
.secondBox .productimage img {
  border-radius: 0px;
  width: 100%;
}
.secondBox .message {
  display: flex;
  background-color: transparent;
  padding: 8px 10px;
  border-radius: 0px;
  border-top: 1px solid #ddd;
}


/*--------------------------------------------------------------
# sliderarrow
--------------------------------------------------------------*/

.sliderarrow .swiper-button-prev {
  position: absolute;
  top: 25px;
  right: 50px;
  left: auto;
  z-index: 9999999;
}

.sliderarrow  .swiper-button-next{
  position: absolute;
  top: 25px;
  right: 0px;
  left: auto;
  z-index: 9999999;
}
.sliderarrow .team-slider {
  padding-top: 52px;
  position: relative;
  top: -60px;
}


@media (max-width: 567px) {
 .CataogryBox .pr-0 {
  padding-right: 15px;
}
.sliderarrow .team-slider {
  padding-top: 54px;
  position: relative;
 
}
.mobilemargin {
  margin: 15px;
}
.bgspanbox span {
  display: inline-block;
  margin-bottom: 8px;
}
.mobilecenter {
  text-align: center !important;
}
.justify-content-end.mobilecenter {
  justify-content: center !important;
  margin-bottom: 20px;
}
.mobilemt0 {
  margin-top: 0px !important;
}
}

/*--------------------------------------------------------------
# login page
--------------------------------------------------------------*/

.loginacount .hero {
  background-image: none !important;
  background: 281906;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 49%, rgba(236, 237, 234, 1) 49%) !important;
  padding-top: 50px;
  padding-bottom: 0px;
}


@media (max-width: 992px) {
   .mobilecenter img {
    text-align: center;
    margin: 0 auto;
  }
  .loginacount .contact-form-wrapper {
  margin-top: 50px;
}
.loginacount .hero {
  background: 281906;
  background: linear-gradient(90deg, rgb(0, 0, 0) 100%, rgb(236, 237, 234) 49%) !important;
}
}


/*--------------------------------------------------------------
# Create Account
--------------------------------------------------------------*/

.createaccount .hero {
  background-image: none !important;
  background: 281906;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 37%, rgba(236, 237, 234, 1) 37%) !important;
  padding-top: 50px;
  padding-bottom: 0px;
}

.userlist {
  display: flex;
  justify-content: start;
  margin-bottom: 25px;
  position: relative;
}
.userlist::before {
  content: "";
  background-color: #4322AA;
  width: 4px;
  height: 85px;
  top: 41px;
  position: absolute;
  left: 22px;
  z-index: 1;
}
.userlist:nth-child(3)::before {
  display: none;
}
.userlist img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}
.cretelist h5 {
  color: #fff;
}
.cretelist p {
  color: #fff;
}
.checkboxcreate p {
  text-align: left !important;
}
.check {
  position: absolute;
  right: 23px;
  margin-top: -35px;
  color: #49b7fe;
  text-transform: capitalize;
}
.createaccount h3, .createaccount p{
  text-align: left !important;
}

@media (max-width: 992px) {
   .mobilecenter img {
    text-align: center;
    margin: 0 auto;
  }
  .loginacount .contact-form-wrapper {
  margin-top: 50px;
}
.createaccount .hero {
  background: 281906;
  background: linear-gradient(90deg, rgb(0, 0, 0) 100%, rgb(236, 237, 234) 49%) !important;
}
}

/*--------------------------------------------------------------
# single page
--------------------------------------------------------------*/

.popupbox span {
  position: absolute;
  right: 20px;
  bottom: 15px;
  background-color: #fff;
  padding: 8px 15px;
  border-radius: 30px;
}
.mr8{
  margin-right: 8px;
}
.rightside {
  position: absolute;
  right: 15px;
}
h4 i.bi-patch-check-fill {
  color: #33a3d3;
}
.twoslides {
  border: 1px solid #ddd;
  border-radius: 5px;
}
.boxone h4 {
  font-size: 18px;
  color: #000;
}
.twoslides .col-6:nth-child(1) {
  padding-right: 0px !important;
}
.twoslides .col-6:nth-child(2) {
  padding-left: 0px !important;
}
.boxone {
  padding: 7px 15px;
  border-radius: 5px 0px 0px 5px;
}

.bgblue {
  background-color: #4322AA;
}
.bgpink {
  background-color: #C02652;
}
.bggreen {
  background-color: #008561;
}
.btnshowhide {
  padding: 10px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 30px;
  background-color: #fff;
  color: #4322AA;
  border-color: #4322AA;
}
.recentlyaddedbusinesses ul {
  padding-left: 11px;
}
.recentlyaddedbusinesses ul li {
  margin: 11px 0px;
}
.recentlyaddedbusinesses ul li::marker {
  color: #239854;
}
.recentlyaddedbusinesses ul li:nth-child(7)::marker {
  color: red;
}
.p15 {
  padding: 15px;
}
.borderradius8{
  border-radius: 8px;
}

.progrssbar{
  display: flex;
  margin-bottom: 8px;
}
.progrssbar span:nth-child(2) {
  width: 80%;
  background-color: #ededed;
  height: 4px;
  margin: 0px 10px;
  position: relative;
  top: 10px;
  border-radius: 4px;
}
.progrssbar span:nth-child(2)::before {
  content: "";
  background-color: #FF5930;
  position: absolute;
  width: 50%;
  height: 4px;
  left: auto;
}
.selectborder{
  border: 1px solid #ddd !important;
  border-radius: 30px !important;
  padding: 10px 14px !important;
}
.profileimage {
  display: flex;
  align-items: center;
}
.imagep {
  margin-right: 10px;
}
.imageboxtext h6 {
  margin-bottom: 0px;
}
.imageboxtext p {
  margin-bottom: 0px;
}
.Locationbox {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 6px 10px;
  border-radius: 8px;
  z-index: 99;
  position: relative;
  width: 90%;
  margin: -96px auto 0;
}
.Locationbox a.btnshowhide {
  padding: 10px 20px;
  display: flex;
  justify-content: center;
}
.mapboxsub {
  border: 1px solid #ddd;
  padding: 0px;
  border-radius: 8px;
  margin-bottom: 15px;
}
.listing {
  display: flex;
  justify-content: space-between;
  margin: 8px 0px;
  padding-bottom: 10px;
}
.listing i.bi-whatsapp {
  color: #3ea469;
}
.listing i {
  color: #000;
}


@media (max-width: 992px) {
  .twoslides img {
  height: 100%;
  object-fit: cover;
}
.mobilemt10{
  margin-top: 15px;
}
.mpbilept0{
  padding-top: 0px !important;
}
.mpbilemt0{
  margin-top: 0px !important;
}
.progrssbar span:nth-child(2) {
  width: 70%;
}
}

.borderblue{
  border: 1px solid #133b58;
  border-radius: 30px;
}

.Discovereb {
  border: 2px solid #4322AA;
  color: #4322AA;
  font-size: 17px;
}


.listbox ul {
   
    list-style: none;
    margin-left: 30px;
    padding: 0px;
}
.listbox ul li {
    position: relative;
    margin-bottom: 10px;
}

    .listbox ul li::before {
  content: "\F272";
  font-family: bootstrap-icons !important;
  position: absolute;
  left: -30px;
  top: -5px;
  font-size: 23px;

}


/*--------------------------------------------------------------
# profilereview
--------------------------------------------------------------*/


.profilereview .col-md-4 {
  position: relative;
}

.profilereview .col-md-4::before {
  content: "";
  background-color: #ddd;
  width: 1.5px;
  height: 59px;
  position: absolute;
  right: 16px;
}

.profilereview .col-md-4:nth-child(3)::before,.profilereview .col-md-4:nth-child(6)::before,.profilereview .col-md-4:nth-child(7)::before{
  display: none;
}

.profilereview .modal-body {
  text-align: center;
  padding: 0px 15px;
}
.profilereview .modal-body h1 {
  font-weight: 600;
}
.profilereview .modal-body h3 {
  width: fit-content;
  margin: 0 auto;
  background-color: #FFF4DF;
  padding: 5px;
  margin-bottom: 20px;
}
.profilereview .modal-header {
  border: none;
}

.profilereview .modal-footer {
  border: none;
}
.profilereview .modal-footer button {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  width: 100%;
  background-color: #4322AA;
  border: none;
  color: #000;
}


/*--------------------------------------------------------------
# Add Unit
--------------------------------------------------------------*/

.consultation .cta-form h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}
.addunitselect table th {
  background-color: #f8f2e7;
  text-transform: uppercase;
  font-size: 15px;
}
.addunitselect table {
  margin-bottom: 0px;
}
.addunit {
  background-color: #F8F2E7 !important;
  text-align: center !important;
}

.addunit p{
  background-color: #F8F2E7 !important;
  text-align: center !important;
}

.addunitselectaddress i {
  color: #2C9E41;
}

.addunitselectaddress .modal-body {
  padding: 0px 25px;
}
.addunitselectaddress .modal-body h1 {
  font-weight: 600;
  margin-bottom: 15px;
}
.addunitselectaddress .modal-body h3 {
  width: fit-content;
  margin: 0 auto;
  background-color: #FFF4DF;
  padding: 5px;
  margin-bottom: 20px;
}
.addunitselectaddress .modal-header {
  border: none;
}

.addunitselectaddress .modal-footer {
  border: none;
  padding: 15px 0px;
}

.addunitselectaddressbox {
  border-bottom: 1px solid #ddd;
  padding: 5px 0px;
}

.addunitselectaddressbox p{
 margin-bottom: 5px;
}
.addunitselectaddress .hero-content .hero-btns .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.addunitselectaddress .hero-content .hero-btns .btn-outline {
  background-color: transparent;
  border: 2px solid #000;
  color: #000;
}
.addunitselectaddress .hero-content .hero-btns .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #000;
}
.addunitselectaddress .hero-content .hero-btns i {
  color: #000;
}

/*--------------------------------------------------------------
# IN-Office Payment
--------------------------------------------------------------*/



.pr-3 {
  padding-right: 20px;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100%;
}

.btn.dropdown-toggle.btn-light {
  background-color: transparent !important;
  border: 1px solid #ddd !important;
  padding: 12px 15px !important;
  border-radius: 8px !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  transition: all 0.3s ease;
  cursor: pointer !important; 
  width: 100% !important;
}

.divider {
  border-bottom: 1px solid #ddd;
  margin-top: 10px;
  margin-bottom: 20px;
}

span.active {
  background-color: #C9FDCC;
  border-radius: 5px;
  padding: 5px 10px;
  color: #2C9E41;
}

span.editbutton a {
  color: #000;
  font-size: 18px;
  padding: 3px 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  display: inline-grid;
}
.tablebottom p {
  width: 284px;
  display: block;
  font-size: 14px;
  margin-bottom: 0px;
}
.numberlink a {
  padding: 8px 13px;
  color: #000;
  border: beige;
  border-radius: 5px;
}
.numberlink a.active {
  background-color: #4322AA;
  color: #fff;
}
.numberlink a:hover {
  background-color: #4322AA;
}
.btn.btn-dashboard.mr-2 {
  margin-right: 15px;
}
.propertyfrom .contact .contact-form-wrapper::before {
  background-color: #fff !important;
}
.input-elevated{
font-size: 15px;
line-height: 1.5;
border: none;
background: #ECEDEA;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><path fill='%23838D99' d='M13.22 14.63a8 8 0 1 1 1.41-1.41l4.29 4.29a1 1 0 1 1-1.41 1.41l-4.29-4.29zm-.66-2.07a6 6 0 1 0-8.49-8.49 6 6 0 0 0 8.49 8.49z'></path></svg>");
background-repeat: no-repeat;
background-position: 10px 10px;
background-size: 20px 20px;
border-radius: 8px;
width: 100%;
padding: .5em 1em .5em 2.5em;
} 

.input-elevated::placeholder{
  color: #838D99;
}

.input-elevated:focus {
  outline: none;
}
.btn.btn-dashboard {
  background-color: transparent;
  border: 2px solid #000;
  padding: 10px 25px;
}
.btn.btn-dashboardbg {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 10px 25px;
}
.btn.btn-dashboard i{
  margin-right: 10px;
}


.checkboxlogin button {
  width: fit-content !important;
} 
.mr-2 {
  margin-right: 20px;
}

.propertyfrom .contact {
  padding: 0px !important;
  overflow: hidden;
}
#more {display: none;}


.btnbgremove button {
  width: fit-content !important;
  padding: 0px !important;
  background-color: transparent !important;
  text-decoration: underline !important;
}
.chckboxproperty {
  display: flex;
}
.chckboxproperty .checkboxlogin {
  margin-right: 15px;
}


@media (max-width: 992px) {
  .chckboxproperty {
  display: block;
}
}

.propertyeditmodal .firstrow .row {
  border: 2px solid #4322AA;
  border-radius: 5px;
  border-top: 5px solid #4322AA;
  padding-top: 15px;
  padding-bottom: 10px;
}
.propertyeditmodal .modal-body {
  padding: 25px;
}
.firstrow p {
  margin-bottom: 10px;
  font-size: 14px;
}
.propertyeditmodal .contact .contact-form-wrapper {
  padding-left: 0px;
  padding-right: 0px;
}
.invitewizard b {
  display: block;
}
.invitebottomtext p {
  margin-bottom: 0px !important;
  display: block;
  font-weight: 400;
}
.invitebottomtext {
 margin-top: 30px;
}

.form-control:disabled {
  background-color: #ddd !important;
  opacity: 1;
}
.editbuttonview {
  background-color: transparent;
  border: 1px solid #000;
  padding: 6px 15px;
  border-radius: 4px;
}
.editbuttonview a{
  color: #000;
}

/*--------------------------------------------------------------
# Payment
--------------------------------------------------------------*/


.paymentpay {
  border-bottom: 1px solid #ddd;
}
.paymentpay a.btn {
  padding: 15px 30px;
}
.paymentpay a.btn.active {
  border: none;
  background-color: #4322AA;
}
.paymentpaynow.propertyfrom a.btn-dashboard {
  padding: 10px 13px;
  font-size: 14px;
  margin-bottom: 0px;
  display: block;
  width: fit-content;
}
.paymentpaynow h6 {
  font-weight: 600;
}
.paymentpaynowauto label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.6;
}

/*--------------------------------------------------------------
# cash Payment
--------------------------------------------------------------*/
.mapbox {
  padding-left: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-right: 15px;
}


.mainmapbox .col-lg-4 {
  height: 600px;
  overflow-y: scroll;
  padding-right: 0px !important;
}
.mapbox i.bi-pin-map-fill {
  color: #F22C4D;
}
.mapbox h6 {
  font-weight: 600;
}
.mapbox p {
  font-size: 14px;
  opacity: 0.9;
}
.mapbox a {
  color: #000;
  font-size: 15px;
  margin-right: 5px;
}
.mapbox .col-3 {
  position: relative;
}
.mapbox .col-3 span {
  display: block;
  font-size: 14px;
  text-align: right;
}

.mapbox .col-3 a {
  position: absolute;
  bottom: 0px;
  right: 15px;
}

span.active.red {
  background-color: #ff000047;
  border-radius: 5px;
  padding: 5px 10px;
  color: red;
}
.btn.btn-button {
  background-color: #4322AA;
  border: 0px solid #000;
  padding: 10px 25px;
}

/*--------------------------------------------------------------
# Email Configuration table
--------------------------------------------------------------*/
.activetable {
  background-color: #2C9E41;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  position: relative;
  top: 16px;
  left: 18%;
}
.addbutton {
  font-weight: 400 !important;
  width: 134px !important;
}

 .chckboxproperty.emailwithtable .checkboxlogin {
  margin-right: 15px;
  margin-left: 16px;
}
.emailwithtable {
  display: contents;
}

.bi.bi-check-circle-fill {
  color: #2C9E41;
}

.checkcenter {
  text-align: center;
  display: block;
}

.charttable.tablefooter td {
  background-color: #F6F6F6 !important;
  font-weight: 500;
}














.contact {
  padding: 80px 0px 30px 0px;
  overflow: hidden;
}

.contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .contact .contact-info {
    margin-bottom: 40px;
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.contact .contact-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.contact .contact-card h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.contact .contact-card p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.contact .contact-card .contact-details {
  margin-bottom: 25px;
}

.contact .contact-card .contact-details .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact .contact-card .contact-details .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 15px;
  margin-top: 5px;
  flex-shrink: 0;
}

.contact .contact-card .contact-details .contact-item div h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.contact .contact-card .contact-details .contact-item div p {
  font-size: 14px;
  color: var(--default-color);
  margin: 0 0 5px;
  line-height: 1.5;
}

.contact .contact-card .contact-details .contact-item div p:last-child {
  margin-bottom: 0;
}

.contact .contact-card .contact-details .contact-item:last-child {
  margin-bottom: 0;
}

.contact .contact-card .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-card .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-card .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.contact .contact-form-wrapper {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 35px;
  position: relative;
  overflow: hidden;
}

.contact .contact-form-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
}


.contact-form-wrapper h3 {
  text-align: center;
  font-weight: 600;
}

.contact-form-wrapper p {
  text-align: center;
  color: #232323;
}
.contact .contact-form-wrapper .php-email-form .form-group {
  margin-bottom: 15px;
}

.contact .contact-form-wrapper .php-email-form .form-group label {
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 14px;
  display: block;
}
.checkboxlogin .form-check-label {
  margin-left: 10px;
}
.checkboxlogin a {
  color: #000;
  text-decoration: underline;
}

.field-icon {
  margin-top: -36px;
  position: absolute;
  z-index: 999;
  right: 35px;
}


.form-check-input:checked {
  background-color: #4322AA !important;
  border-color: #4322AA !important;
}


.contact .contact-form-wrapper .php-email-form .form-group label small {
  color: red;
}

.contact .contact-form-wrapper .php-email-form .form-group .form-control {
  height: auto;
  border-radius: 8px;
  padding: 12px 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
}

.contact .contact-form-wrapper .php-email-form .form-group .form-control:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: none;
}

.contact .contact-form-wrapper .php-email-form .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-wrapper .php-email-form .form-group textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact .contact-form-wrapper .php-email-form .form-check {
  margin-bottom: 20px;
}

.contact .contact-form-wrapper .php-email-form .form-check .form-check-input {
  margin-top: 0.3em;
}

.contact .contact-form-wrapper .php-email-form .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.contact .contact-form-wrapper .php-email-form .form-check .form-check-input:focus {
  box-shadow: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.contact .contact-form-wrapper .php-email-form .form-check .form-check-label {
  color: var(--default-color);
  font-size: 14px;
  padding-left: 5px;
}

.contact .contact-form-wrapper .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
}

.contact .contact-form-wrapper .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  /*transform: translateY(-3px);*/
}




@media (max-width: 992px) {

  .contact .contact-card,
  .contact .newsletter-card,
  .contact .contact-form-wrapper {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }

  .contact .contact-card h3 {
    font-size: 20px;
  }

  .contact .newsletter-card h3 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}


/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
.dashboard .dropdown-toggle::after {
  display: none;
}
.dashboard button {
  background-color: transparent;
  border: none;
}
.dashboard button i {
  margin-right: 8px;
  color: #4322AA;
  font-size: 20px;
}
.dashboard button:hover {
  background-color: transparent !important;
  border: none;
}
.homemenu {
  padding-left: 12px;
  padding-right: 12px;
}
.homemenu i {
  margin-right: 8px;
}
.divider {
  border-bottom: 1px solid #ddd;
  margin-top: 7px;
  margin-bottom: 7px;
}
.dashboardmain .about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}
.dashboardmain .about-content p {
  color: #fff;
}
.dashboardmain {
  background-color: #281906;
}

.dashboardmain .contact .contact-form-wrapper {
  background-color: transparent;
  border-radius: 0px;
  box-shadow: none;
  padding: 0px;
  position: relative;
  overflow: hidden;
}

.dashboardmain .contact .contact-form-wrapper .php-email-form .form-group label {
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  font-size: 14px;
  display: block;
}
.dashboardmain .contact .contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0px;
  background-color: var(--accent-color);
}
.dashboardmain {
  background-color: #281906 !important;
  background-image: none !important;
}

.dashboradpayment {
  background-color: #fff;
  border-radius: 10px;
  padding: 0px 0px 0px;
  border: 1px solid #ddd;
  position: relative;
  overflow: hidden;
  box-shadow: 10px 0px 25px rgba(0, 0, 0, 0.05);
}
.payment {
  background-color: #fff;
  padding: 16px 15px 5px;
  border-bottom: 1px solid #ddd;
}

.payment .contact-form-wrapper::before{
  display: none;
}

.payment .contact-form-wrapper{
  background-color: #fff;
  border-radius: 0px;
  padding: 0px;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}
.dashboardSubbox {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}
.dashboardSubbox::before {
  content: "";
  background-color: #4D8AEE;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 9px;
  top: 6px;
  border-radius: 3px;
}

.dashboardSubbox:nth-child(2)::before {
  background-color: #37A0CC;
}
.dashboardSubbox:nth-child(3)::before {
  background-color: #FE7E00;
}
.dashboardSubbox:nth-child(4)::before {
  background-color: #931F4D;
}
.dashboardSubbox:nth-child(5)::before {
  background-color: #339144;
}


.dashboardSubbox p {
  margin-bottom: 10px;
}
.dashboardSubbox h6 {
  font-weight: 600;
}
.chartbox {
  padding: 25px 15px 20px;
}
.chartbox.tablelist {
  padding: 0px 0px 0px;
}
.paymentsbytype {
  margin-top: -142px;
}
.chartbox th:nth-child(1) {
  background-color: #fff;
}
.chartbox th:nth-child(2) {
  background-color: #4D8AEE;
}
.chartbox th:nth-child(3) {
  background-color: #37A0CC;
}
.chartbox th:nth-child(4) {
  background-color: #FE7E00;
}
.chartbox th:nth-child(5) {
  background-color: #931F4D;
}
.chartbox th:nth-child(6) {
  background-color: #339144;
}
.chartbox th {
  color: #fff;
  font-size: 13px;
}
.chartdate td {
  background-color: #F8F2E7 !important;
  font-size: 13px;
}
.chartdate td {
  background-color: #F8F2E7 !important;
  font-size: 13px;
  position: relative;
  padding: 8px 18px;
  text-transform: uppercase;
}
.chartdate td span:nth-child(1) {
  float: left;
  
}
.chartdate td span:nth-child(2) {
  float: right;
}
.charttable.sevannumber td:nth-child(7) {
    width: 175px;
}
.charttable.edittable td:nth-child(10) {
    width: 135px;
}
.charttable.edittable td:nth-child(9) {
    width: 100px;
}
.charttable td {
  background-color: #fff !important;
  font-size: 13px;
  position: relative;
  padding: 8px 18px
}
.charttable td span:nth-child(1) {
  float: left;
}
.charttable td span:nth-child(2) {
 float: right;
}
.dashboradpayment table {
  margin-bottom: 0px;
}
.dashboradbg{
  background-color: #ECEDEA;
}
.dashboradbggradint{
  background: 281906;
background: linear-gradient(180deg, rgba(0, 0, 0, 0) 14%, rgba(236, 237, 234, 1) 14%);
}

@media (max-width: 992px) {

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

.chckboxproperty.emailconfig {
  display: contents;
}
.contact .contact-form-wrapper.p-0::before{
  display: none;
}
.contact .contact-form-wrapper.p-0{
  border-radius: 0px;
}
.form-check-input {
  border: var(--bs-border-width) solid #090909;
}

.contact-form-wrapper.resetemail p,.contact-form-wrapper.resetemail h3 {
  text-align: left;
  color: #232323;
}
.resetemail .btn.btn-dashboard {
  background-color: #f1c76d;
  border: 2px solid #f1c76d;
  padding: 10px 25px;
}
.createnewpass {
  display: flex;
  align-items: center;
}
.createnewpass div {
  width: 80px;
  height: 5px;
  background-color: red;
  display: flex;
  border-radius: 2px;
  margin-bottom: 5px;
}
.createnewpass div {
  margin-right: 14px;
}
.createnewpass div:nth-child(4) {
  background-color: #ddd;
}
.createnewpass p {
  margin-bottom: 8px;
}
.paynow .btn.btn-dashboard {
  background-color: transparent;
  border: 2px solid #000;
  padding: 4px 16px;
  font-size: 14px;
}
.inner ul.dropdown-menu {
  height: 90px;
}
.paymenthistorylistone {
  display: flex;
}
.paymenthistorylistone p {
  margin-right: 30px;
  margin-bottom: 10px;
}
.paymenthistorylistone {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}
.paymenthistorylist .btn.btn-dashboard {
  background-color: transparent;
  border: 2px solid #ddd;
  padding: 7px 20px;
  color: #0278C7;
}
.paymenthistorylist {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.paymenthistorylistbottom ul {
  padding-left: 10px;
}

@media (max-width: 1024px) {
.tablemobile .col-lg-2 {
  margin-bottom: 15px;
}
.tablemobile .col-lg-7 {
  margin-bottom: 15px;
}
.numberlink a {
  padding: 3px 9px;
  color: #000;
  border: beige;
  border-radius: 5px;
  font-size: 12px;
}
.tablemobile .col-lg-7 {
  margin-bottom: 15px;
}
.tablemobile .btn.btn-dashboard {
  background-color: transparent;
  border: 2px solid #000;
  padding: 7px 18px;
  font-size: 11px;
}
.tablemobile .col-lg-3 .justify-content-end {
  justify-content: center !important;
}
}
@media (max-width: 767px) {

  .paymenthistorylistone {
  display: inline-block;
}
.paymenthistorylistone p {
  margin-right: 0px;
  margin-bottom: 10px;
}

}

.firstrow {
  border: 2px solid #4322AA;
  border-radius: 5px;
  border-top: 5px solid #4322AA;
  padding-top: 15px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.viewtransaction tr td:nth-child(1) {
  width: 165px;
}

.viewtransaction tr td:nth-child(2) {
  padding: 4px 15px;
}
.tablecompletepayment td:nth-child(3) {
  text-align: end;
}
.tablecompletepayment p {
  margin-top: 10px;
  padding-right: 15px;
}
.paymenth p {
  background-color: #ECEDEA;
  display: inline-block;
  padding: 10px 25px;
  margin-bottom: 0px;
}
.paymentpadd {
  border: 1px solid #ddd;
  border-radius: 5px;
}
.paymenth {
  border-bottom: 1px solid #ddd;
}
.paymentbox {
  padding: 15px;
}


.custom-file-button input[type="file"] {
   margin-left: -2px !important;
   background-color: #4322AA;
   border-radius: 5px;
}
 .custom-file-button input[type="file"]::-webkit-file-upload-button {
   display: none;
}
 .custom-file-button input[type="file"]::file-selector-button {
   display: none;
}
 .custom-file-button label {
  background-color: #4322AA !important;
   cursor: pointer; 
}
 .custom-file-button:hover label {
  background-color: #4322AA !important;
   cursor: pointer; 
}
.filetab {
  display: flex;
  align-items: center;
}
.filetab i {
  font-size: 25px;
  margin-right: 15px;
}
.filetab .input-group {
  background-color: #4322AA;
  border-radius: 5px;
}
.filemanager {
  padding: 10px 10px;
  border: 1px solid #ddd;
  border-radius: 5px 5px 0px 0px;
}

/* Main Tabs */
.filemanagersecond label {
  background-color: #1b2e3c;
  color: #ffffff;
  display: inline-block;
  cursor: pointer;
  padding: 10px;
  font-size: 14px;
}

.filemanagersecond li {
  list-style: none;
}
.filemanagersecond {
  padding: 0px 10px;
  border: 1px solid #ddd;
  border-radius: 0px 0px 5px 5px;
  border-top: none;
}
.filemanagersecond .filebg {
  margin-bottom: 0px;
  background-color: #ECEDEA;
  padding: 7px;
}
.filemanagersecond .filebg i {
  margin-right: 8px;
}
.filemanagersecond .subfilebg li button.active {
  background-color: #ECEDEA;
}
.filemanagersecond .subfilebg li button {
  color: #000;
}
.filemanagersecond .subfilebg li button {
  display: block;
  width: 100%;
  text-align: left;
}
.toparrow span {
  padding: 7px 15px;
  border: 1px solid #ddd;
  border-bottom: none;
  border-top: none;
  margin-right: 15px;
}