body {
  margin: 0;
  padding: 0;
  color: #303030;
  overflow-x: hidden;
  font-size: 15px;
  font-family: roboto;
}


body,
input,
button,
select {
  font-size: 15px;
  font-weight: 400;
  font-family: roboto;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
}

header {
  width: 100%;
  background-color: #ffffff;
  /* background: linear-gradient(120deg, #90c438 0%, #6ea117 100%); */
  background: linear-gradient(90deg, rgb(229, 238, 217) 6%, rgb(0, 169, 79) 100%);
  /* position: sticky;
  top: 0;
  z-index: 2; */
}

header .logo { 
  width: 250px;
  padding: 10px 0px;
}

header.fixed .logo {
  width: 150px;
  line-height: 50px;
}

header.fixed #menu ul {
  height: 69px;
  line-height: 69px;
}


.menu {
  position: relative;
}

.menu ul li:before {
  content: "";
  position: absolute;
  top: 0px;
  left: -1px;
  width: 1px;
  height: 100%;
  transform: skew(-14deg);
  -webkit-transform: skew(-14deg);
  -moz-transform: skew(-14deg);
}

.menu ul li:hover:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 1px;
  width: 101%;
  height: 100%;
  background-color: #054e0a;
  /* transform: skew(-14deg);
  -webkit-transform: skew(-14deg);
  -moz-transform: skew(-14deg); */
}

.menu ul li ul li:before {
  display: none;
}

.menu ul li ul li:hover:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #a9b6c1;
  transform: skew(-2deg);
  -webkit-transform: skew(-2deg);
  -moz-transform: skew(-2deg);
}

div#overlay {
  display: none;
}

a#toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  text-align: center;
  color: #fff;
  display: none;
  transition: all ease-out 0.3s;
  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  background-color: #034007;
  border: 1px solid #fff;
  line-height: 0;
  z-index: 999;
}

a#toggle i {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 12;
  text-align: center;
  box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.16);
}

main#content {
  padding: 10px;
}

#menu {
  transition: all ease-out 0.3s;
  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
}

#menu a {
  color: #ffffff;
  text-decoration: none;
  z-index: 2;
}

#menu ul {
  margin: 0;
  padding: 0;
  height: 84px;
  line-height: 84px;
  text-align: right;
}

#menu ul li ul {
  margin: 0;
  padding: 0;
  height: 40px;
  text-align: left;
  line-height: 40px;
  position: absolute;
  width: 180px;
  z-index: 2;
}

#menu ul li {
  display: inline-block;
  position: relative;
}

#menu ul li > a {
  display: inline-block;
  padding: 0px 18px;
  position: relative;
  font-weight: bold;
  font-size: 20px;
}

#menu ul li > a::after{
  content: "";
  opacity: 0;
  transition: all 0.8s;
  height: 10%;
  width: 102%;
  background-color: lightgreen;
  position: absolute;
  bottom:0;
  left: 0;
  
}

#menu ul li > a:hover::after{
  opacity: 10;
}

#menu ul li > a > i {
  margin-left: 15px;
  transition: all ease-out 0.3s;
  -webkit-transition: all ease-out 0.1s;
  -moz-transition: all ease-out 0.1s;
}

#menu ul li ul li {
  display: block;
  background-color: #0a78bf;
  transform: skew(-14deg);
  -webkit-transform: skew(-14deg);
  -moz-transform: skew(-14deg);
}

#menu ul li ul li a {
  display: block;
  height: 40px;
  line-height: 40px;
  border-left: 4px solid transparent;
}

#menu ul li:hover > a > i {
  transform: rotateZ(90deg);
  -webkit-transform: rotateZ(90deg);
  -moz-transform: rotateZ(90deg);
  -o-transform: rotateZ(90deg);
  
}

#menu ul li:hover ul {
  display: block;
}

#menu ul li ul {
  display: none;
}

#menu ul li ul:hover {
  display: block;
}

@media screen and (max-width: 768px) {

  header.fixed .logo {
    width: 120px;
  }

  .menu ul li:before,
  .menu ul li:hover:after,
  .menu ul li ul li:before,
  .menu ul li ul li:hover:after {
    display: none;
  }

  .menu.fixed a#toggle {
    top: 9px;
  }

  a#toggle {
    display: block;
  }

  main#content {
    margin-top: 65px;
    transition: all ease-out 0.3s;
    -webkit-transition: all ease-out 0.3s;
    -moz-transition: all ease-out 0.3s;
    -o-transition: all ease-out 0.3s;
  }

  #menu {
    position: fixed;
    width: 230px;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    background-color: #90c438;
    transform: translateX(-250px);
    -webkit-transform: translateX(-250px);
    -moz-transform: translateX(-250px);
    -o-transform: translateX(-250px);
    border-right: 1px solid #757474;
  }

  header.fixed a#toggle {
    top: 10px;
  }

  header.fixed #menu ul {
    height: auto;
    line-height: normal;
  }

  #menu ul {
    text-align: left;
    background-color: transparent;
  }

  #menu ul li {
    display: block;
    line-height: 40px;
  }

  #menu ul li a {
    display: block;
  }

  #menu ul li:hover {
    background-color: rgba(0, 0, 0, 0.5);
  }

  #menu ul li ul li a {
    display: block;
  }

  #menu ul li a > i {
    float: right;
    line-height: 40px;
  }

  #menu ul li ul {
    display: none;
    position: initial;
    width: 100%;
    background-color: rgba(22, 160, 133, 0.2);
    height: auto;
  }

  #menu ul li:hover > ul {
    display: none;
  }

  #menu ul li:hover > a > i {
    transform: rotateZ(0);
    -webkit-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    -o-transform: rotateZ(0);
    color: #444;
  }

  #menu ul li.open > a {
    background-color: rgba(0, 0, 0, 0.3);
  }

  #menu ul li.open > a > i {
    transform: rotateZ(90deg);
    -webkit-transform: rotateZ(90deg);
    -moz-transform: rotateZ(90deg);
    -o-transform: rotateZ(90deg);
  }

  #menu ul li.open > ul {
    display: block;
  }

  div#overlay {
    display: block;
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    transition: all ease-out 0.3s;
    -webkit-transition: all ease-out 0.3s;
    -moz-transition: all ease-out 0.3s;
    -o-transition: all ease-out 0.3s;
    z-index: 998;
    opacity: 0;
  }

  html.open-menu {
    overflow: hidden;
  }

  html.open-menu div#overlay {
    visibility: visible;
    opacity: 1;
    left: 230px;
  }

  html.open-menu a#toggle,
  html.open-menu main#content {
    transform: translateX(250px);
    -webkit-transform: translateX(250px);
    -moz-transform: translateX(250px);
    -o-transform: translateX(250px);
    z-index: 9;
    background: #4caf50;
  }

  html.open-menu nav#menu {
    z-index: 999;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
  }
}

.banner {
  position: relative;
  background-color: black;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

.formBanner1{
  display: none;
}




.item img{
  width: 100%;
}

.sec1{
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #c8e8c0;
  padding: 70px 0px;
}

.sec1Left{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: justify;
  border: 4px dashed #5abf6e;
  border-top-left-radius: 45px;
  border-bottom-right-radius: 45px;
  transition: all 0.8s;
  padding: 18px 0px;
}

.sec1Left:hover{
  border: 2px solid #5abf6e;
  border-bottom-left-radius:45px ;
  border-top-right-radius:45px ;
  background-color: #deebe9;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;

}

.sec1Left h1{
  /* width: 603px; */
  text-align: center;
  margin-bottom: 31px;
 
}

.line{
  width: 354px;
  height: 4px;
  background-color: #5abf6e;
  margin-top: -20px;
  margin-bottom: 22px;
}

.line2{
  width: 354px;
  height: 4px;
  background-color: #5abf6e;
  margin-top: 5px;
  margin-bottom: 22px;
}

.line3{
  width: 120px;
  height: 4px;
  background-color: #5abf6e;
  margin-top: 0px;
  margin-bottom: 0px;
}

.line4{
  width: 354px;
  height: 4px;
  background-color: #29610b;
  margin-top: -2px;
  margin-bottom: 22px;
}

.line5{
  width: 354px;
  height: 4px;
  background-color: #5abf6e;
  margin-top: 5px;
  margin-bottom: 40px;
}

.line6{
  width: 354px;
  height: 4px;
  background-color: #29610b;
  margin-bottom: 40px;
}

.sec1Left p{
  width: 603px;
  font-size: 20px;
  
}

.sec1Right img{
  width: 430px;
  margin-top: 28px;
}


.sec2{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #ffff;
  padding-bottom: 55px;
}

.sec2Bold{
  font-weight: bold;
   font-size: 20px;
}

.sec2Heading{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  /* margin-bottom: 35px; */
}


/* .infoSection{
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 88%;
  margin-bottom: 50px;
} */

.sec2Right img{
  width: 470px;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border: 4px dashed #5abf6e;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: all 0.8s;
  margin-top: 45px;
  padding: 10px;
}

.sec2Right img:hover{
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border: 2px solid #5abf6e;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 50px;
}

.abt_txt {
  width: 97%;
  text-align: justify;
  font-size: 18px;
}

.abt_txt ul li{
  margin: 20px 0px;
}

.abt_txt ul{
  list-style: none;
  padding-left: 0px;
}

.about p {
  margin-top: 0;
  font-size: 18px;
  line-height: 32px;
  background-color: #90c438;
  padding: 20px 30px;
  color: #fff;
  border-radius: 50px 0px 50px 0px;
  box-shadow: 6px 10px 10px -4px rgb(0 0 0 / 56%);
  border: 4px dashed #fff;
}

.about p span{
  font-size: 30px;
}
 

.abt_img img {
  margin: 0px 0px 0px 0px;
  padding: 76px 0px 0px 1px;
  position: relative;
  z-index: 9;
}

.abt_txt h2{
  color: #141414;
  margin-top: 0;
  font-size: 34px;
}


.about ul, .abt_time ul {
  list-style: none;
  margin: 0;
  padding: 0; 
  margin-top: 25px;
}

.abt_txt ul li {
  /*display: inline-block;*/
  padding-left: 30px;
  position: relative;
  margin-bottom: 20px;
  font-size: 14px;
}
.abt_txt ul li i{
  position: absolute;
  top: 1px;
  left: 0;
  color: #90c438;
  font-size: 20px;
}

.abt_time li{
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
}

.abt_time li i{ 
  color: #90c438;
  font-size: 45px;
  margin-right: 20px;
}



.highlightInfo{
 display: flex;
 /* justify-content: center; */
 align-items: center;
 flex-direction: column;
}

.highlightSection{
  display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #c8e8c0;;
    padding: 50px 0px
}


.cost{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 0px;
  background-image: url("https://ik.imagekit.io/4wkn9yhcxgvwt/ppc/artemis/parallax1.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.costInfo p{
  background-color: #216c47bf;
  font-size: 20px;
  color: white;
  padding: 38px;
  text-align: justify;
  border-radius: 22px;
  background-image: linear-gradient(114deg, #27ac89a1, #60cc1da0);
}

.cost h1{
  font-weight: bolder;
  background-color: rgb(255 255 255 / 44%);
  border-radius: 4px;
}

ul li {
  list-style: none;
}

.questions{
  padding: 60px 0px;
  /* background-image: url("../images/questions.jpeg"); */
  background-color: #ecf5de;
      /* filter: hue-rotate(307deg); */
  /* background-position: center center; */
  /* background-repeat: no-repeat; */
  /* background-attachment: fixed; */
  /* background-size:cover; */
}

.questionBox1{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14px;
  border: 2px solid green;
  background-color: #b4d89fcf;;
  height: 300px;
}
.questionBox2{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14px;
  border: 2px solid green;
  background-color: #b4d89fcf;
    height: 300px;
    margin-bottom: 35px;

}

.questionBox2 ul{
    margin-right: 157px;

}
.questionBox3{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14px;
  border: 2px solid green;
  background-color: #b4d89fcf;;
    height: 300px;

}



.questionBox4{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14px;
  border: 2px solid green;
  background-color: #b4d89fcf;;
    height: 300px;

}

.questionBox1 h3{
  padding-bottom: 12px;
}
.questionBox2 h3{
  padding-bottom: 24px;
}
.questionBox3 h3{
  padding-bottom: 24px;
}
.questionBox4 h3{
  padding-bottom: 18px;
}

.questionBox1 ul{
  font-size: 14px;
}

.services{
  padding-top: 40px;
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.cta{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 0px;
  background-image: url("https://ik.imagekit.io/4wkn9yhcxgvwt/ppc/Bariatric%20Surgery/veg_pattern_01.png");
  background-color: #8ec560;
  /* background-repeat: no-repeat; */
  /* background-size: cover; */
  /* background-position: center center; */
  /* background-blend-mode: screen; */
}

.ctaForm{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta h2 {
  padding-bottom: 36px;
  font-weight: bolder;
  color: white;
  text-shadow: 2px 1px black;
  font-size: 35px;
}

.container{
  padding-left: 72px;
}


input{
  width: 300px;
  height: 44px;
  /* font-size: 15px; */
  font-size: 19px;
  padding: 6px 9px;
  border-radius: 6px;
  border: none;
  background-color: #e1dddd;
}

.ctaBtn{
  margin-top: 48px;
  width: 200px;
  height: 47px;
  font-size: 20px;
  border-radius: 10px;
  border: none;
  outline: none;
  background-color: white;
  font-weight: bolder;
  color: green;
  border: 2px solid green;
}

.ctaBtn:hover{
  background-color:#0a7b4e ;
  color: white;

}

.LastForm {
  padding: 40px 0px;
  background-image: url(https://ik.imagekit.io/4wkn9yhcxgvwt/ppc/artemis/parallax1.png);
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 2px dashed grey;
}

.lastForm h3{
  margin-bottom: 45px;
  font-size: 27px;
  color: green;
}

.lastFormInputs {
  border: 2px dashed green;
  padding: 50px 0px;
  border-radius: 18px;
  background-color: #deeade78;
}

.lastFormInputField{
  margin-bottom: 42px;
  background: transparent;
  border: none;
  border-bottom: 2px solid green;
  outline: none;
  box-shadow: none;
  border-radius: 0px;
}



/* hover card */

/*works janky on mobile :<*/
.Cardcontainer {
  position: relative;
  /* width: 190px; */
  height: 254px;
  transition: 200ms;
  margin-bottom: 100px;
  /* border: 2px dashed darkgreen; */
}

.Cardcontainer:active {
  width: 180px;
  height: 245px;
}

#card {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  transition: 700ms;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 2px dashed darkgreen;
  /* background: linear-gradient(43deg, rgb(65, 88, 208) 0%, rgb(200, 80, 192) 46%, rgb(255, 204, 112) 100%); */
}

.subtitle {
  transform: translateY(160px);
  color: green;
  text-align: center;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
}


.tracker:hover ~ #card .title {
  opacity: 1;
}


.tracker {
  position: absolute;
  z-index: 200;
  width: 100%;
  height: 100%;
}

.tracker:hover {
  cursor: pointer;
}

.tracker:hover ~ #card #prompt {
  opacity: 0;
}

.tracker:hover ~ #card {
  transition: 300ms;
  border: 2px solid green;
  /* filter: brightness(1.1); */
}

.container:hover #card::before {
  transition: 200ms;
  content: '';
  opacity: 80%;
}

.canvas {
  perspective: 800px;
  inset: 0;
  z-index: 200;
  position: absolute;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  gap: 0px 0px;
  grid-template-areas: "tr-1 tr-2 tr-3 tr-4 tr-5"
    "tr-6 tr-7 tr-8 tr-9 tr-10"
    "tr-11 tr-12 tr-13 tr-14 tr-15"
    "tr-16 tr-17 tr-18 tr-19 tr-20"
    "tr-21 tr-22 tr-23 tr-24 tr-25";
    
}

#card::before {
  content: '';
  /* background: linear-gradient(43deg, rgb(65, 88, 208) 0%, rgb(200, 80, 192) 46%, rgb(255, 204, 112) 100%); */
  filter: blur(2rem);
  opacity: 30%;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  transition: 200ms; 
}


.copy{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  color: white;
  padding-top: 8px;
}

.tr-1 {
  grid-area: tr-1;
}

.tr-2 {
  grid-area: tr-2;
}

.tr-3 {
  grid-area: tr-3;
}

.tr-4 {
  grid-area: tr-4;
}

.tr-5 {
  grid-area: tr-5;
}

.tr-6 {
  grid-area: tr-6;
}

.tr-7 {
  grid-area: tr-7;
}

.tr-8 {
  grid-area: tr-8;
}

.tr-9 {
  grid-area: tr-9;
}

.tr-10 {
  grid-area: tr-10;
}

.tr-11 {
  grid-area: tr-11;
}

.tr-12 {
  grid-area: tr-12;
}

.tr-13 {
  grid-area: tr-13;
}

.tr-14 {
  grid-area: tr-14;
}

.tr-15 {
  grid-area: tr-15;
}

.tr-16 {
  grid-area: tr-16;
}

.tr-17 {
  grid-area: tr-17;
}

.tr-18 {
  grid-area: tr-18;
}

.tr-19 {
  grid-area: tr-19;
}

.tr-20 {
  grid-area: tr-20;
}

.tr-21 {
  grid-area: tr-21;
}

.tr-22 {
  grid-area: tr-22;
}

.tr-23 {
  grid-area: tr-23;
}

.tr-24 {
  grid-area: tr-24;
}

.tr-25 {
  grid-area: tr-25;
}

.tr-1:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(20deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-2:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(20deg) rotateY(-5deg) rotateZ(0deg);
}

.tr-3:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(20deg) rotateY(0deg) rotateZ(0deg);
}

.tr-4:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(20deg) rotateY(5deg) rotateZ(0deg);
}

.tr-5:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(20deg) rotateY(10deg) rotateZ(0deg);
}

.tr-6:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(10deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-7:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(10deg) rotateY(-5deg) rotateZ(0deg);
}

.tr-8:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(10deg) rotateY(0deg) rotateZ(0deg);
}

.tr-9:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(10deg) rotateY(5deg) rotateZ(0deg);
}

.tr-10:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(10deg) rotateY(10deg) rotateZ(0deg);
}

.tr-11:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(0deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-12:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(0deg) rotateY(-5deg) rotateZ(0deg);
}

.tr-13:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}

.tr-14:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(0deg) rotateY(5deg) rotateZ(0deg);
}

.tr-15:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(0deg) rotateY(10deg) rotateZ(0deg);
}

.tr-16:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-10deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-17:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-10deg) rotateY(-5deg) rotateZ(0deg);
}

.tr-18:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-10deg) rotateY(0deg) rotateZ(0deg);
}

.tr-19:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-10deg) rotateY(5deg) rotateZ(0deg);
}

.tr-20:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-10deg) rotateY(10deg) rotateZ(0deg);
}

.tr-21:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-20deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-22:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-20deg) rotateY(-5deg) rotateZ(0deg);
}

.tr-23:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-20deg) rotateY(0deg) rotateZ(0deg);
}

.tr-24:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-20deg) rotateY(5deg) rotateZ(0deg);
}

.tr-25:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-20deg) rotateY(10deg) rotateZ(0deg);
}

.noselect {
  -webkit-touch-callout: none;
   /* iOS Safari */
  -webkit-user-select: none;
   /* Safari */
   /* Konqueror HTML */
  -moz-user-select: none;
   /* Old versions of Firefox */
  -ms-user-select: none;
   /* Internet Explorer/Edge */
  user-select: none;
   /* Non-prefixed version, currently
									supported by Chrome, Edge, Opera and Firefox */
}

.bgImg1{
  background-image: url("../images/tummytuck.jpeg");
}

.bgImg2{
  background-image: url("../images/backtuck.jpeg");
}

.bgImg3{
  background-image: url("../images/thightuck.jpeg");
}

.bgImg4{
  background-image: url("../images/chintuck.jpeg");
}

.bgImg5{
  background-image: url("../images/calftuck.jpeg");
  background-size: 400px;
}

.bgImg6{
  background-image: url("../images/chesttuck.jpeg");
  background-size: 400px;
}

.sticky_box {
  position: fixed;
  top: 50%;
  right: -190px;
  z-index: 99;
}

.sticky_box ul {
  transform: rotate(90deg);
  margin: 0;
  padding: 0;
}

.sticky_box ul li {
  display: inline-block;
}

.sticky_box a {
  background-color: #90c438;
  padding: 10px 20px;
  color: #fff;
  margin: 0px 10px;
  box-shadow: 1px 1px 5px -1px #333;
  font-size: 14px;
}


.whtapp {
  position: fixed;
  bottom: 70px;
  right: 40px;
  width: 60px;
  z-index: 9;
  filter: drop-shadow(0px 4px 6px black);
}

.call {
  background-color: #90c438;
  padding: 50px 0px;
  color: #fff;
  border-top: 2px dashed grey;
}

.call .call_box {
  position: relative;
  padding-left: 90px;
}

.call small {
  display: block;
  margin-top: 5px;
}

.call i {
  font-size: 24px;
  border: 1px solid #fff;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-right: 10px;
  position: absolute;
  left: 0;
}

.call a {
  color: #fff;
  font-size: 25px;
}

#scrolltop {
  display: block;
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.5s ease-in;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  z-index: 99;
}

.top-button {
  text-align: center;
  text-decoration: none;
  font-size: 35px;
  font-weight: bold;
  line-height: 39px;
  cursor: pointer;
  color: #fff;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 10px;
  right: 30px;
  background-color: #443d0a;
  border-radius: 50px;
  z-index: 99;
  /* box-shadow: 0px 7px 8px -1px #333; */
}
 
.bck_btn {
  position: fixed;
  right: 0;
  top: 300px;
  background-color: #50c36e;
  padding: 5px 15px;
  font-size: 20px;
  border-radius: 100px 0px 0px 100px;
  color: #fff;
  z-index: 99;
  /* box-shadow: 3px 6px 10px -3px #000; */
}




/* css for mobile view  */

@media only screen and (width<350px) {
  body{
    display: none;
  }
}

@media only screen and (min-width:350px) and (max-width:700px){
  
  header .logo {
    width: 150px;
    padding: 2px 0px;
    position: relative;
    right: 0px;
  }

  .formBanner1 {
    display: flex;
    width: 90%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #efefef;
    margin: 22px auto;
    border-radius: 10px;
}

.formBanner1 h4{
 
    margin: 0px 15px;
    font-size: 30px;
    margin-top: 22px;

}

.formBanner1 small{
  margin: 0px 46px;
    font-size: 17px;
}

.formBanner1Btn{
  
  border: 2px solid green;
  width: 137px;
  font-size: 17px;
  color: green;
  background-color: white;
}

.formBanner1Btn:hover{
  color: white;
  background-color: green;
  border: 2px solid white;
}

  .row{
    margin-left: 0px;
    margin-right: 0px;
  }

  .banner{
    min-height: 0px;
  }

  .carousel-inner>.item>img, .carousel-inner>.item>a>img {
    display: block;
    max-width: 100%;
    height: 190px;
    line-height: 1;
}

.sec1{
  padding: 30px 0px;
}

.sec1Right img {
  width: 100%;
  margin-top: 28px;
}

.sec1Left{
  padding: 0px;
}

.sec1Left p {
  width: 100%;
  font-size: 15px;
  padding: 15px;
}

.sec1Left h1 {
  /* width: 603px; */
  text-align: center;
  margin-bottom: 38px;
  font-size: 19px;
}

.line {
  width: 40%;
  height: 3px;
  background-color: #5abf6e;
  margin-top: -25px;
  margin-bottom: 0px;
}

.container{
  padding-left: 15px;
}

.sec2Right img{
  width: 100%;
}

.sec2Heading h1{
  font-size: 19px;
}

.sec2Heading{
  margin-top: 12px;
}

.line2 {
  width: 50%;
  height: 3px;
  background-color: #5abf6e;
  margin-top: 0px;
  margin-bottom: 12px;
}

.abt_txt {
  width: 100%;
  text-align: justify;
  font-size: 18px;
}

.abt_txt ul {
  list-style: none;
  padding: 0px;
}

.abt_txt ul li {
  /* display: inline-block; */
  /* padding-left: 30px; */
  /* position: relative; */
  margin-bottom: 19px;
  font-size: 15px;
  padding: 0px 9px;
  text-align: initial;
}

.abt_txt ul li i{
  display: none;
}

.sec2Right h2{
  text-align: center;
  text-decoration: underline;
  color: #5abf6e;
  cursor: pointer;
  font-size: 20px;
}

.sec2{
  padding-bottom: 22px;
}

.sec2Left  .abt_txt ul li span{
  font-size: 16px;
}

.sec2Right img{
  margin-top: 6px;
}

.cta{
  padding: 12px 0px;
  text-align: center;
}

.cta h2 {
  padding-bottom: 22px;
  font-weight: bolder;
  color: white;
  text-shadow: 2px 1px black;
  font-size: 27px;
}

input{
  margin-bottom: 16px;
}

.ctaBtn{
  margin: 12px 0px;
}

.highlightSection{
  padding: 0px;
}

.abt_img img {
  margin: 25px 0px 37px 0px;
  padding: 0px 0px 0px 0px;
  position: relative;
  z-index: 9;
  border-radius: 11px;
}

.abt_txt ul {
  list-style: none;
  margin: 8px;
}

.highlightInfo ul li{
  text-align: center;
}

.abt_txt ul {
  list-style: none;
  margin: 0px;
}

.cost {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 15px 0px;
  background-image: url(https://ik.imagekit.io/4wkn9yhcxgvwt/ppc/artemis/parallax1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
}

.cost h1{
  font-size: 24px;
}

.line4 {
  width: 50%;
  height: 4px;
  background-color: #29610b;
  margin-top: 0px;
  margin-bottom: 22px;
}

.costInfo p {
  background-color: #216c47bf;
  font-size: 16px;
  color: white;
  padding: 20px;
  text-align: justify;
  border-radius: 22px;
  background-image: linear-gradient(114deg, #27ac89a1, #60cc1da0);
}

.questions{
  padding: 30px 0px;
  padding-bottom: 5px;
}

.questionBox1{
  margin-bottom: 25px;
}
.questionBox2{
  margin-bottom: 25px;
}
.questionBox3{
  margin-bottom: 25px;
}
.questionBox4{
  margin-bottom: 25px;
}

.questionBox4 p{
  font-size: 13px;
}

.questionBox1 ul{
  font-size: 13px;
}

.questionBox2 ul{
  margin-right: 0px;
}

.questionBox1 h3 {
  padding-bottom: 2px;
  text-align: center;
  font-size: 15px;
}
.questionBox2 h3 {
  padding-bottom: 2px;
  text-align: center;
  font-size: 17px;
}
.questionBox3 h3 {
  padding-bottom: 2px;
  text-align: center;
  font-size: 17px;
}
.questionBox4 h3 {
  padding-bottom: 2px;
  text-align: center;
  font-size: 17px;
}

.services{
  padding-top: 10px;
}

.services h1{
  font-size: 20px;
}

.line5 {
  width: 55%;
  height: 4px;
  background-color: #5abf6e;
  margin-top: 2px;
  margin-bottom: 28px;
}

.Cardcontainer {
  position: relative;
  width: 285px;
  height: 254px;
  transition: 200ms;
  margin-bottom: 100px;
  /* border: 2px dashed darkgreen; */
}

.sec2{
  padding: 15px;
}

.copy{
  font-size: 9px;
  padding-right: 15px;
}

.services{
  padding-bottom: 0px;
}

.canvas{
  z-index: 0;
}
}







