@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
/*--------------------------------------------------------------
# Theme Variables
--------------------------------------------------------------*/
:root {
  --primary: #9786c0;
  --primary-dark: #6f5fa7;
  --bg-light: #f4f1fb;
  --text-dark: #2e2a3b;
  --text-muted: #000000 !important;
  --white: #ffffff;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-dark);
}

a {
  color: var(--primary);
  text-decoration: none;
}
span{
  color: var(--primary);
}
.error{
  color: var(--primary);
}
.card-header{
  background-color: var(--text-dark)!important;
}
.form-group label{
  color: var(--text-dark);
}

a:hover {
  color: var(--primary);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  color: #9786c0;
}

.register{
  margin-top: 72px;
  background-color: var(--primary-light);
}
.tag{
  color: var(--primary) !important;
}

.float{
	position:fixed;
	width:45px;
	height:45px;
	bottom:65px;
	right:20px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
  z-index:100;
}
.float:hover{
  color: white;
}

.my-float{
	margin-top:16px;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--primary-dark);
    color: #fff;
}

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

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #2e2a3b;
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
  
#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
  
#header .logo a {
    color: rgb(255, 255, 255);
}

span {
    color: var(--primary);
}

#header .logo img {
    max-height: 40px;
}
#header .dropdown img {
    max-height: 20px;
    width: 25px;
}

#header .dropdown .badge {
  position: absolute;
  font-weight: 500;
  top: -1px;
  right: -2px;
  padding: 5px 7px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
}

#header .dropdown li h2 {
    padding: 5px 20px;
    font-size: 15px;
    font-weight: 500;
    text-transform: none;
    color: var(--text-dark);
    text-align: center;
}

#header .dropdown li p{
    font-size: small;
    text-align: center;
    padding: 3px 9px 0 9px !important;
    font-weight: 100;
}
@media screen and (max-width: 768px) {
  #header .dropdown .badge {
    position: absolute;
    font-weight: 500;
    top: -1px;
    right: 85%;
    padding: 5px 7px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
  }
} 
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

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

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s;
}

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

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

.navbar .wallet ul {
  display: block;
  position: absolute;
  left: -60px;
  top: calc(100% + 30px);
  margin: 1px;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid var(--primary);
}
.navbar .dropdown ul {
    display: block;
    position: absolute;
    /* left: -80px; */
    top: calc(100% + 30px);
    margin: 1px;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-top: 2px solid var(--primary);
}

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

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: var(--text-dark);
}

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

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

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

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

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

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
    left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
    }
}

/* ---------------------------------
 notification 
-------------------------------------- */
ul .notifications {
  min-width:520px; 
  right: -80px !important;
 }
 
 .notifications-wrapper {
   /* overflow:auto; */
   max-height:460px;
   background:rgb(235, 234, 234);
 }
 .notifications-wrapper .notification-item i{
  font-size: 16px !important;
  padding-right: 10px;
 }
   
 .notifications-wrapper a{
  padding: 10px 0 0 0 !important;
 }
 .notifications-wrapper a:hover{
  color: var(--text-dark) !important;
  box-shadow: 0px 0px 30px rgba(54, 55, 58, 0.25);
 }
 /* .notifications-wrapper a:visited{
  background-color: white;
 } */
 .menu-title {
   font-size:1.2rem;
   display:inline-block;
   color: var(--text-dark);
 }
 
 .item-info{
   font-size:.9rem;
   display:inline-block;
   color: var(--text-muted);
 }
  
 .notification-heading {
  padding:2px 10px;
  text-align: center;
 }
 .notification-footer  {
   max-height: 40px;
 }
 .dropdown .notifications .notification-footer a{
  justify-content: center !important;
 }
 .item-title {
  font-size:1rem;
  color: var(--text-dark);
 }
   
 .notification-item {
   padding: 10px 20px 0 20px;
   display: flex;
   justify-content: left;
   align-items: baseline;
 }
 .notification-item .space{
  padding-left: 10px;
 }

 /* notification page */

.notifications .card {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin: 1rem 2rem 0 13%;
  padding: 20px;
  max-width: 750px;
  justify-content: space-between;
  box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66) ;
}
.card--unread {
  border-left: 4px solid var(--primary);
}
.notifications a{
  color: var(--text-dark);
}
.notifications a:hover{
  color: var(--text-dark) !important;
  box-shadow: 0px 0px 30px rgba(54, 55, 58, 0.25);
}
.notifications .notification-list_content .notification-list_img img {
  height: 48px;
  width: 48px;
  border-radius: 50px;
  margin-right: 20px;
}
.notifications .notification-list_content {
  display: flex;
}
.notifications .notification-list_content .notification-list_detail p {
  margin-bottom: 5px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .notifications .card {
    margin: 0rem 1px 2px 1px;
  }
  ul .notifications {
    max-width:350px; 
    right: -80px !important;
  }
}
/**-----------------------------------------
* Mobile Navigation 
---------------------------------------------*/
.mobile-nav-toggle {
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    color:white !important
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
    display: block;
    }

    .navbar ul {
    display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--text-muted) !important;
}


.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--text-dark);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: var(--primary);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: var(--primary);
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

@media screen and (max-width: 768px) {
  .navbar-mobile ul {
    background-color: rgb(0, 0, 0);
    /* max-height: 430px; */
  }
  .navbar-mobile a,
  .navbar-mobile a:focus {
      color: rgb(255, 255, 255);
      font-weight: 200;
  }
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 75vh;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: relative;
}
#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    bottom: 60px;
    top: 70px;
    left: 55px;
    right: 55px;
}

#hero .carousel-content {
    background: rgba(4, 4, 4, 0.7);
    padding: 20px;
    color: #fff;
    border-top: 5px solid var(--primary);
}

#hero .carousel-content h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
}

#hero .btn-get-started {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid var(--primary);
}

#hero .btn-get-started:hover {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.6);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background: var(--primary);
}

@media (min-width: 1024px) {
    #hero .carousel-content {
    width: 60%;
    }

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
    width: 5%;
    }
}

@media (max-width: 992px) {
    #hero .carousel-container {
    top: 58px;
    }

    #hero .carousel-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
    }

    #hero .carousel-content p {
    font-size: 15px;
    }
}

@media (max-height: 500px) {
  #hero {
  height: 120vh;
  }
}
@media screen and (max-width: 767px){
  #hero .carousel,
  #hero .carousel-inner,
  #hero .carousel-item,
  #hero .carousel-item::before {
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center !important;
    background-position-y: top !important;
  }
  #hero .carousel-control-next-icon,
  #hero .carousel-control-prev-icon {
      display: none !important;
  }
}




/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: var(--primary);
  min-height: 40px;
  margin-top: 72px;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
  color: #fff;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
}

.breadcrumbs ol a {
  color: #fff;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

@media (max-width: 991px) {
  .breadcrumbs {
    margin-top: 58px;
  }

  /* .breadcrumbs .d-flex {
    display: block !important;
  } */

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}
@media screen and (max-width: 768px){
  .breadcrumbs h2 {
    font-size: 18px;
    font-weight: 250;
    max-width: 40%;
  }
  .breadcrumbs ol {
    font-size: 14px !important;
    /* max-width: 50%; */
  }
  .breadcrumbs .breadcrumbs_body{
    justify-content: baseline;
    align-items: baseline !important;
    padding-top: 10px;
  }
}





/*--------------------------------------------------------------
# About Us ----- index page
--------------------------------------------------------------*/
.about-us .content h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
  /* color: var(--primary); */
}

.about-us .content h3 {
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
}

.about-us .content ul {
  list-style: none;
  padding: 0;
}

.about-us .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.about-us .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: var(--primary);
}

.about-us .content p:last-child {
  margin-bottom: 0;
  text-align: justify;
}

hr{
  width: 75%;
  margin-left: auto !important;
  margin-right: auto !important;
  background-color: var(--primary-dark);
  height:4px;
  color: var(--primary);
}

@media screen and (max-width: 768px) {
  .about-us .contact-address{
    padding-top: 10%;
  }
  .about-us{
    padding: 30px 0 !important;
  }
  .about-us .content h2 {
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;

  }

}




/*--------------------------------------------------------------
# Services section ----- index page
--------------------------------------------------------------*/
.services_main .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: ease-in-out 0.3s;
}

.services_main .icon-box:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}

.services_main .icon-box  img{
  
  height: 40px;
  width: 50px;
  display:flex
}

.services_main .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.services_main .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding-left: 30px;
  line-height: 1;
  font-size: 16px;
}

.icon-box h3{
  color: var(--text-dark);
  transition: ease-in-out 0.2s;
}

.services_main .icon-box h3 a {
  color: var(--text-dark);
  transition: ease-in-out 0.2s;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
@media (max-height: 500px) {
  .a .services_main .icon-box {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #fff;
    color: var(--text-dark);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: ease-in-out 0.3s;
  }
  
  .a .services_main .icon-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
  }
  
}






/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section  {
  padding: 10px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary);
  bottom: 0;
  left: calc(50% - 25px);
}





/* ---------------------------------- 
  pop-up card  for pin code ----- services
---------------------------------- */
.model h6{
    color: black;
}
.modal-header{
    color:white;
    background-color: #2e2a3b !important;
}
.modal-header .btn-close{
    background-color: var(--white) !important;
}

.modal-body .sub-btn{
    padding-top: 10px;
    float: right;
}
  




/* ------------------------------------------
   pop-up card  for vendor -----services
------------------------------------------ */
#vendor .card {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin: 2rem 10% 2rem 10%;
  /* margin: 1rem 0 2rem 5rem; */
  /* margin: 1rem 0 2rem 0; */
  max-width: 900px !important;
  min-height: 150px !important;
  justify-content: space-between;
  box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66) ;
}
#vendor .card:hover{
  transform: scale(1.010);
  box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}
/* #vendor .card span {
  font-size: medium;
  color: rgb(255, 255, 255);
  padding: 6px;
  border-radius: 15px;
  background-color: #07d312;
} */
#vendor .card-body{
  margin-left: 60px;
}
#vendor .card-name {
  text-align: left !important;
  font-weight: bold;
  font-size: x-large;
}
#vendor .card-text{
  font-size: large;
}
#vendor .card-text s {
  font-size: medium;
}

#vendor .card img {
  width: 40%;
  max-height: 180px;
  border-top-right-radius: 0;
  border-bottom-left-radius: calc(0.25rem - 1px);
}

#vendor a{
    color: black;
    
}
#vendor a:hover{
    text-decoration: none;
    color: black;
}

/* #vendor .modal-body{
    height: 85vh;
    overflow-y: auto;
} */
@media (max-width: 600px) {
    #vendor .card {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        margin: 2rem 0 2rem 0;
        max-width: 900px !important;
        min-height: 130px !important;
        justify-content: space-between;
        box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66) ;
    }
    #vendor .modal-body{
        height: 50vh;
        overflow-y: auto;
    }
}




/* -------------------------------------- 
    buttons
---------------------------------------- */
.btn{
    /* display: contents !important; */
    color: white;
    background-color: var(--primary);
    border: var(--text-dark) !important;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 50px !important;
}
.btn:hover{
    color:white;
    background-color: var(--text-dark) !important;
}
/* Remove increment/decrement arrows from PIN input */
.form-control-pin::-webkit-outer-spin-button,
.form-control-pin::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-control-pin {
    -moz-appearance: textfield; /* For Firefox */
}





/* --------------------------------- 
    service card  --- service page
----------------------------------- */

.service_page .card {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
  margin-top: 20px !important;
  box-sizing: border-box !important;
  border-radius: 5px !important;
  background-clip: padding-box !important;
  min-height:280px;
  margin-bottom: 10px;
  width: auto;
}

.service_page .card:hover{
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
  /* transition: all 1s ease; */

}

.service_page .card .card-title {
  color: var(--text-dark) !important;
  font-size: 20px !important;
  text-transform: uppercase !important;
  text-align: center;
  padding: 3%;
  /* font-weight: 200; */
  font-family: 'Poppins', sans-serif;
}

.service_page .card .card-image {
  position: relative !important;
  overflow: hidden !important;
}

.service_page .card .card-image img {
  border-radius: 5px 5px 0 0 ;
  background-clip: padding-box ;
  width: 100% !important;
  height:230px !important;
  z-index: -1;
}





/*--------------------------------------------------------------
# bookedservice
--------------------------------------------------------------*/
.bookedservice #bookedservice-flters {
  margin-top: 30px;
  list-style: none;
  text-align: center;
}

.bookedservice #bookedservice-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #4d4643;
  transition: all 0.3s;
  border-radius: 4px;
}

.bookedservice #bookedservice-flters li:hover{
  color: #fff;
  background: var(--primary);
}
.bookedservice #bookedservice-flters li.filter-active {
  color: #fff;
  background: var(--text-dark);
}

.bookedservice #bookedservice-flters li:last-child {
  margin-right: 0;
}





/* -------------------------------------------
    cards in service_category & booked_services
---------------------------------------------- */
.bookedservice .card,
.services_category .card {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin: 2rem 0 2rem 13%;
  /* padding-left: 20px; */
  max-width: 850px;
  justify-content: space-between;
  box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66) ;
}
.bookedservice .card{
  margin: 1rem 0 1rem 13% !important;
}

.bookedservice .card-body,
.services_category .card-body{
  flex: 0 0 50% !important;
}

.bookedservice .wrapper{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.bookedservice .wrapper .left_side{
  margin-right: 10px;
}

.bookedservice .bookedservice-item a,
.bookedservice .bookedservice-item a:hover{
  color: rgb(19, 19, 19);
}

.bookedservice .card:hover,
.services_category .card:hover{
  transform: scale(1.010);
  box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}

.services_category .card span {
  font-size: medium;
  color: rgb(255, 255, 255);
  padding: 6px;
  border-radius: 15px;
  background-color: #07d312;
}

.bookedservice .card-title,
.services_category .card-title {
  font-weight: bold;
  margin-bottom: 0 !important;
}
.services_category .card-detail{
  font-size: large;
}

.services_category .card-text{
    margin-top: 1rem !important;
}
.services_category .card-text s {
  font-size: medium;
}
.services_category .card .card-title span{
font-weight: 500 !important;
font-size: medium !important;
}

.bookedservice .card img,
.services_category .card img {
  /* width: 30%; */
  flex: 0 0 40% !important;
  max-height: 222px;
  position: relative !important;
  /* border-top-right-radius: 0;
  border-bottom-left-radius: calc(0.25rem - 1px); */
}
.bookedservice .dot-red,
.bookedservice .dot-blue,
.bookedservice .dot-green,
.bookedservice .dot-yellow {
height: 20px;
width: 20px;
margin-top: 8px;
border-radius: 50% !important;
display: inline-block;
}
.bookedservice .dot-red{
  background-color: rgb(184, 18, 18) !important;
}
.bookedservice .dot-blue {
  background-color: rgb(35, 82, 185) !important;
}
.bookedservice .dot-green{
  background-color: rgb(32, 156, 16) !important;
}
.bookedservice .dot-yellow{
  background-color: rgb(233, 218, 17) !important;
}
@media only screen and (max-width: 768px) {
  .bookedservice .card-body,
  .services_category .card-body {
    padding: 0.5em 1.2em;
  }
  .bookedservice .card-body .card-text,
  .services_category .card-body .card-text {
    margin: 0;
  }
  .bookedservice .card img,
  .services_category .card img {
    min-width: 100%;
    height: 150px; 
  }
  .bookedservice .card,
  .services_category .card {
    margin: 1rem !important;
  }
  .bookedservice .card,
  .services_category .card{
    padding: 20px;
  }
  .bookedservice .card-body,
  .services_category .card-body{
    flex: 0 0 100% !important;
  }
}
@media only screen and (max-width: 1200px) {
  .bookedservice .card img
  .services_category .card img {
    flex: 0 0 35% !important;
  }
}




/* ---------------------------------------------------------------
#checkout
----------------------------------------------------------------*/
.checkout .wrapper{
  display: flex;
  justify-content: space-between;
  margin: 0 50px 0 50px;
}
.checkout .date{
  flex: 0 0 50% !important;
}

.checkout .address{
  margin-bottom: 20px;
}
.checkout .address-block{
  overflow:auto;
  max-height:250px;
}
.address-block .address{
  display: flex;
  justify-content: space-between;
}
/* .address-block .address_right{
  align-items: center;
} */

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: var(--text-dark);
}

#footer .footer-top {
  padding: 50px 0 0 0;
  background: #2e2a3b;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: var(--white);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px 0 0 4px;
  text-align: left;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 15%;
  height: 15%;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  #footer .container{
    padding-left: 10%;
    padding-bottom: 10%;
  }
}


/*--------------------------------------------------------------
# order status page
--------------------------------------------------------------*/
.orderstatus {
  padding: 40px 0 0 0;
}

.orderstatus .entry {
  padding: 50px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.orderstatus .entry .entry-img {
  max-height: 300px;
  margin: -50px -50px 20px -50px;
  overflow: hidden;
  object-fit: contain;
}

.orderstatus .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}
/* .orderstatus .btn-group{
  margin-left: auto;
  margin-right: auto;
} */
.orderstatus .wrapper{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.orderstatus .wrapper .left_side{
  margin-right: 10px;
}

.orderstatus .entry .entry-title a {
  color: var(--text-dark);
  transition: 0.3s;
}

.orderstatus .entry .entry-title a:hover {
  color: #1bbd36;
}

.orderstatus .entry .entry-content {
  display: flex;
}

.orderstatus .dot-red,
.orderstatus .dot-blue,
.orderstatus .dot-green,
.orderstatus .dot-yellow {
height: 20px;
width: 20px;
margin-top: 8px;
border-radius: 50% !important;
display: inline-block;
}
.orderstatus .dot-red{
  background-color: rgb(184, 18, 18) !important;
}
.orderstatus .dot-blue {
  background-color: rgb(35, 82, 185) !important;
}
.orderstatus .dot-green{
  background-color: rgb(32, 156, 16) !important;
}
.orderstatus .dot-yellow{
  background-color: rgb(233, 218, 17) !important;
}

#invoice .card {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 5% 1rem 5%;
  /* margin: 1rem 0 2rem 5rem; */
  /* margin: 1rem 0 2rem 0; */
  max-width: 900px !important;
  min-height: 100px !important;
  justify-content: space-between;
  box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66) ;
}
/* #invoice .card-body{
  margin-left: 20px;
} */
#payment .wrapper,
#invoice .wrapper{
  display: flex;
  align-items: baseline;
  /* margin-bottom: 10px; */
}
#payment .wrapper .left_side,
#invoice .wrapper .left_side{
  margin-right: 10px;
}
#status{
  margin: 10px 10% 20px 10%;
}
#status input{
  width: 50%;
  margin: 10px 0 20px 25%;
  /* margin-left: 25%;
  margin-bottom: 20px; */
}
#payment .entry-content{
  display: flex;
  justify-content: space-between !important;
}
#payment .entry-content .left_content{
  flex: 0 0 50% !important;
}
#payment h4{
  color: var(--primary);
}
#payment .modal-body{
  margin: 0 20px 20px 20px ;
}





/*---------------------------------
 Summary page 
 -------------------------------------*/
.summary_main .card {
  margin-bottom: 30px !important;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.summary_main .card-title {
  padding: 20px 0 15px 0;
  font-size: 20px;
  font-weight: 500;
  color: #012970;
  font-family: "Poppins", sans-serif;
}

.summary_main .card-body {
  padding: 0 20px 20px 20px;
}
.summary_main {
  margin-top: 20px;
  padding: 20px 30px;
  transition: all 0.3s;
}
.summary_main .wrapper{
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
}

.summary_main .wrapper .left_side{
  margin-right: 20px;
}
.summary_main .card-heading{
  font-size: 16px;
}
.summary_main .card-text{
  font-size: 14px;
}
@media (max-width: 1199px) {
  .summary_main {
    padding: 20px;
  }
}





/*--------------------------------
 profile page 
---------------------------------*/
.profile .wrapper{
  display: flex;
  align-items: baseline;
  justify-content:left;

  margin-bottom: 10px;
}
.profile{
  max-width: 550px;
}
.profile .card{
  box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66) ;
}

.profile .wrapper .left_side{
  margin-right: 20px;
}
.profile .avatar-upload {
  position: relative;
  max-width: 280px;
  margin: 30px auto 0;
}
.profile .avatar-upload-end {
  position: relative;
  max-width: 420px;
  margin: 10px auto;
}
.profile .avatar-upload .avatar-edit {
  position: absolute;
  right: 20px;
  z-index: 1;
  top: 15px;
}
.profile .avatar-upload .avatar-edit input {
  display: none;
}
.profile .avatar-upload .avatar-edit input + label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}
.profile .avatar-upload .avatar-edit input + label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}
.profile .avatar-upload .avatar-edit input + label:after {
  content: "\f040";
  font-family: 'FontAwesome';
  color: #757575;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
}
.profile .avatar-upload .avatar-preview {
  width: 192px;
  height: 192px;
  margin: auto;
  position: relative;
  border-radius: 100%;
  border: 6px solid #F8F8F8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.profile .avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}



/* cart page */
.cart{
  min-height: 250px;
}
.cart .card {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin: 2rem 0 2rem;
  padding: 10px;
  max-width: 850px;
  justify-content: space-between;
  box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66) ;
}
.cart .card img {
  flex: 0 0 30% !important;
  max-height: 150px;
  width: 180px;
  position: relative !important;
}
.cart .right_counter{
  display: flex;
  justify-content: space-around;
}
.cart .card-body{
  flex: 0 0 60% !important;
}
@media screen and (max-width: 768px) {
  .cart .card {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin: 1rem;
    padding: 10px;
    max-width: 850px;
    justify-content: space-between;
    box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66) ;
  }
  .cart .card img {
    flex: 0 0 100% !important;
    max-height: 180px;
    position: relative !important;
  }
}


/* Chrome, Edge, Safari */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
