/**
* Template Name: Ninestars
* Template URL: https://bootstrapmade.com/ninestars-free-bootstrap-3-theme-for-creative/
* Updated: Mar 23 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font:Poppins, "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font:"Open Sans", sans-serif,Poppins;
  --nav-font: "Open Sans", sans-serif,Poppins;
}

/* Global Colors */
:root {
  /* --background-color: #ffffff; */
  --background-color: #e7f4f7;

  --background-color-rgb: 255, 255, 255;
  --default-color: #212529;
  --default-color-rgb: 33, 37, 41;
  --heading-color: #fff;
  --heading-color-rgb: 122, 105, 96;
  --accent-color: #1d005a;
  --accent-color-rgb: 235, 93, 30;
  --contrast-color: #ffffff;
  --contrast-color-rgb: 255, 255, 255;
}

/* Nav Menu Colors */
:root {
  --nav-color: #212529;
  --nav-hover-color: #1d005a;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #1d005a;
  --nav-dropdown-background-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  /* background-color: var(--background-color); */
  font-family: var(--default-font);
background-color: #d8f7fe;
}

a {
  color: #1d005a;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: rgba(#1d005a, 0.75);
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  /* background-color: var(--background-color); */
  background-color: #1d005a;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 15px rgba(var(--default-color-rgb), 0.1);
 /* width: 100%;
  height: 100%; */
  /* margin: 0px;
  padding: 0px; */
  /* overflow-x: hidden; */
  
}
@media only screen and (max-width: 600px) {
 .header {
  overflow-x: hidden;
  }
  }


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

.header .logo img {
  max-height: 40px;
  margin-right: 8px;
  height: 40px;
  width: 156px;
  border-radius: 5px;
  object-fit: cover;
  
 
}


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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  /* color: var(--contrast-color); */
  background-color: #00cfd8;
  /* background: var(--accent-color); */
  color:  #fff;
  font-size: 16px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}
.header .btn-log,
.header .btn-log:focus {
  /* color: var(--contrast-color);
  background: var(--accent-color); */
  font-size: 16px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 10px;
  transition: 0.3s;
  border: 3px solid #00cfd8;
  color: #00cfd8;
  box-sizing: border-box;
}
.header .btn-log:hover,
.header .btn-log:focus:hover {
  /* color: var(--contrast-color); */
  /* background: rgba(var(--accent-color-rgb), 0.85); */
  /* color: rgba(#fff, 0.85); */
  background-color: #1d005a;
  /* color: #fff; */
}

@media (max-width: 1200px) {
  

  .header .btn-log {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }


}
/* .btn-log{
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s
} */
.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  /* color: var(--contrast-color);
  background: rgba(var(--accent-color-rgb), 0.85); */
  background: #00cfd8;
 color: rgba(#fff, 0.85);
}

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

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
    font-size:13px ;
    text-wrap: nowrap;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# 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 a,
  .navmenu a:focus {
    /* color: var(--nav-color); */
    /* color: #1d005a; */
    color: #fff;
    padding: 18px 15px;
    /* font-size: 16px; */
    font-size: 20px;
    /* font-family: var(--nav-font); */
    /* font-family: "Poppins"; */
    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;
    transition: 0.3s;
  }

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

  .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);
    /* background-color: #d8f7fe; */
    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(var(--default-color-rgb), 0.15);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    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;
  }

  .navmenu .megamenu {
    position: static;
   
  }

  .navmenu .megamenu ul {
    margin: 0;
    /* padding: 10px; */
    padding: 12px 12px 12px 0px;
    /* background: var(--nav-dropdown-background-color); */
    background: #d8f7fe;
    box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
    /* display: block; */
    position: absolute;
    /* top: 130%; */
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;

  }

.Product .col-xl-4{
text-wrap: nowrap;
padding-left: 115px;
}
  .navmenu .megamenu ul li {
    flex: 1;
   
    /* flex-basis: 31%; */
    
  }
  .navmenu .megamenu ul li img{
  /* margin: 18px;
 
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: white; */
  font-size: 16px;
  padding: 6px;
  color: #fff!important;
  background-color: #1d005a;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
text-align: center;

  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 0px 0px;
    font-size: 18px;
    /* color: var(--nav-dropdown-color); */
    color: #1d005a;
  }
  
  .navmenu .megamenu ul li p,
  .navmenu .megamenu ul li:hover>p{
    /* padding: 10px 20px; */
    /* padding: 0px 72px; */
    /* color: #7a6960; */
    color: #000;
    font-size: 14px;
    /* padding-right: 2px; */
  }

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

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

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.15);
  }
}





/* Mobile Navigation */


@media (max-width: 1199px) {
  .mobile-nav-toggle {
    /* color: var(--nav-color); */
    color: white;
    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;
    position: absolute;
    /* inset: 60px 20px 20px 20px; */
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    /* background-color: var(--nav-dropdown-background-color); */
    background:#d8f7fe ;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.1);
  }

  .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: rgba(var(--accent-color-rgb), 0.1);
  }

  .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,
  .navmenu .megamenu 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,
  .navmenu .megamenu ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active,
  .navmenu .megamenu>.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;
  }
  .navmenu .megamenu ul li img{
    
    padding: 3px;
  color: #fff!important;
  background-color: #1d005a;
  width: 31px;
  height: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 0px;
 
  }
  .navmenu .megamenu ul li p,
  .navmenu .megamenu ul li:hover>p{
    /* padding: 10px 20px; */
    /* padding: 0px 64px; */
    color: #7a6960;
    font-size: 14px;
    padding: 0px 6px;

  }
  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a{
    /* padding: 10px 20px; */
    /* padding: 0px 64px; */
    color: #1d005a;
    font-size: 15px;
    font-weight: bold;
    padding: 0px 6px;
  }

}
.navmenu .megamenu ul li p,
.navmenu .megamenu ul li:hover>p{
  /* padding: 10px 20px; */
  /* padding: 0px 64px; */
  color: #000;
  font-size: 13px;
  text-align: justify;
  font-weight: 600;
  /* padding: 0px 6px; */
  line-height: normal;

}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  /* color: var(--default-color); */
  /* background-color: var(--background-color); */
  background-color: #1d005a;
  color: #fff;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}



.footer .footer-top {
  padding-top: 50px;
}
.footer .footer-top  .logo-icon{
  /* max-height: 36px; */
  /* margin-right: 6px; */
  height: 46px;
  width: 186px;
  border-radius: 5px;
  object-fit: cover;

}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* border: 1px solid rgba(var(--default-color-rgb), 0.5); */
  font-size: 16px;
  color: rgba(var(--default-color-rgb), 0.8);
  margin-right: 10px;
  transition: 0.3s;
  background-color: #00cfd8;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #00cfd8;
}

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

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

/* .footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
} */
.footer .social-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
  border-radius: 50%;
 
}

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

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

.footer .footer-links ul a {
  display: inline-block;
  /* color: rgba(var(--default-color-rgb), 0.8); */
  line-height: 1;
  color: #fff;
}

.footer .footer-links ul a:hover {
  color:#00cfd8;
  font-weight: bold;
}

.footer .footer-about a {
  /* color: var(--default-color); */
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  font-family: var(--heading-font);
  border-radius: 5%;
 

}
.footer-contact .social-links a {
  /* color: var(--default-color); */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%!important;
  /* border: 1px solid rgba(var(--default-color-rgb), 0.5); */
  /* border: 2px solid #eb5d1e; */
  font-size: 16px;
  /* color: rgba(var(--default-color-rgb), 0.8); */
  color: #fff;
  margin-right: 10px;
  transition: all 0.3s ease 0s;
  padding: 10px;
  /* background-color: #eb5d1e; */
 
}
.footer-links h6{
  color: #00cfd8;
}
.App{
  border: 2px solid #fff;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 20px;
  padding-bottom: 25px;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 35px;
  bottom: 15px;
  z-index: 99999;
  background-color:#00cfd8;
  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: #67d9df;
}

.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;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: rgba(var(--accent-color-rgb), .05);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 400;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(var(--default-color-rgb), 0.3);
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  /* margin-bottom: 20px; */
  padding-bottom: 20px;
  position: relative;
}

.sub-title {
  text-align: left;
  padding-bottom: 2px;
  position: relative;
}

.sub-title h4 {
  font-size: 32px;
  font-weight: 700;
  /* margin-bottom: 20px; */
  padding-bottom: 20px;
  position: relative;
  /* color:#eb5d1e; */
}

.sub-title h4:after {

  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;

}
.sub-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  /* min-height: 90vh; */
min-height: fit-content;
  position: relative;
  padding: 0px;
  display: flex;
  padding-bottom: 10px;
}

.hero h1 {
  margin: 0;
  font-size: 45px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: rgba(var(--default-color-rgb), 0.7);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}
/*  */

.hero .hero-img{
  position: relative;
    top: 0px; 
    /* margin-bottom: -60px; */
    object-fit: none;
    object-position: center top;
    width: 100%;
 
}
.hero-img .btn{
  background-color: #00cfd8!important;
  color: #1d005a!important;
  text-align: center;
  border-radius: 35px;
  padding: 5px;
  width: 130px;
  /* height: 40px; */
height: auto;
  position: absolute;
  top: 53%;
  left: 10%;

}
.hero-img .text-overlay{
  position: absolute;
  top: 38%;
  left: 40%;
  /* transform: translate(-50%, -50%); */
  transform: translate(-62%, -50%);
  color: white; /* Optional: change text color */
  font-weight: 900;
  /* font-size: 20px; */


  
}
.hero-img .text-overlayy{
  position: absolute;
  top: 38%;
  left: 40%;
  /* transform: translate(-50%, -50%); */
  transform: translate(-52%, -122%);
  color: white; /* Optional: change text color */
  font-weight: 900;
  /* font-size: 20px; */


  
}
.hero-img span strong{
  position: absolute;
  top: 55%;
  left: 3%;
  /* transform: translate(-50%, -50%); */
  color:#1d005a; /* Optional: change text color */
  background-color: #00cfd8;
  border-radius: 11px;
  padding: 0px 6px;
  /* font-weight: 900; */
  /* font-size: 13px; */

}
@media only screen and (min-width: 350px) and (max-width: 800px) {
  .hero-img .text-overlay{
    top: 28%;
    font-size: 17px;
 }
 .hero-img .btn{

  padding: 3px;
  width: 80px;
  height: auto;
  font-size: 11px;
}
.hero{
 /* min-height: 32vh; */
 min-height: fit-content;
 padding: 0px 0px 0px 0px;
}
.hero-img span strong{
  /* transform: translate(-50%, -50%); */
  top: 75%;
  font-size: 8px;
}

}

@media only screen and (min-width: 760px) and (max-width: 799px) {
  .hero-img .text-overlay{
    top: 35%;
    font-size: 21px;
 }
 .hero-img .btn{

  padding: 2px;
  width: 90px;
  height: 25px;
  font-size: 10px;
  
}
.hero{
  min-height: fit-content;
  padding: 0px 0px 18px 0px;

 }
 .hero-img span strong{
  transform: translate(-13%, -50%);
  top: 60%;
  font-size: 12px;
}
 
}
@media only screen and (min-width: 800px) and (max-width: 1342px) {
  .hero-img .text-overlay{
    top: 35%;
    font-size: 20px;
 }
 .hero-img .btn{

  padding: 4px;
  width: 90px;
  height: auto;
  font-size: 11px;
  
}
.hero{
  min-height: fit-content;
  padding: 0px 0px 18px 0px;

 }
 .hero-img span strong{
  /* transform: translate(-50%, -50%); */
  top: 66%;
  font-size: 15px;
}

 
}
@media only screen and (min-width: 1000px) and (max-width: 1342px) {
  .hero-img .text-overlay{
    top: 35%;
    font-size: 30px;
 }
 .hero-img .btn{

  padding: 5px;
  width: 92px;
  height: auto;
  font-size: 12px;
  
}
.hero-img span strong{
  /* transform: translate(-50%, -50%); */
  top: 65%;
  font-size: 18px;
}
 
}


.hero-img .text-overlay span{

  color: #fff /* Optional: change text color */
}
/* .abt ,.why .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
} */
.abt img{
  width: 500px;
  height: 300px;
}
@media (max-width: 800px) {
  .abt img{
    width: 350px;
    height: 310px;
  }
  .abt{
    margin: auto;
    /* justify-content: center;
    align-items: center; */
    text-align: center;
  }
  
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  /* .hero .hero-img{
    position: relative;
      top: -460px; 
      margin-bottom: -60px;
      object-fit: none;
      object-position: center top;
   
  } */

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

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

.about .about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .about-content ul li:first-child {
  margin-top: 35px;
}

.about .about-content ul i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  font-size: 32px;
  color: #fff;
  background: var(--accent-color);
  margin-right: 15px;
  line-height: 0;
  border-radius: 5px;
}

.about .about-content ul h4 {
  font-size: 18px;
  font-weight: 600;
}

.about .about-content ul p {
  font-size: 15px;
}

.about .about-content p:last-child {
  margin-bottom: 0;
}


/* heading  */

.about-title {
  position: relative; /* required for absolute positioned child */
  margin-bottom: 70px;
}
.about-title  h4 {
  display: inline-block; /* keeps container wrapped tight to content */
  position: absolute; /* to absolutely position element */
  top: 0;
  left: 50%; /* part1 of centering with translateX/Y */
  transform: translateX(-50%); /* part2 of centering with translateX/Y */
  white-space: nowrap; /* text lines will collapse without this */
  padding:10px;
  font-size:22px;
  background-color: #00cfd8;
  color:#1d005a;
  border-radius: 10px;
}

/* =======================================================my code FEATURE ================================================ */

.feature-image {
  position: relative;
  text-align: center;
  margin: auto;
}

.feature-image img {
  max-width: 100%; 
  max-height: 100%; 
  width: 100%; 
  height: auto;
  

}

.feature-image .main-feature-content h6 {
  position: absolute;
  top: 12%;
  left: 32%; 
  color: #fff;
  transform: translate(-50%, -50%);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 20px;
}
.feature-image .main-feature-content p {
  position: absolute;
  top: 60%;
  left: 55%; 
  color: #fff;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  font-size: 16px;
  padding: 2%;
  margin: 0%;
  width: 80%;
  /* text-align: start; */
  text-align: justify;


}
.feature-image .main-feature-content .leaves-h6 
{
  left:27%;  
}
.feature-image .main-feature-content .Customer-Dues-h6
{
  left: 44%;  
}



.feature-image .main-feature-content h6 {
  color: #fff;
}

@media only screen and (min-width: 780px) and (max-width: 989px) {
  .feature-image .main-feature-content p {
    font-size: 15px;
    width: 50%;
    padding: 0px 5px; 
    line-height: normal;

  }
  .feature-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 80%; 
    height: auto;
  }  

}
@media only screen and (min-width: 990px) and (max-width: 1250px) {
  .feature-image .main-feature-content p {
    font-size: 10px;
    width: 58%;
    padding: 0px 0px; 
    line-height: normal;

  }
  .feature-image img {
    max-width: 110%; 
    max-height: 100%; 
    width: 96%; 
    height: auto;
  }  

}

@media only screen and (min-width: 400px) and (max-width: 799px) {
  .feature-image .main-feature-content p{
    font-size: 14px;
    width: 80%;
    height: auto;
    line-height: normal;
    padding: 0px 0px; 

  }
  .feature-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 100%; 
    height: auto;
  }  

}
@media only screen and (min-width: 400px) and (max-width: 490px) {
  .feature-image .main-feature-content h6 {
    font-size: 13px;
  }
  .feature-image .main-feature-content p{
    font-size: 10px;
    width: 78%;
    height: auto;
    line-height: normal;
    padding: 0px 0px; 

  }

}
.feature-image .main-feature-content .Rights-h6 {
left: 25%;
}

@media only screen and (min-width: 400px) and (max-width: 574px) {
  .feature-image .main-feature-content .Incentive-h6 
  {
    left: 30%;  
  }
  .feature-image .main-feature-content .leaves-h6 
  {
    left:27%;  
  }

}
@media only screen and (min-width: 575px) and (max-width: 1200px) {
  .feature-image .main-feature-content .Incentive-h6 {
left: 40%;  }
.feature-image .main-feature-content .leaves-h6 
{
  left:27%;  
}


}





/* ======================================================================================================================= */
/* -----------------------------  Module heading--------- */
/* ======================================================================================================================= */

/* .module-image {
  position: relative;
  text-align: center;
}
.module-image img {
  max-width: 100%; 
  max-height: 100%; 
  width: 18%; 
  height: auto;
}

.module-image .main-heading {
  position: absolute;
  top: 50%;
  left: 50%; 
  color: #fff;
  transform: translate(-50%, -50%);
  /* background-color: rgba(255, 255, 255, 0.7); */
  /* padding: 10px 20px;
  border-radius: 5px; */
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
/* } */

/* @media only screen and (min-width: 700px) and (max-width: 1200px) {
  .module-image  .main-heading h4{
    font-size: 28px;
  }
  .module-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 30%; 
    height: auto;
  }  

}
@media only screen and (min-width: 400px) and (max-width: 799px) {
  .module-image h4{
    font-size: 20px;
  }
  .module-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 41%; 
    height: auto;
  }  

} */ */

/* ----  /module heading--------- */
/* -----------------------SERVICE-IMAGE-------------------------- */
.Service-Master-image {
  position: relative;
  text-align: center;
  margin: auto;
}

.Service-Master-image img {
  max-width: 100%; 
  max-height: 100%; 
  width: 100%; 
  height: auto;
  

}

.Service-Master-image .main-feature-content h6 {
  position: absolute;
  top: 25%;
  left: 34%; 
  color: #fff;
  transform: translate(-50%, -50%);
  padding: 10px 20px;
  border-radius: 5px;
}
.Service-Master-image .main-feature-content p {
  position: absolute;
  top: 65%;
  left: 64%; 
  color: #fff;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  font-size: 12.5px;
  padding: 2%;
  margin: 0%;
  width: 65%;
  text-align: start;

}

.Service-Master-image .main-feature-content h6 {
  color: #fff;
}

@media only screen and (min-width: 780px) and (max-width: 989px) {
  .Service-Master-image .main-feature-content p {
    font-size: 13px;
    width: 55%;
    padding: 0px 5px; 
    line-height: normal;

  }
  .Service-Master-image img {
    max-width: 110%; 
    max-height: 100%; 
    width: 90%; 
    height: auto;
  }  

}
@media only screen and (min-width: 990px) and (max-width: 1250px) {
  .Service-Master-image .main-feature-content p {
    font-size: 10px;
    width: 58%;
    padding: 0px 0px; 
    line-height: normal;

  }
  .Service-Master-image img {
    max-width: 110%; 
    max-height: 100%; 
    width: 96%; 
    height: auto;
  }  

}

@media only screen and (min-width: 400px) and (max-width: 799px) {
  .Service-Master-image .main-feature-content p{
    font-size: 11px;
    width: 60%;
    height: auto;
    line-height: normal;
    padding: 0px 0px; 

  }
  .Service-Master-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 100%; 
    height: auto;
  }  

}
@media only screen and (min-width: 400px) and (max-width: 490px) {
  .Service-Master-image .main-feature-content h6 {
    font-size: 13px;
  }
  .Service-Master-image .main-feature-content p{
    font-size: 8px;
    width: 65%;
    height: auto;
    line-height: normal;
    padding: 0px 0px; 

  }

}
.Service-Master-image .main-feature-content .Rights-h6 {
left: 29%;
}

@media only screen and (min-width: 400px) and (max-width: 574px) {
  .Service-Master-image .main-feature-content .Incentive-h6 {
left: 40%;  }
.Service-Master-image .main-feature-content .leaves-h6 {
  left:5%;  }
  
}
@media only screen and (min-width: 575px) and (max-width: 1200px) {
  .Service-Master-image .main-feature-content .Incentive-h6 {
left: 40%;  }

}


/* ======================================================================================================================= */
/* --------------------------------MODULE END -----------------------------------------------------------*/

/* -----------------------GET IN TOUCH HEADING --------------------------- */

.get-in-touch-image {
  position: relative;
  text-align: center;
}
.get-in-touch-image img {
  max-width: 100%; 
  max-height: 100%; 
  width: 20%; 
  height: auto;
}

.get-in-touch-image .main-heading {
  position: absolute;
  top: 50%;
  left: 50%; 
  color: #fff;
  transform: translate(-50%, -50%);
  /* background-color: rgba(255, 255, 255, 0.7); */
  padding: 10px 20px;
  border-radius: 5px;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

@media only screen and (min-width: 770px) and (max-width: 1200px) {
  .get-in-touch-image  .main-heading h4{
    font-size: 25px;
  }
  .get-in-touch-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 30%; 
    height: auto;
  }  

}
@media only screen and (min-width: 400px) and (max-width: 799px) {
  .get-in-touch-image h4{
    font-size: 20px;
  }
  .get-in-touch-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 50%; 
    height: auto;
  }  

}


/* ----------------------- /GET IN TOUCH HEADING --------------------------- */

/* ===========================My Code========================================= */










/*--------------------------------------------------------------
# why Section
--------------------------------------------------------------*/
.why{
  --background-color: rgba(var(--accent-color-rgb), 0.03);
}

/*--------------------------------------------------------------
# why Section
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# pricing Section
--------------------------------------------------------------*/

.main-head th {
  flex: 1;
 
  background-color: #1d005a;
  flex-direction: column;
  align-items: flex-end;
  /* padding: 15px 0 15px; */
  /* gap: 5px; */
  z-index: 2;
  font-size: 22px;
  color: #00cfd8;
  font-family:Trebuchet MS;
  text-align: center;
  justify-content: center;

 
}
.main-head th span{
  color: #fff;
  font-size: 20px;
  line-height: normal;
}
.main-head  {
  background-color: #f2f2f2; /* Change the color as per your preference */
  border: 2px solid #fff;
}
.table-custom {
  border-radius: 10px!important; 
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.25);
  border: 2px solid #000;
  box-sizing: border-box;
}
.table-custom .btn {
  background-color: #1d005a;
  color: white;
  /* padding: 8px 16px; */
  border: none;
  text-decoration: none;
  border-radius: 35px;
  font-weight: bolder;
  text-wrap: nowrap;
}
.table-custom td{
  border: 2px solid #000;

  font-size: 18px;
  font-weight: bolder;
  font-family: Trebuchet MS;
  padding: 12px 0px;
  padding-left: 15px;
}
.table-custom td strong{
  font-size:28px;
  font-weight: bolder;
}

tbody td{
  padding: 0px;
  margin: 0px;
}
.rong-mark{
  color: #FF0000;
  font-weight: bold;
  font-size: 15px;
}


/*--------------------------------------------------------------
# pricing Section close
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/

/* .features .faq-container h4{
  color: #eb5d1e;
  font-size: 20px;
 padding: 20px;
}
.features .row {
  margin-top: 38px;
} */


/*--------------------------------------------------------------
# Features Section close
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Testimonials Section 
--------------------------------------------------------------*/
/* .Testimonials{
  --background-color: rgba(var(--accent-color-rgb), 0.03);
} */
.Testimonials img{
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Testimonials Section close
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact .info-wrap {
  box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.3);
  padding: 30px;
  /* border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color); */
  height: 100%;
}

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

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: rgba(var(--accent-color-rgb), 0.08);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.3);
  /* border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color); */
}


@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--background-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--background-color);
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: rgba(var(--background-color-rgb), 0.5);
  border-color: rgba(var(--default-color-rgb), 0.2);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(var(--default-color-rgb), 0.3);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(#1d005a, 0.75);
}

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

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



/* ================================================ WHY SALOONIST PAGE CSS ======================================= */

/* --------productivity image ----------- */
.increace-productivity-image img{
  width: 530px;
  height: 430px;
}
@media (max-width: 800px) {
  .increace-productivity-image img{
    width: 350px;
    height: 310px;
  }
  .increace-productivity-image{
    margin: auto;
    /* justify-content: center;
    align-items: center; */
    text-align: center;
  }
  
}
/* -------- /productivity image ----------- */

/* -----------------FREE TIME PRODUCTIVITY HEADING IMAGE -------------------- */

  .Free-time-image {
  position: relative;
  text-align: center;
}

.Free-time-image img {
  max-width: 100%; 
  max-height: 100%; 
  width: 40%; 
  height: auto;
}

.Free-time-image .main-heading h4{
  position: absolute;
  top: 49%;
  left: 70%; 
  color: #fff;
  transform: translate(-50%, -50%);
  /* background-color: rgba(255, 255, 255, 0.7); */
  /* padding: 10px 20px; */
  border-radius: 5px;
  padding: 10px 5px;
  text-wrap: nowrap;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}
@media only screen and (min-width: 990px) and (max-width: 1200px) {
  .Free-time-image .main-heading h4{
    top: 50;
    left: 50%;
    color: #fff;

    font-size: 25px;
  }
  .Free-time-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 80%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  

}
@media only screen and (min-width: 800px) and (max-width: 990px) {
  .Free-time-image .main-heading h4{
    top: 50%;
    left: 50%;
    font-size: 22px;
  }
  .Free-time-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 65%; 
    height: auto;
    top: 50%;
    left: 50%;

  }  

}

@media only screen and (min-width: 400px) and (max-width: 799px) {
  .Free-time-image  .main-heading h4{
    font-size: 15px;
    top: 50%;
    left: 50%;

  }
  .Free-time-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 90%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  

}
@media only screen and (min-width: 1250px)  {
  .Free-time-image {
   margin-left: 8rem;
  } 
  .Free-time-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 46%; 
    height: auto;
  }
  .Free-time-image .main-heading h4{
    top: 50%;
    left: 68%;
    font-size: 22px;
  }

  
}
@media only screen and (min-width: 1600px)  {
  .Free-time-image {
   margin-left: 18rem;
  } 
}




/* -----------------/FREE TIME PRODUCTIVITY HEADING IMAGE -------------------- */

/*---------------- paragraf-------- */
.Increase-para span{
  color: #1d005a !important;
  font-weight: 600;
  font-size: 18px;
  margin: 0px 3px;
}
/* -----------------  Discover Compassionate and Supportive Individuals -------------------- */
.Discover-image img{
  width: 480px;
  height: 450px;
}
@media (max-width: 800px) {
  .Discover-image img{
    width: 350px;
    height: 310px;
  }
  .Discover-image{
    margin: auto;
    /* justify-content: center;
    align-items: center; */
    text-align: center;
  }
  
}
/* -----------------  Discover Compassionate and Supportive Individuals -heading-------------------- */

.Discover-head-image {
  position: relative;
  text-align: center;
}

.Discover-head-image img {
  max-width: 100%; 
  max-height: 100%; 
  width: 40%; 
  height: auto;
}

.Discover-head-image .main-heading h4{
  position: absolute;
  top: 50%;
  left: 10%; 
  color: #fff;
  transform: translate(-50%, -50%);
  /* background-color: rgba(255, 255, 255, 0.7); */
  /* padding: 10px 20px; */
  border-radius: 5px;
  padding: 10px 5px;
  text-wrap: nowrap;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .Discover-head-image .main-heading h4{
    top: 50;
    left: 26%;
    color: #fff;

    font-size: 18px;
  }
  .Discover-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 52%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  

}
@media only screen and (min-width: 800px) and (max-width: 990px) {
  .Discover-head-image .main-heading h4{
    top: 50%;
    left: 50%;
    font-size: 20px;
  }
  .Discover-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 78%; 
    height: auto;
    top: 50%;
    left: 50%;

  }  

}

@media only screen and (min-width: 400px) and (max-width: 799px) {
  .Discover-head-image  .main-heading h4{
    font-size: 12.5px;
    top: 50%;
    left: 50%;

  }
  .Discover-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 92%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  

}
@media only screen and (min-width: 1200px)  {
  .Discover-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 50%; 
    height: auto;
  }
  .Discover-head-image .main-heading h4{
    top: 50%;
    left: 25%;
    font-size: 20px;
  }

  
}
@media only screen and (min-width: 1600px)  {
  .Discover-head-image {
   margin-left: 18rem;
  } 
}




/* -----------------/Discover Compassionate and Supportive Individuals -------------------- */

/*---------------------------------------------- clear prising section ------------------------------------------------ */
.clear-pricing-image img{
  width: 500px;
  height: 380px;
}
@media (max-width: 800px) {
  .clear-pricing-image img{
    width: 350px;
    height: 310px;
  }
  .clear-pricing-image{
    margin: auto;
    /* justify-content: center;
    align-items: center; */
    text-align: center;
  }
}
/* -----------------prising heading-------------------- */
.prising-head-image{
  position: relative;
  text-align: center;
}

.prising-head-image img {
  max-width: 100%; 
  max-height: 100%; 
  width: 40%; 
  height: auto;
}

.prising-head-image .main-heading h4{
  position: absolute;
  top: 49%;
  left: 70%; 
  color: #fff;
  transform: translate(-50%, -50%);
  /* background-color: rgba(255, 255, 255, 0.7); */
  /* padding: 10px 20px; */
  border-radius: 5px;
  padding: 10px 5px;
  text-wrap: nowrap;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}
@media only screen and (min-width: 990px) and (max-width: 1200px) {
  .prising-head-image .main-heading h4{
    top: 50;
    left: 68%;
    color: #fff;

    font-size: 20px;
  }
  .prising-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 40%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  

}
@media only screen and (min-width: 800px) and (max-width: 990px) {
  .prising-head-image .main-heading h4{
    top: 50%;
    left: 50%;
    font-size: 25px;
  }
  .prising-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 63%; 
    height: auto;
    top: 50%;
    left: 50%;

  }  

}

@media only screen and (min-width: 400px) and (max-width: 799px) {
  .prising-head-image  .main-heading h4{
    font-size: 20px;
    top: 50%;
    left: 50%;

  }
  .prising-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 80%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  

}
@media only screen and (min-width: 1250px)  {
  .prising-head-image {
   margin-left: 0rem;
  } 
  .prising-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 35%; 
    height: auto;
  }
  .prising-head-image .main-heading h4{
    top: 50%;
    left: 73%;
    font-size: 22px;
  }

  
}
@media only screen and (min-width: 1600px)  {
  .prising-head-image {
   margin-left: 18rem;
  } 
}




/* -----------------prising heading-------------------- */
/*--------------------------------------------- /clear prising section ------------------------------------------------ */

/* -----------------  Discover Compassionate and Supportive Individuals -heading-------------------- */

.Deliver-head-image {
  position: relative;
  text-align: center;
}

.Deliver-head-image  img {
  max-width: 100%; 
  max-height: 100%; 
  width: 40%; 
  height: auto;
}

.Deliver-head-image  .main-heading h4{
  position: absolute;
  top: 50%;
  left: 10%; 
  color: #fff;
  transform: translate(-50%, -50%);
  /* background-color: rgba(255, 255, 255, 0.7); */
  /* padding: 10px 20px; */
  border-radius: 5px;
  padding: 10px 5px;
  text-wrap: nowrap;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .Deliver-head-image  .main-heading h4{
    top: 50;
    left: 26%;
    color: #fff;

    font-size: 22px;
  }
  .Deliver-head-image  img {
    max-width: 100%; 
    max-height: 100%; 
    width: 52%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  

}
@media only screen and (min-width: 800px) and (max-width: 990px) {
  .Deliver-head-image  .main-heading h4{
    top: 50%;
    left: 50%;
    font-size: 15px;
  }
  .Discover-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 80%; 
    height: auto;
    top: 50%;
    left: 50%;

  }  

}

@media only screen and (min-width: 400px) and (max-width: 799px) {
  .Deliver-head-image   .main-heading h4{
    font-size: 18px;
    top: 50%;
    left: 50%;

  }
  .Deliver-head-image  img {
    max-width: 100%; 
    max-height: 100%; 
    width: 90%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  

}
@media only screen and (min-width: 1200px)  {
  .Deliver-head-image  img {
    max-width: 100%; 
    max-height: 100%; 
    width: 43%; 
    height: auto;
  }
  .Deliver-head-image  .main-heading h4{
    top: 50%;
    left: 22%;
    font-size: 25px;
  }

  
}



/*--------------------------------------------- /clear prising section ------------------------------------------------ */

/* ================================================ /WHY SALOONIST PAGE CSS ======================================= */


/* =============================================================================================================================================== */


/* ================================================ SALON AUTOMATION PAGE  CSS ======================================= */

/*--------------------------------------------- /STREAMING HEAD ------------------------------------------------ */
.streaming-head-image {
  position: relative;
  text-align: center;
}

.streaming-head-image  img {
  max-width: 100%; 
  max-height: 100%; 
  width: 40%; 
  height: auto;
}

.streaming-head-image  .main-heading h4{
  position: absolute;
  top: 50%;
  left: 10%; 
  color: #fff;
  transform: translate(-50%, -50%);
  /* background-color: rgba(255, 255, 255, 0.7); */
  /* padding: 10px 20px; */
  border-radius: 5px;
  /* padding: 10px 5px; */
  /* text-wrap: nowrap; */
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .streaming-head-image  .main-heading h4{
    top: 50;
    left: 45%;
    color: #fff;
  text-wrap: nowrap;
    font-size: 20px;
  }
  .streaming-head-image  img {
    max-width: 100%; 
    max-height: 100%; 
    width: 95%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  

}
@media only screen and (min-width: 800px) and (max-width: 990px) {
  .streaming-head-image  .main-heading h4{
    top: 50%;
    left: 50%;
    font-size: 16px;
    text-wrap: nowrap;
  }
  .streaming-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 96%; 
    height: auto;
    top: 50%;
    left: 50%;

  }  

}

@media only screen and (min-width: 400px) and (max-width: 799px) {
  .streaming-head-image  .main-heading h4{
    font-size: 15px;
    top: 50%;
    left: 45%;
    text-wrap: wrap;
    padding: 0PX;
    text-align: justify;
    margin-right: 0px;

  }
  .streaming-head-image  img {
    max-width: 100%; 
    /* max-height: 200%;  */
    width: 90%; 
    height: 150PX;
    top: 10%;
    left: 50%;
  }  


}
@media only screen and (min-width: 1200px)  {
  .streaming-head-image  img {
    max-width: 100%; 
    max-height: 100%; 
    width: 85%; 
    height: auto;
  }
  .streaming-head-image  .main-heading h4{
    top: 50%;
    left: 42%;
    font-size: 23px;
    text-wrap: nowrap;
  }

  
}



/*--------------------------------------------- /STREAMING HEAD  ------------------------------------------------ */

/*--------------------------------------------- Effortless slot bloking   ------------------------------------------------ */

.effortless-image img{
  width: 450px;
  height: 320px;
}
@media (max-width: 800px) {
  .effortless-image img{
    width: 350px;
    height: 310px;
  }
  .effortless-image{
    margin: auto;
    /* justify-content: center;
    align-items: center; */
    text-align: center;
  }
}
/* --------------------effortless heading ---------------------------- */

.effortless-head-image{
  position: relative;
  text-align: center;
}

.effortless-head-image img {
  max-width: 100%; 
  max-height: 100%; 
  width: 40%; 
  height: auto;
}

.effortless-head-image .main-heading h4{
  position: absolute;
  top: 49%;
  left: 70%; 
  color: #fff;
  transform: translate(-50%, -50%);
  /* background-color: rgba(255, 255, 255, 0.7); */
  /* padding: 10px 20px; */
  border-radius: 5px;
  padding: 10px 5px;
  text-wrap: nowrap;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}
@media only screen and (min-width: 990px) and (max-width: 1200px) {
  .effortless-head-image .main-heading h4{
    top: 50;
    left: 63%;
    color: #fff;

    font-size: 20px;
  }
  .effortless-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 50%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  
  .effortless-head-image {
    margin-left: 6rem;
  }
}
@media only screen and (min-width: 800px) and (max-width: 990px) {
  .effortless-head-image .main-heading h4{
    top: 50%;
    left: 50%;
    font-size: 25px;
  }
  .effortless-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 75%; 
    height: auto;
    top: 50%;
    left: 50%;

  }  

}

@media only screen and (min-width: 400px) and (max-width: 799px) {
  .effortless-head-image  .main-heading h4{
    font-size: 17px;
    top: 50%;
    left: 50%;

  }
  .effortless-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 88%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  

}
@media only screen and (min-width: 1201px)  {
  .effortless-head-image {
   margin-left: 8rem;
  } 
  .effortless-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 46%; 
    height: auto;
  }
  .effortless-head-image .main-heading h4{
    top: 50%;
    left: 68%;
    font-size: 25px;
  }


  
}
@media only screen and (min-width: 1600px)  {
  .effortless-head-image {
   margin-left: 18rem;
  } 
}



/* --------------------/effortless heading ---------------------------- */

/*--------------------------------------------- /Effortless slot bloking   ------------------------------------------------ */

/* -----------------------------------Advanced Billing and Accounting System ----------------------------------------- */
.advanced-billing-image img{
  width: 350px;
  height: 350px;
}
@media (max-width: 800px) {
  .advanced-billing-image img{
    width: 350px;
    height: 310px;
  }
  .advanced-billing-image{
    margin: auto;
    /* justify-content: center;
    align-items: center; */
    text-align: center;
  }
}

/* --------------------    Advanced Billing heading ---------------------------- */

.advanced-billing-head-image{
  position: relative;
  text-align: center;
}

.advanced-billing-head-image img {
  max-width: 100%; 
  max-height: 100%; 
  width: 40%; 
  height: auto;
}

.advanced-billing-head-image .main-heading h4{
  position: absolute;
  top: 49%;
  left: 70%; 
  color: #fff;
  transform: translate(-50%, -50%);
  /* background-color: rgba(255, 255, 255, 0.7); */
  /* padding: 10px 20px; */
  border-radius: 5px;
  padding: 10px 5px;
  text-wrap: nowrap;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}
@media only screen and (min-width: 993px) and (max-width: 1200px) {
  .advanced-billing-head-image .main-heading h4{
    top: 50;
    left: 25%;
    color: #fff;

    font-size: 20px;
  }
  .advanced-billing-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 50%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  
  /* .advanced-billing-head-image {
    margin-left: 5rem;
  } */
}
@media only screen and (min-width: 800px) and (max-width: 993px) {
  .advanced-billing-head-image .main-heading h4{
    top: 50%;
    left: 50%;
    font-size: 23px;
  }
  .advanced-billing-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 75%; 
    height: auto;
    top: 50%;
    left: 50%;

  }  

}

@media only screen and (min-width: 400px) and (max-width: 799px) {
  .advanced-billing-head-image  .main-heading h4{
    font-size: 15px;
    top: 50%;
    left: 50%;

  }
  .advanced-billing-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 88%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  

}
@media only screen and (min-width: 1201px)  {
  .advanced-billing-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 46%; 
    height: auto;
  }
  .advanced-billing-head-image .main-heading h4{
    top: 50%;
    left: 23%;
    font-size: 23px;
  }


  
}



/* --------------------/Advanced Billing heading ---------------------------- */


/* -----------------------------------/Advanced Billing and Accounting System ----------------------------------------- */
/* -----------------------------------/Notification System For Cancellations and Rescheduling ----------------------------------------- */

cancellations-head-image
/* --------------------   Cancellations heading ---------------------------- */

.cancellations-head-image{
  position: relative;
  text-align: center;
}

.cancellations-head-image img {
  max-width: 100%; 
  max-height: 100%; 
  width: 40%; 
  height: auto;
}

.cancellations-head-image .main-heading h4{
  position: absolute;
  top: 49%;
  left: 70%; 
  color: #fff;
  transform: translate(-50%, -50%);
  /* background-color: rgba(255, 255, 255, 0.7); */
  /* padding: 10px 20px; */
  border-radius: 5px;
  padding: 10px 5px;
  text-wrap: nowrap;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}
@media only screen and (min-width: 993px) and (max-width: 1200px) {
  .cancellations-head-image .main-heading h4{
    top: 50;
    left: 25%;
    color: #fff;

    font-size: 16px;
  }
  .cancellations-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 51%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  
  /* .advanced-billing-head-image {
    margin-left: 5rem;
  } */
}
@media only screen and (min-width: 800px) and (max-width: 993px) {
  .cancellations-head-image .main-heading h4{
    top: 50%;
    left: 50%;
    font-size: 20px;
  }
  .cancellations-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 85%; 
    height: auto;
    top: 50%;
    left: 50%;

  }  

}

@media only screen and (min-width: 400px) and (max-width: 799px) {
  .cancellations-head-image  .main-heading h4{
    font-size: 12.5px;
    top: 50%;
    left: 50%;

  }
  .cancellations-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 96%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  

}
@media only screen and (min-width: 1201px)  {
  .cancellations-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 50%; 
    height: auto;
  }
  .cancellations-head-image .main-heading h4{
    top: 50%;
    left: 25%;
    font-size: 19px;
  }


  
}


/* -----------------------------------/Notification System For Cancellations and Rescheduling ----------------------------------------- */

/* -----------------------------------Efficient Payment Acceptance System ----------------------------------------- */

.efficient-image img{
  width: 450px;
  height: 350px;
}
@media (max-width: 800px) {
  .efficient-image img{
    width: 350px;
    height: 310px;
  }
  .efficient-image{
    margin: auto;
    /* justify-content: center;
    align-items: center; */
    text-align: center;
  }
}
/* --------------------Efficient Payment heading ---------------------------- */

.efficient-head-image{
  position: relative;
  text-align: center;
}

.efficient-head-image img {
  max-width: 100%; 
  max-height: 100%; 
  width: 40%; 
  height: auto;
}

.efficient-head-image .main-heading h4{
  position: absolute;
  top: 49%;
  left: 70%; 
  color: #fff;
  transform: translate(-50%, -50%);
  /* background-color: rgba(255, 255, 255, 0.7); */
  /* padding: 10px 20px; */
  border-radius: 5px;
  padding: 10px 5px;
  text-wrap: nowrap;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}
@media only screen and (min-width: 990px) and (max-width: 1200px) {
  .efficient-head-image .main-heading h4{
    top: 50;
    left: 65%;
    color: #fff;

    font-size: 19px;
  }
  .efficient-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 50%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  
  .efficient-head-image {
    margin-left: 6rem;
  }
}
@media only screen and (min-width: 770px) and (max-width: 990px) {
  .efficient-head-image .main-heading h4{
    top: 50%;
    left: 50%;
    font-size: 25px;
  }
  .efficient-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 75%; 
    height: auto;
    top: 50%;
    left: 50%;

  }  

}

@media only screen and (min-width: 400px) and (max-width: 769px) {
  .efficient-head-image  .main-heading h4{
    font-size: 16px;
    top: 50%;
    left: 50%;

  }
  .efficient-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 88%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  

}
@media only screen and (min-width: 1201px)  {
  .efficient-head-image {
   margin-left: 5rem;
  } 
  .efficient-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 48%; 
    height: auto;
  }
  .efficient-head-image .main-heading h4{
    top: 50%;
    left: 68%;
    font-size: 22px;
  }


  
}
@media only screen and (min-width: 1600px)  {
  .efficient-head-image {
   margin-left: 12rem;
  } 
}



/* --------------------/Efficient Payment heading ---------------------------- */



/* ----------------------------------- /Efficient Payment Acceptance System ----------------------------------------- */



/* ----------------------------------- Detailed Reports For Everything ----------------------------------------- */

.detailed-report-image img{
  width: 430px;
  height: 400px;
}
@media (max-width: 800px) {
  .detailed-report-image img{
    width: 350px;
    height: 310px;
  }
  .detailed-report-image{
    margin: auto;
    /* justify-content: center;
    align-items: center; */
    text-align: center;
  }
}

/* ----------------------------------- /Detailed Reports For EverythingMaintaining-database ----------------------------------------- */

/* ------------------------------------ Automates Payroll and Incentive System ---------------------------------*/
/* ------------------------------------ Automates heading---------------------------------*/


.automates-head-image{
  position: relative;
  text-align: center;
}

.automates-head-image img {
  max-width: 100%; 
  max-height: 100%; 
  width: 40%; 
  height: auto;
}

.automates-head-image .main-heading h4{
  position: absolute;
  top: 49%;
  left: 70%; 
  color: #fff;
  transform: translate(-50%, -50%);
  /* background-color: rgba(255, 255, 255, 0.7); */
  /* padding: 10px 20px; */
  border-radius: 5px;
  padding: 10px 5px;
  text-wrap: nowrap;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}
@media only screen and (min-width: 993px) and (max-width: 1200px) {
  .automates-head-image .main-heading h4{
    top: 50;
    left: 25%;
    color: #fff;

    font-size: 20px;
  }
  .automates-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 51%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  
  /* .advanced-billing-head-image {
    margin-left: 5rem;
  } */
}
@media only screen and (min-width: 800px) and (max-width: 993px) {
  .automates-head-image .main-heading h4{
    top: 50%;
    left: 50%;
    font-size: 25px;
  }
  .automates-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 85%; 
    height: auto;
    top: 50%;
    left: 50%;

  }  

}

@media only screen and (min-width: 400px) and (max-width: 799px) {
  .automates-head-image  .main-heading h4{
    font-size: 16px;
    top: 50%;
    left: 50%;

  }
  .automates-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 96%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  

}
@media only screen and (min-width: 1201px)  {
  .automates-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 50%; 
    height: auto;
  }
  .automates-head-image .main-heading h4{
    top: 50%;
    left: 25%;
    font-size: 25px;
  }


  
}



/* ------------------------------------ /Automates  heading ---------------------------------*/

/* ------------------------------------ /Automates Payroll and Incentive System ---------------------------------*/

/* -----------------------------------Maintaining-database ----------------------------------------- */


.Maintaining-database-image img{
  width: 450px;
  height: 450px;
}
@media (max-width: 800px) {
  .Maintaining-database-image img{
    width: 350px;
    height: 310px;
  }
  .Maintaining-database-image{
    margin: auto;
    /* justify-content: center;
    align-items: center; */
    text-align: center;
  }
}


/* --------------------Mantaning heading ---------------------------- */

.Maintaining-head-image{
  position: relative;
  text-align: center;
}

.Maintaining-head-image img {
  max-width: 100%; 
  max-height: 100%; 
  width: 40%; 
  height: auto;
}

.Maintaining-head-image .main-heading h4{
  position: absolute;
  top: 49%;
  left: 70%; 
  color: #fff;
  transform: translate(-50%, -50%);
  /* background-color: rgba(255, 255, 255, 0.7); */
  /* padding: 10px 20px; */
  border-radius: 5px;
  padding: 10px 5px;
  text-wrap: nowrap;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}
@media only screen and (min-width: 990px) and (max-width: 1200px) {
  .Maintaining-head-image .main-heading h4{
    top: 50;
    left: 63%;
    color: #fff;

    font-size: 23px;
  }
  .Maintaining-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 50%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  
  .Maintaining-head-image {
    margin-left: 6rem;
  }
}
@media only screen and (min-width: 800px) and (max-width: 990px) {
  .Maintaining-head-image .main-heading h4{
    top: 50%;
    left: 50%;
    font-size: 25px;
  }
  .Maintaining-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 60%; 
    height: auto;
    top: 50%;
    left: 50%;

  }  

}

@media only screen and (min-width: 400px) and (max-width: 799px) {
  .Maintaining-head-image  .main-heading h4{
    font-size: 23px;
    top: 50%;
    left: 50%;

  }
  .Maintaining-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 85%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  

}
@media only screen and (min-width: 1201px)  {
  .Maintaining-head-image {
   margin-left: 0rem;
  } 
  .Maintaining-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 35%; 
    height: auto;
  }
  .Maintaining-head-image .main-heading h4{
    top: 50%;
    left: 73%;
    font-size: 25px;
  }


  
}
@media only screen and (min-width: 1600px)  {
  .Maintaining-head-image {
   margin-left: 12rem;
  } 
}



/* --------------------/Mantaning heading ---------------------------- */

/* ----------------------------------- /Maintaining-database ----------------------------------------- */
/* ================================================ /SALON AUTOMATION PAGE CSS ======================================= */











/* ================================================ SALON MANAGEMENT GUID PAGE CSS ======================================= */


/* ---------------------------------- salon management heading ---------------------------------------- */

.salon-management-head-image {
  position: relative;
  text-align: center;
}

.salon-management-head-image  img {
  max-width: 100%; 
  max-height: 100%; 
  width: 40%; 
  height: auto;
}

.salon-management-head-image  .main-heading h4{
  position: absolute;
  top: 50%;
  left: 10%; 
  color: #fff;
  transform: translate(-50%, -50%);
  /* background-color: rgba(255, 255, 255, 0.7); */
  /* padding: 10px 20px; */
  border-radius: 5px;
  /* padding: 10px 5px; */
  /* text-wrap: nowrap; */
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .salon-management-head-image  .main-heading h4{
    top: 50;
    left: 28%;
    color: #fff;
  text-wrap: nowrap;
    font-size: 20px;
  }
  .salon-management-head-image  img {
    max-width: 100%; 
    max-height: 100%; 
    width: 55%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  

}
@media only screen and (min-width: 800px) and (max-width: 990px) {
  .salon-management-head-image .main-heading h4{
    top: 50%;
    left: 50%;
    font-size: 20px;
    text-wrap: nowrap;
  }
  .salon-management-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 70%; 
    height: auto;
    top: 50%;
    left: 50%;

  }  

}

@media only screen and (min-width: 400px) and (max-width: 799px) {
  .salon-management-head-image  .main-heading h4{
    font-size: 15px;
    top: 50%;
    left: 46%;
    text-wrap: nowrap;
    padding: 0PX;
    text-align: justify;
    margin-right: 0px;

  }
  .salon-management-head-image  img {
    max-width: 100%; 
    max-height: 100%; 
    width: 96%; 
    height: auto;
    top: 10%;
    left: 50%;
  }  


}
@media only screen and (min-width: 1200px)  {
  .strsalon-management-head-image  img {
    max-width: 100%; 
    max-height: 100%; 
    width: 90%; 
    height: auto;
  }
  .salon-management-head-image  .main-heading h4{
    top: 50%;
    left: 20%;
    font-size: 21px;
    text-wrap: nowrap;
  }

  
}



/* ----------------------------------- /salon management ---------------------------------------- */


/* -----------------------------------what is salon management ---------------------------------------- */
  .what-salon-image img{
    width: 430px;
    height: 430px;
  }
  @media (max-width: 800px) {
    .what-salon-image img{
      width: 350px;
      height: 310px;
    }
    .what-salon-image{
      margin: auto;
      text-align: center;
    }
  }
    
/* -----------------------------------what is salon management heading ---------------------------------------- */

.what-manage-head-image {
  position: relative;
  text-align: center;
}

.what-manage-head-image  img {
  max-width: 100%; 
  max-height: 100%; 
  width: 40%; 
  height: auto;
}

.what-manage-head-image  .main-heading h4{
  position: absolute;
  top: 50%;
  left: 10%; 
  color: #fff;
  transform: translate(-50%, -50%);
  text-wrap: nowrap;
  /* padding: 10px 20px; */
  border-radius: 5px;
}
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .what-manage-head-image  .main-heading h4{
    top: 50;
    left: 25%;
    color: #fff;
    font-size: 23px;
  }
  .what-manage-head-image  img {
    max-width: 100%; 
    max-height: 100%; 
    width: 48%; 
    height: auto;
  }  

}
@media only screen and (min-width: 800px) and (max-width: 990px) {
  .what-manage-head-image .main-heading h4{
    top: 50%;
    left: 50%;
    font-size: 22px;
  }
  .what-manage-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 60%; 
    height: auto;
    top: 50%;
    left: 50%;

  }  

}

@media only screen and (min-width: 400px) and (max-width: 799px) {
  .what-manage-head-image  .main-heading h4{
    font-size: 20px;
    top: 50%;
    left: 50%;
    padding: 0PX;
    text-align: justify;
    margin-right: 0px;

  }
  .what-manage-head-image  img {
    max-width: 100%; 
    /* max-height: 200%;  */
    width: 90%; 
    height: auto;
    top: 10%;
    left: 50%;
  }  


}
@media only screen and (min-width: 1200px)  {
  .what-manage-head-image  img {
    max-width: 100%; 
    max-height: 100%; 
    width: 35%; 
    height: auto;
  }
  .what-manage-head-image  .main-heading h4{
    top: 50%;
    left: 18%;
    font-size: 23px;
  }

  
}



/* ----------------------------------- /what is salon management ---------------------------------------- */

/* -----------------------------------EMPLOYEE management ---------------------------------------- */
.employee-manage-image img{
  width: 380px;
  height: 280px;
}
@media (max-width: 800px) {
  .employee-manage-image img{
    width: 350px;
    height: 310px;
  }
  .employee-manage-image{
    margin: auto;
    text-align: center;
  }
}
  
/* -----------------------------------EMPLOYEE management heading ---------------------------------------- */

.employee-manage-head-image{
  position: relative;
  text-align: center;
}

.employee-manage-head-image img {
  max-width: 100%; 
  max-height: 100%; 
  width: 40%; 
  height: auto;
}

.employee-manage-head-image .main-heading h4{
  position: absolute;
  top: 49%;
  left: 70%; 
  color: #fff;
  transform: translate(-50%, -50%);
  /* background-color: rgba(255, 255, 255, 0.7); */
  /* padding: 10px 20px; */
  border-radius: 5px;
  padding: 10px 5px;
  text-wrap: nowrap;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}
@media only screen and (min-width: 990px) and (max-width: 1200px) {
  .employee-manage-head-image .main-heading h4{
    top: 50;
    left: 63%;
    color: #fff;

    font-size: 23px;
  }
  .employee-manage-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 50%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  
  .employee-manage-head-image {
    margin-left: 6rem;
  }
}
@media only screen and (min-width: 800px) and (max-width: 990px) {
  .employee-manage-head-image .main-heading h4{
    top: 50%;
    left: 50%;
    font-size: 25px;
  }
  .employee-manage-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 60%; 
    height: auto;
    top: 50%;
    left: 50%;

  }  

}

@media only screen and (min-width: 400px) and (max-width: 799px) {
  .employee-manage-head-image  .main-heading h4{
    font-size: 23px;
    top: 50%;
    left: 50%;

  }
  .employee-manage-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 85%; 
    height: auto;
    top: 50%;
    left: 50%;
  }  

}
@media only screen and (min-width: 1201px)  {
  .employee-manage-head-image {
   margin-left: 0rem;
  } 
  .employee-manage-head-image img {
    max-width: 100%; 
    max-height: 100%; 
    width: 35%; 
    height: auto;
  }
  .employee-manage-head-image .main-heading h4{
    top: 50%;
    left: 73%;
    font-size: 25px;
  }


  
}
@media only screen and (min-width: 1600px)  {
  .employee-manage-head-image {
   margin-left: 12rem;
  } 
}
/* ----------------------------------- /EMPLOYEE management ---------------------------------------- */
/* ------------------------------------------------ FINANCIAL MANAGEMENT---------------------------------------------*/
.finances-image img{
  width: 400px;
  height: 350px;
}
@media (max-width: 800px) {
  .finances-image img{
    width: 350px;
    height: 310px;
  }
  .finances-image{
    margin: auto;
    text-align: center;
  }
}

/* ---------------- */

/* ------------------------------------------------ FINANCIAL MANAGEMENT---------------------------------------------*/


/* ================================================ /SALON MANAGEMENT GUID PAGE CSS ======================================= */
/* ============================================================================================================================ */
/* =------------------------------------------------- Password changed-success page css               */
/* ============================================================================================================================ */

.pass-check-image{
 max-width: 100%;
 max-height: 100%;
  width: 15%;
 height: auto;
 /* margin-top: 20px; */
}
.pass-changed-container .container{
  width: 75%;
}


@media only screen and (min-width: 400px) and (max-width: 799px) {
  .pass-check-image{
    max-width: 100%;
    max-height: 100%;
     width: 45%;
    height: auto;
    /* margin-top: 20px; */
   }
   .pass-changed-container .container{
    width: 100%;
    margin: auto;
    padding: 0%;
    text-align: center;
  }
  
  
   
}

.btn-back-login{
  /* width: fit-content;
  height: auto;
  padding: 5px 10px; */
  background-color: #1d005a;
  color: #fff;
}
.btn-back-login:hover{
  background-color: #2e0c77;
  /* opacity: 0.25; */
  color: #fff;
}


.pass-changed-check-container{
  box-shadow: 0px 0px 22px rgba(var(--default-color-rgb), 0.3);

}




/* @media (max-width: 1199px) {
  .navmenu ul {
      inset: 60px 19px 950px 20px;
  }
} */
/* =------------------------------------------------- /Password changed-success page css end ----------------------              */
/* ============================================================================================================================ */
/* ================================================================================================================== */

.register-image {
  position: relative;
  text-align: center;
}


.register-image img {
  max-width: 100%; 
  max-height: 50%; 
  width: 90%; 
  height: 10%; 
  border-radius: 15px;
  box-shadow: 0px 0px 22px rgba(var(--default-color-rgb), 0.3);
  background-color: #000;
  opacity: 1.5;

}

.register-content{
  position: absolute;
  top: 40%; 
  left: 40%;
  transform: translate(-50%, -50%);
  /* background-color: rgba(255, 255, 255, 0.7);  */
  /* padding: 10px 20px; */
  /* border-radius: 5px; */
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  color: #fff;
  padding: 0%;
  margin: 0%;
  font-weight: bold;
}
/* ====================================================================================== */