/* fonts */
@import url("agelockskinclinics/fonts/stylesheet.css");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0px 15px;
}
.wrapper {
  width: 100%;
}
a {
  text-decoration: none;
}

/* root */
:root {
  --black: #B8860B;
  --white: #f3c6c3;
  --purple: #ffffff;
}
/* body */
.pink-body {
  background: #f3c6c3;
}
.padding-100 {
  padding: 30px 0px;
}
/* hedader starts */
/* header */

.nav {
margin-top:5px;
  width: 100%;
  height: 65px;
  line-height: 60px;
  text-align: center;
  z-index: 999;
  background: #f3c6c3;
  position: relative;
}

.nav div.main_list {
  height: 65px;
  float: right;
  background: var(--white) !important;
}
.nav div.main_list ul {
  width: 100%;
/*   height: 65px; */
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f3c6c3;
}
.nav div.main_list ul li {
  width: auto;
/*   height: 45px; */
  padding: 0;
  padding-right: 2.5rem;
}
.nav div.main_list ul li a {
  color: var(--black);
  font-size: 20px;
  font-family: Product Sans;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding:10px 0px !important;
}

.nav-menu {
  position: relative;
  transition: 0.5s;
}

.nav-menu:hover {
  color:  #B8860B !important;
}

.nav-menu:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav .navlinks .nav-menu.active {
  color: var(--purple);
  background: #f3c6c3;;
}
.navTrigger {
  display: none;
}
.nav {
  
  padding-bottom: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1024px) {
  nav .container {
    margin: auto;
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  .nav {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .navTrigger {
    display: block;
  }
  .nav div.logo {
    margin-left: 15px;
  }
  .nav div.main_list {
    width: 100%;
    height: 0;
    overflow: hidden;
  }
  .nav div.show_list {
    height: auto;
    display: none;
  }
  .nav div.main_list ul {
    flex-direction: column;
    width: 100%;
    height: 100vh;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: var(--white);
    /*same background color of navbar*/
    background-position: center top;
  }
  .navTrigge.active .navlinks {
    background: var(--white) !important;
  }
  .nav div.main_list ul li {
    width: 100%;
    text-align: right;
  }
  .nav div.main_list ul li a {
    text-align: center;
    width: 100%;
    padding: 15px 20px;
  }
  .nav div.media_button {
    display: block;
  }
}
.current-menu-item a {
  color: var(--purple) !important;
}
/* nav button */
.navTrigger {
  cursor: pointer;
  width: 30px;
  height: 25px;
  margin: 24px auto 0px auto;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}
.navTrigger i {
  background-color: var(--purple);
  border-radius: 2px;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
}
.navTrigger i:nth-child(1) {
  -webkit-animation: outT 0.8s backwards;
  animation: outT 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
  margin: 5px 0;
  -webkit-animation: outM 0.8s backwards;
  animation: outM 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
  -webkit-animation: outBtm 0.8s backwards;
  animation: outBtm 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
  -webkit-animation: inT 0.8s forwards;
  animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
  -webkit-animation: inM 0.8s forwards;
  animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
  -webkit-animation: inBtm 0.8s forwards;
  animation: inBtm 0.8s forwards;
}
@-webkit-keyframes inM {
  50% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
  }
}

@keyframes inM {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

@-webkit-keyframes outM {
  50% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
  }
}

@keyframes outM {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

@-webkit-keyframes inT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes inT {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(9px) rotate(0deg);
  }
  100% {
    transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes outT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes outT {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(9px) rotate(0deg);
  }
  100% {
    transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes inBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes inBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(0deg);
  }
  100% {
    transform: translateY(-9px) rotate(135deg);
  }
}

@-webkit-keyframes outBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes outBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(0deg);
  }
  100% {
    transform: translateY(-9px) rotate(135deg);
  }
}
.affix {
  padding: 0;
  background: #f3c6c3;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.07);
  position: fixed;
  top: 0;
  width: 100%;
}

.nav.affix {
  height: 65px;
  width: 100%;
}
.nav.affix .logo img {
  width: auto;
  height: 30px;
}
/* hedader ends */
/* button */
.swip {
  margin: 1% 0px 0px 0px ;
  position: relative !important;
  width: 280px !important;
  height: 50px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding-left: 40px !important;
  background-color: var(--purple) !important;
  border-radius: 33px !important;
  color: #fff !important;
  font-family: Product Sans;
  text-decoration: none;
  transition: 0.8s;
  font-size: 16px;
  font-weight: 670;
  cursor: pointer;
}
.swip a {color: #B8860B; !important;}
.swip:hover {
  padding-left: 0px !important;
  padding-right: 40px !important;
}
.swip::after {
  content:" ";
  position: absolute;
  left: 5px;
  width: 40px;
  height: 40px;
  background: #B8860B;
  background-image: url(images/arrow-book.svg);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  transition: 0.8s ease-in-out;
  color: var(--black-font);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
	top:5px;
}
.swip:hover::after {
  left: calc(100% - 55px);
}
/* btn 2 */
.swip2 {
  margin: 3% 0px 0px 0px;
  position: relative;
  width: 260px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 40px;
  background-color: var(--white);
  border-radius: 33px;
  color: var(--purple);
  font-family: Product Sans;
  text-decoration: none;
  transition: 0.8s;
  font-size: 16px;
  font-weight: 670;
  cursor: pointer;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.07);
}
.swip2:hover {
  padding-left: 0px;
  padding-right: 40px;
}
.swip2 span {
  position: absolute;
  left: 5px;
  width: 40px;
  height: 40px;
  background: var(--purple);
  border-radius: 50%;
  transition: 0.8s ease-in-out;
  color: var(--black-font);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swip2 span img {
  filter: brightness(10);
}
.swip2:hover span {
  left: calc(100% - 55px);
}
/* swip3 */
.swip3 {
  margin: 3% 0px 0px 0px;
  position: relative;
  width: 150px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 40px;
  background-color: var(--white);
  border-radius: 33px;
  color: var(--purple);
  font-family: Product Sans;
  text-decoration: none;
  transition: 0.8s;
  font-size: 16px;
  font-weight: 670;
  cursor: pointer;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.07);
  float: right;
}
.swip3:hover {
  padding-left: 0px;
  padding-right: 40px;
}
.swip3 span {
  position: absolute;
  left: 5px;
  width: 40px;
  height: 40px;
  background: var(--purple);
  border-radius: 50%;
  transition: 0.8s ease-in-out;
  color: var(--black-font);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swip3 span img {
  filter: brightness(10);
}
.swip3:hover span {
  left: calc(100% - 55px);
}
/* scroll */
.scroll-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px 0px;
}
.scroll-btn img {
  width: 30px;
  height: auto;
}
.scroll-btn div {
  color: #923d8e;
  text-align: center;
  font-size: 18px;
  font-family: Manier;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
/* mob */
.book-mob{
  width: 100%;
  margin: 15px 10px 15px 10px;
  padding: 10px;
  text-align: center;  
  font-family: Product Sans;
  font-size: 16px;
  background: var(--purple);
  color: var(--white) !important;
}
.book-mob:hover{
  color: var(--black) !important;
}
/* button */
.banner {
  overflow: hidden;
  background: #FFF8F7;
  background-size: cover;
  background-position:bottom;
}
.banner-b {
  overflow: hidden;
  background: #FFF8F7;
  background-size: cover;
  background-position:bottom;
  padding: 50px;
  width: 100%;
}
.banner-collage  img{
  width: 100%;height: auto;
}
.banner-collage {
  position: relative;
  width: 100vh;
  z-index: 2;
}
.line-img {
  margin: -10% 0px 0px 0px;
}
.google-review{
  margin: 30px 0px 30px 0px;
}
.google-rev{
  width: 200px;height: auto;
}
/* banner  ends*/
/* fonts starts */
.white-text {
  color: var(--white);
}
.purple-text{
  color: var(--purple);
}
.title {
  color: var(--purple);
  font-size: 50px;
  font-family: Manier;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.title span {
  color: var(--black);
  font-size: 70px;
}
.spin-text {
  color: var(--purple);
  font-size: 103.686px;
  font-family: Radella Script;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  opacity: 0.23000000417232513;
}
.heading h1, .heading h2 {
  color: var(--black);
  font-size: 38px;
  font-family: Manier;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin: -60px 0px 0px 0px;
}
.content {
  display: flex;
  align-items: center;
  margin: 20px 0px;
  gap: 0px 10px;
}
.pink-line {
  width: 2px;
  height: 71px;
  flex-shrink: 0;
  background: var(--purple);
}
.content p {
  color: #404040;
  text-align: justify;
  font-size: 17px;
  font-family: Product Sans;
  font-style: normal;
  font-weight: 400;
  line-height:28px;
  text-transform: initial;
}
.content-f {
  color: #404040;
  text-align: center;
  font-size: 15px;
  font-family: Product Sans;
  font-style: normal;
  font-weight: 400;
  line-height:28px;
  text-transform: capitalize;
}
.middle-text h3{
  font-size: 25px;
  font-family: Product Sans;
  font-style: normal;
  font-weight: 700;
  text-transform: capitalize;
}
.form-back{
  font-size: 25px;
  font-family: Manier;
  font-style: normal;
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
  color: var(--purple);
}
h3 {
  margin: 0px !important;
}
.small-text h3, .small-text h2  {
  color: #923E8E;
  font-size: 18px !important;
  font-family: Product Sans;
  font-style: normal;
  font-weight: 700;
  line-height: 150.9%;
  margin-bottom: 15px !important;
}
/* fonts ends */

/* treatement */
.treatement-sec {
  margin: 50px 0px 0px 0px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.treatement-item, .treatement-item1 {
  width: 300px;
  transition: 0.5s linear;
}
.teat-box, .teat-box1 {
  padding: 10px 0px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.treatement-item img{
	min-height:355px;
	object-fit: cover;
}
.teat-box{
	margin: -18% 0px 0px 0px;
    background: var(--white);
    position: relative;
}
.treatement-item button {
  border-radius: 55px;
  background: #fff;
  border: none;
  padding: 10px 15px;
  color: #923d8e;
  font-size: 20px;
  font-family: Product Sans;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.hover-text {
  background: linear-gradient(
    189deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(194, 147, 192, 0.37) 34.38%,
    rgba(146, 61, 142, 0.61) 61.93%,
    #923d8e 100%
  );
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0px 10px;
  display: none;
}
.hover-text  h3{margin: 0px 0px 15px 0px !important;}
.hover-text  p{
  color: #FFF;
text-align: center;
font-size: 14px;
font-family: Product Sans;
font-style: normal;
font-weight: 400;
line-height: 20px;
text-transform: capitalize;
}
.treatement-item:hover {
/*   transform: scale(1.2); */
  position: relative;
  z-index: 1;
}
.treatement-item:hover .teat-box {
/*   display: none; */
	opacity: 0;
    background-color: transparent;
}
.treatement-item:hover .hover-text {
  display: flex;
}
/* counter */
.counter{
  color: var(--purple);
  font-size: 55px;
  font-family: Manier;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.counter-content{
  margin: 20px 0px;
  color: var(--black);
  font-size: 25px;
  font-family: Product Sans;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
/* patient */
.happy-patient .owl-carousel img{
  width: 100%;height: auto;
}
.patients-carousel {margin: 50px 0px 0px 0px;}
.owl-theme .owl-nav [class*=owl-]:hover {
  background:transparent;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav{margin: 20px 0px !important;}
.line-3{margin: -30px 0px 0px 0px;}

/* feature */
.features{
  margin: 50px 0px 0px 0px;
}
.img-logo{
  margin: 50px 0px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.feature1 img{
  width: 100px;height: auto;
}
.feature2 img{
  width: 100px;height: auto;
}
/* expert */
.expert-sec{
  margin: 30px 0px 30px 0px;
  background: url(agelockskinclinics/images/rose.webp);
  background-size: cover;
  background-position: center;
  display: flex;flex-direction: column;align-items: center;
  padding: 150px 0px 50px 0px;
}
/* test */
.testimonial .owl-carousel .test-img img{
  width: 50px;height: auto;display: block;
  margin: auto;
}
.testimonial .owl-carousel .star{
  justify-content: center;
  margin: 10px auto;
}
.testimonial .owl-carousel .star img{
  width: 25px;height: auto; text-align: center;
}
.text-content{
  padding: 10px;
}
.testimonial{position: relative;}
.testimonial-carousel .owl-nav{
  position: absolute;
  top: -40%;
  right: 0;
}
.test-abs a{
  padding: 10px 15px;
  background: rgb(53, 53, 255);
  width: 180px;
  border-radius: 30px;
  justify-content: space-around;
}
.test-abs a div{
  font-size: 16px;
  font-family: Product Sans;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--white);
}
.test-abs a img{
  width: 30px;height: auto;margin-left: 10px;border-radius: 100%;
}
.test-pos{position: relative;}
.test-abs {
  position: absolute;
  top: 70%;
  left: 0;
}
/* blog */
.blog{
  padding: 30px 0px 30px 0px;
}
.blog .owl-carousel .blog-header img{
  width: 100%;height: auto;
}
.blog-body{padding: 10px;}
/* faq */
.accordion {
  background: #FFF;
  box-shadow: 0px 4px 27px 0px rgba(0, 0, 0, 0.07);
  width: 80%;
  margin: auto;
}
.accordion .accordion-header {
  background-color: var(--purple);
  padding: 10px;
  cursor: pointer;
  color: #FFF;
  font-size: 20px;
  font-family: Product Sans;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: inherit;
  padding: 30px 30px;
  margin: 10px 0px;
}
.accordion .accordion-header .icon {
  margin-right: 5px;
  float: right;
  font-size: 25px;
}
.accordion .accordion-content {
  padding: 20px 30px;
  display: none;
}
.accordion .accordion-content p {
  color: #2F2929;
text-align: justify;
font-family: Product Sans;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 152.417%;
}
.faq-sec{
/*   padding: 40px 0px 40px 0px; */
}
/* contact */
.contact-sec{
  margin: 100px 0px 50px 0px;
}
.contact-item{
  display: block;
  margin: 30px 0px;
}
.contact-item img{
  width: 30px;height: auto;
  margin: 0px 10px;
}
.contact-item div{
  color: var(--black);
  font-size: 18px;
  font-family: Product Sans;
  text-transform: initial;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0px 0px 0px 15px;
}

.map-img img{
  width: 100vh;
  height: auto;
  position: relative;
  top: 0;
  left:-35%;
}
.cont-blog {
    display: block!important;
    margin: auto;
    float: right;
}
/* footer */


footer{
  background: #fff5f4;
}
.social-icon{
  display: flex;
  align-items:center;
  gap: 10px;
}
.social-icon img{
  width: auto; height:30px;margin-right: 15px;
  filter: brightness(0);
}
.social-icon img:hover{
  filter: brightness(1);
}
.footer-title{
  color: var(--black);
  font-size: 18px;
  font-family: Product Sans;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.f-line{
  width: 50px;
  height: 3px;
  background-color: var(--purple);
  margin: 15px 0px 0px 0px;
}
.f-sec-w {
  width: 50%;
  margin: auto;
}
footer ul{
  margin: 50px 0px 0px 0px;
  padding: 0px;
  list-style: none;
  display: block;
}
/* about page starts*/
.clinic-box{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 15px;
  margin: 10px 0px;
}
.clinic-box img{
  width: 50px;
  height: auto;
}
.clinic-box div{
  color: #000;
  font-size: 16px;
  font-family: Product Sans;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  border-radius: 6px;

}
.clinic-effect{
  background: #FFF7F6;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
}
.counter-about{padding: 50px 0px 0px 0px;}
/* call to action start */
.expert-sec1{
    margin: 50px 0px 50px 0px;
    background: url(agelockskinclinics/images/waves.webp);
    background-size: cover;
    background-position: center;
    display: flex;flex-direction: column;align-items: center;
    padding: 150px 0px 50px 0px;
}
/* call to action ends */
.contact-about .row{
  margin: 30px 0px 0px 0px;
}
.contact-cont .row{
  margin: -30px 0px 0px 0px !important;
}
.white-box{
  background: var(--white);
  box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.13);
  width: 100%;
  padding: 100px 20px;
}
.form1{margin: 30px 0px 0px 0px;}
.form1 input, .form1 textarea{
  width: 100%;
  padding: 10px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--black);
  margin: 10px 0px;
}
/* about page endss*/

/* contact page starts  */
.contact-box{
  display: block;
  margin: auto;
  width: 80%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background: #F9E5DC;
  position: relative;
}
.contact-box img{width: 72px;height: auto;}
.contact-box div{
  margin: 20px 0px 0px 0px;
  color: var(--black);
  text-align: center;
  font-size: 19px;
  text-align: center;
  font-family: Product Sans;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  height: 50px;
}
.contact-box::after{
  content: "";
  background-image: url(images/contact-after.webp);
  background-size: cover;
  width: 300px;height: 300px;
  position: absolute;
  top: -10%;right: -10%;
  z-index: -1;
}
.owl-carousel .contact-box img{width: 72px;height: auto;}
/* contact page ends */



/* after */
.banner,
.about,
.treatements, .doctor, .feature , .blog, .faq-sec, footer, .why_us, .treatements-about, .gallery, .contact-about, .banner-b {
  position: relative;
}
.banner-b{z-index: -2;}
.banner::before,.banner-b::before, .about::before,.treatements::before, .doctor::before, .why_us::before {
  content: "";
  background: url(images/icons/flower-1.webp) no-repeat;
  width: 200px;
  height: 300px;
  position: absolute;
  left: -50px;
  top:0;
  opacity: .5;
}
.banner::after, .banner-b::after {
  content: "";
  background: url(images/icons/flower-2.webp) no-repeat;
  width: 200px;
  height: 300px;
  position: absolute;
  right: 0%;
  top: 20%;
  z-index: -1;
  opacity: .5;
}
.about::after {
  content: "";
  background: url(images/icons/flower-2.webp) no-repeat;
  background-size: contain;
  width: 150px;
  height: 200px;
  position: absolute;
  right: 0%;
  top: 60%;
  opacity: .5;
}
.feature::after{
  content: "";
  background: url(images/icons/flower-2.webp) no-repeat;
  background-size: contain;
  width: 100px;
  height: 150px;
  position: absolute;
  right: 0%;
  top: 30%;
  opacity: .5;
}

.treatements-about::after{
  content: "";
  background: url(images/icons/flower-6.webp) no-repeat;
  background-size: contain;
  width: 200px;
  height: 350px;
  position: absolute;
  left: 0%;
  bottom: 0;
  z-index: -1;
  opacity: .5;
}
.gallery::after{
  content: "";
  background: url(images/icons/flower-6.webp) no-repeat;
  background-size: contain;
  width: 200px;
  height: 350px;
  position: absolute;
  right: 0%;
  top: 0;
  z-index: -1;
  opacity: .5;
}
.contact-about::before{
  content: "";
  background: url(images/icons/flower-3.webp) no-repeat;
  background-size: contain;
  width: 200px;
  height: 350px;
  position: absolute;
  left: 0%;
  bottom: 0;
  z-index: -1;
  opacity: .5;
}
.contact-about::after{
  content: "";
  background: url(images/icons/flower-7.webp) no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  position: absolute;
  right: 0%;
  bottom: 0;
  z-index: -1;
  opacity: .5;
}
.treatement-item {
  position: relative;
  overflow: hidden;
}
#plus::after{
  content: "+";
}
#percent::after{
  content: "%";
}
.testimonial::before{
  content: "";
  background: url(images/icons/flower-3.webp) no-repeat;
  width: 200px;
  height: 300px;
  position: absolute;
  left: 0;
  bottom: 10%;
  z-index: -1;
  opacity: .5;
}
.testimonial-carousel::before{
  content: "";
  background: url(images/icons/message.html) no-repeat;
  background-size:cover;
  width: 100px;
  height: 100px;
  position: absolute;
  left: 0;
  top: 10%;
  
}
.testimonial-carousel::after{
  content: "";
  background: url(images/icons/message.html) no-repeat;
  background-size:cover;
  width: 100px;
  height: 100px;
  position: absolute;
  right: 0;
  bottom: 5%;
}
.blog::after{
  content: "";
  background: url(images/icons/flower-2.webp) no-repeat;
  background-size: contain;
  width: 100px;
  height: 150px;
  position: absolute;
  right: 0%;
  bottom:10%;
  opacity: .5;
}
.faq-sec::before {
  content: "";
  background: url(images/icons/flower-4.webp) no-repeat;
  background-size: contain;
  width: 200px;
  height: 300px;
  position: absolute;
  left: 0;
  top: 10%;
  opacity: .5;
}
footer .container{
  position: relative !important;
  z-index: 2 !important;
}
.about .container{
  position: relative !important;
  z-index: 2 !important;
}
footer::after{
  content: "";
  background: url(images/icons/flower-5.webp) no-repeat;
  background-size: contain;
  width: 150px;
  height: 200px;
  position: absolute;
  left: 0;
  bottom:0;
  opacity: .5;
}

.head_text{
	color: var(--black);
    font-size: 40px;
    font-family: Manier;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}
.date_for_post {
	font-size: 18px;
    font-weight: 400;
    color: var(--purple);
    border-radius: 5px;
    margin: 3px 0 8px 0;
    display: inline-block;
}
.author-details {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 20px 0px;
    /* border: 1px solid #eee; */
    /* border-right: 0px; */
    /* border-left: 0px; */
    /* padding: 20px 0px; */
}
.author-details img {
    border-radius: 100%;
    width: 70px !important;
    height: 70px !important;
    object-fit: cover;
    object-position: top;
}
.author-details p{margin:0px 0px 5px 0px;color: var(--black);}
.author-details a{color: #000;font-weight: bold;}
.author-details a:hover{border-bottom: 1px solid var(--purple);color:var(--purple);}
.no-js .dl-menuwrapper .dl-menu{opacity:0 !important;}
.single-post table{
	border:none;
	width:100%;
}
.single-post td{
	border: 1px solid #e3e3e3;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    background-color: #FFF;
}
.single-post li{
	text-align: justify;
    font-family: Product Sans;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    font-size: 18px;
    margin: 10px 0px;
}
@media screen and (max-width:769px) {
    .author-details {
       flex-direction:column;
    }
}

ul{
  list-style:none;
}
.features h1{
  color: var(--black);
font-size: 20px;
font-family: Manier;
font-style: normal;
font-weight: 600;
line-height: normal;
text-transform: capitalize;
}
.blog a{color: var(--black) !important;font-weight:bold;}
.read-more , .tag{
  color:var(--purple) !important;
}
.features img{
width: 100%;height:auto;}

.featuress .owl-carousel .owl-item img {
    height: 52px !important;
    width: auto !important;
}
.blog_listing_box p{
  font-size:17px;
}
/* blog */  



/*  dropdown menu */
		  .dropdown {cursor:pointer;}
/* 		  .dropdown > .sub-menu{display:none !important;} */
		  .dropdown > a::after {
			  content: '\25BE';
			  display: inline-block;
			  margin-left: 5px;
		  }
		  .home .blog .navigation{display:none;}
		  @media (min-width: 991px) {
		  .dropdown:hover > .sub-menu {display: block !important;}}
 		  @media (max-width: 991px) {
/* 		  .dropdown.open > .sub-menu {display: block !important;} */
		  }
		  .sub-menu {
			  position: absolute;
			  top: 65px;
			  width: 300px !important;
			  height: auto !important;
			  padding: 0px !important;
			  z-index:3;
		  }
		  .sub-menu li {
    height: 40px !important;
    padding: 0px 0px 0px 30px!important;
    text-align: left;
    background: #fff;
    border-top: 1px solid #f8b1b0;
    border-radius: 5px;
    display: flex;
    align-items: center;
}
		  @media screen and (max-width:991px){
			  .sub-menu {
				  position: absolute;
				  top: 50px;
				  background: red !important;
				  width: 100% !important;
				  height: auto !important;
				  padding: 0px 0px 0px 0px!important;
			  }
			  .sub-menu li {border-bottom: 1px solid #f8b1b0;}
			  .nav div.main_list ul li{
				  height:30px;
			  }
		  }