@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Yanone+Kaffeesatz:wght@200..700&display=swap");

/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px "Open Sans", sans-serif;
  color: #393939;
  overflow-x: hidden;
}

:root {
  --theme1: rgb(230, 230, 230);
  --theme2: rgb(190, 190, 190);
  --theme3: rgb(103, 103, 103);
  --theme4: rgb(71, 71, 71);
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
  font-family: "Open Sans", sans-serif;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  font-family: "Open Sans", sans-serif;
  color: #000;
}

/***** Font Files *****/

@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/fontawesome-webfont.woff) format("woff"),
    url(../fonts/fontawesome-webfont.ttf) format("truetype"),
    url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal;
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.pt_8 {
  padding-top: 80px;
}

.pb_8 {
  padding-bottom: 80px;
}

.py_8 {
  padding: 80px 0px;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 50px;
  line-height: 1;
  color: #606060;
  font-weight: 500;
  margin: 0;
}

h2 {
  font-family: "Alegreya", serif;
  font-size: 30px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
  margin: 0 0 20px;
}

h3 {
  font-family: "Alegreya", serif;
  font-size: 30px;
  line-height: 1.2;
  color: #000000;
  font-weight: 400;
  margin: 0 0 28px;
}

h4 {
  font-family: "Poppins", Sans-Serif;
  font-size: 24px;
  line-height: 1.2;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: "Poppins", Sans-Serif;
  font-size: 20px;
  line-height: 1.2;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: "Open Sans";
  font-size: 25px;
  line-height: 1.2;
  color: #606060;
  font-weight: 700;
  margin: 0 0 22px;
}

select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/*header css start */

.menuSec {
  padding: 10px 0;
  background: #fff;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0;
}
.menuSec ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  position: relative;
}

.menuSec li:hover ul {
  opacity: 1;
  visibility: visible;
}

.menuSec ul li a {
  position: relative;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  transition: 0.5s;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: var(--primary-color);
}

.menuSec li > ul {
  position: absolute;
  z-index: 0;
  background-color: #fff;
  left: 0;
  width: 240px;
  text-align: left;
  opacity: 0;
  transition: 0.2s ease-in-out;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 0;
  box-shadow: 0 0 10px #ccc;
  column-count: 2;
  display: flex;
  padding: 10px 0;
  visibility: hidden;
  top: 60px;
}

.menuSec li:hover ul {
  transition: 0.2s ease-in-out;
  top: 60px;
  z-index: 99;
}

.menuSec li > ul:after {
  position: absolute;
  content: "";
  background: #606060;
  width: 20px;
  height: 20px;
  top: -20px;
  left: 10px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.menuSec li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  /* color: #fff !important; */
  font-size: 13px;
  line-height: 20px;
  width: 100%;
}

.menuSec li > ul > li,
.menuSec li > ul > li > a {
  display: block;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #848484;
  font-family: "Inter", sans-serif;
  text-transform: capitalize;
}

.menuSec li > ul > li > a:before,
.menuSec li > ul > li > a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
  width: 100%;
}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.droopdwon li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/*banner css start */

/* Tab slider fix  */

.tab_sec .tab-pane {
  display: block;
  border: 0;
  height: 0;
}

.tab_sec .tab-pane.active {
  display: block !important;
  height: auto;
}

/* Tab slider fix  */

.carousel-inner > .item > a > img,
.carousel-inner > .item > img {
  width: 100%;
}

.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}

.carousel-control.right {
  right: 0px;
}

.carousel-control.left {
  left: 0px;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px;
  height: 12px;
  padding: 0;
  margin: 3px !important;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 1;
  /* transition: opacity 0.6s ease; */
  border-radius: 20px;
}

.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}

.carousel-indicators .active {
  margin: 0;
  background-color: #28b16d;
  width: 10px;
  height: 12px;
}

/*banner css end*/

.blog_sec {
  padding: 5% 0;
}

/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
  background: #242889;
  color: #fff;
}

.tab_sec .nav-tabs .nav-link {
  background: #ccc;
  border-radius: 50px;
  color: #000;
  padding: 7px 28px;
}

.tab_sec .nav-tabs {
  border: none;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

/* Tabs  */

/* ++++++++++++++++++++++++++++++++++ HOME ++++++++++++++++++++++++++++++++++ */
.topSec {
  padding: 10px 0;
}

img.img-fluid {
  height: 750px;
  width: 100%;
  object-fit: cover;
}

.logo p {
  margin: 0;
  color: #0e0e0e;
  font-size: 15px;
}

.logo {
  width: fit-content;
  text-align: center;
}

.topSec .row {
  align-items: center;
}

.num-details {
  width: fit-content;
  margin: 0 0 0 auto;
  text-align: right;
}

.num-details h2 {
  font-size: 20px;
  color: #474747;
  margin: 0;
  font-family: "Open Sans";
  font-weight: 600;
}

.num-details a {
  font-size: 20px;
  color: #474747;
  margin: 0;
  font-family: "Open Sans";
  font-weight: 400;
}

.trat-para p {
  margin: 0;
  background: rgb(190, 190, 190);
  padding: 15px 0;
  text-align: center;
  color: #606060;
  font-size: 25px;
  font-weight: 700;
}

section.after-banner ul {
  display: flex;
  align-items: center;
  gap: 1.25%;
  padding: 20px;
  flex-wrap: wrap;
  margin: 0;
}

section.after-banner ul li img {
  height: 37vh;
  width: 100%;
  object-fit: cover;
}

section.after-banner ul li {
  width: 19%;
}

section.avance-asthetic {
  background-color: var(--theme1);
  margin: 0 20px !important;
  text-align: center;
  padding: 70px;
}

.asthetic-wrap img {
  width: 270px;
  height: 240px;
  object-fit: contain;
}

.asthetic-wrap p {
  font-size: 21px;
  color: #606060;
  font-weight: 600;
  line-height: 30px;
}

.asthetic-wrap .btn1 {
  margin: 0 auto;
}

.btn1 {
  background: var(--theme4);
  padding: 0 30px;
  width: fit-content;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 21px;
  border: 1px solid #fff;
  transition: 0.5s;
}

.btn1:hover {
  border-color: rgba(255, 255, 255, 0.498039);
  background-color: rgb(159, 159, 159);
  color: rgb(0, 0, 0);
}

section.poster-bar {
  padding: 110px 0 0 0;
  background: var(--theme3);
  margin-top: 20px;
}

section.poster-bar p {
  background: rgb(159, 159, 159);
  text-align: center;
  margin: 0;
  padding: 20px 0;
  font-size: 23px;
  color: #fff;
}

section.poster-bar p a {
  color: #fff;
  border-bottom: 1px solid #fff;
}

section.about {
  padding: 20px 0;
}

.abt-text {
  border-color: rgb(103, 103, 103);
  border-top-width: 4px;
  border-right-width: 4px;
  border-bottom-width: 4px;
  border-left-width: 4px;
  border-style: double;
  padding: 60px 30px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.abt-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

footer {
  background: var(--theme3);
  padding-top: 30px;
}

.footertext a:hover {
  border-bottom: 1px solid #fff;
  width: fit-content;
}

footer h2 {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

p.footertext {
  font-size: 13px;
  color: #fff;
  margin-bottom: 0;
  line-height: 2;
  transition: 0.5s;
}

p.footertext span {
  font-weight: 700;
}

p.footertext a {
  color: #fff;
  font-size: 13px;
}

ul.module.socialmedia li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
  transition: 0.5s;
}

ul.module.socialmedia li a:hover {
  color: #000;
  background: #fff;
}

.copy-write p {
  margin: 0;
  background: var(--theme4);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin-top: 100px;
  font-size: 13px;
}

/* ++++++++++++++++++++++++++++++++++ HOME end ++++++++++++++++++++++++++++++++++ */

/* Inner Pages */
section.main_slider.inner-ban img.img-fluid {
  height: 500px;
}

section.main_slider.inner-ban .trat-para p {
  font-family: "Alegreya", serif;
  font-size: 30px;
  color: #000;
  font-weight: 500;
  line-height: 1.2;
}

.top-head {
  text-align: center;
  margin-bottom: 40px !important;
}

.abt-text.abt-text2 {
  height: 450px;
}

.abt-img.abt-img2 img {
  height: 450px;
}

.abt-img.abt-img3 img {
  height: 360px;
  object-position: top;
}

.abt-text.abt-text3 {
  height: 360px;
}

section.poster-bar.inner-poster {
  padding: 0;
}

section.faqs .container-fluid {
  padding: 20px 20px 0;
}

.faq-wrap {
  border-color: rgb(103, 103, 103);
  border-top-width: 4px;
  border-right-width: 4px;
  border-bottom-width: 4px;
  border-left-width: 4px;
  border-style: double;
  padding: 20px;
  margin-bottom: 20px !important;
}

.faq-wrap:last-child {
  margin: 0;
}

ul.tri-listing {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
}

ul.tri-listing li {
  width: 25%;
  position: relative;
  line-height: 30px;
  margin-left: 20px;
}

ul.tri-listing li:before {
  position: absolute;
  content: "";
  width: 9px;
  height: 13px;
  background: #000;
  left: -14px;
  top: 50%;
  transform: translate(0, -50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

section.testimonial .container {
  padding: 20px 0;
}

.testi-wrap {
  border-color: rgb(103, 103, 103);
  border-top-width: 7px;
  border-right-width: 7px;
  border-bottom-width: 7px;
  border-left-width: 7px;
  border-style: double;
  text-align: center;
  padding: 20px;
  margin-bottom: 40px;
}

.stars i {
  color: #ffc107;
  font-size: 20px;
}

.stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  margin: 10px 0;
}

.testi-wrap h5 {
  margin: 0;
  font-size: 15px;
  color: #000;
}

.testi-wrap:last-child {
  margin-bottom: 0;
}

section.review {
  padding: 40px 0;
  background: var(--theme3);
}

.review-form {
  background-color: #fff;
  border-top-width: 18px;
  border-bottom-width: 18px;
  border-right-width: 18px;
  border-left-width: 18px;
  border-style: double;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  padding: 20px 10px;
}

.review-form input,
.review-form textarea {
  border-radius: 3px;
  color: rgb(69, 69, 69);
  font-size: 14px;
  width: 100%;
  padding-left: 15px;
  height: 45px;
  background: #f8f8f8;
  margin-bottom: 13px !important;
  border: 1px solid #ccc;
}

.review-form h5 {
  color: #606060;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.review-form input[type="radio"] {
  width: 20px;
  height: 20px;
  line-height: 1;
  margin: 0 !important;
}

.review-form label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}

ul.rating {
  display: flex;
  gap: 10px !important;
  margin-bottom: 20px !important;
}
.review-form textarea {
  background: #fff;
  height: 120px;
  padding-top: 7px;
}

.check-box p {
  color: rgb(68, 58, 223);
}

.check-box {
  display: flex;
  gap: 10px !important;
  margin: 10px !important;
  cursor: pointer;
}

.review-form .check-box input {
  width: 30px;
  height: 30px;
}

.robot {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  margin: 0;
}

.box-container {
  background-color: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  align-items: center;
  padding: 10px 0px 10px 0px;
  width: 300px;
  display: flex;
  align-items: center;
}

.box-container input[type="checkbox"] {
  appearance: none;
  width: 26px;
  height: 26px;
  border: 2px solid #c1c1c1;
  margin: 0px 14px 0px 14px;
  line-height: 1;
  padding: 0;
}

.box-container input[type="checkbox"]:checked::before {
  content: url(https://img.icons8.com/?size=20&id=27&format=png&color=1e5180);
  display: block;
  line-height: 20px;
  padding: 0.05rem 0.6rem 0rem 0.05em;
}

.box-container .logo {
  display: block;
  margin-left: 0;
}

.box-container .logo-text {
  text-align: right;
  font-size: 9px;
  font-family: "Roboto", sans-serif;
}

.box-container .logo-text-tos {
  display: block;
  text-align: right;
  font-size: 9px;
  margin: 0;
}

.box-container .container {
  margin-right: 0;
  line-height: 0.1rem;
  padding: 0;
  text-align: center;
  width: 100%;
}

.box-container > div {
  margin-left: 40px;
}

.review-form .btn1 {
  margin-top: 20px;
}

section.poster-bar.inner-poster.poster-revi {
  margin: 0;
}

section.poster-bar.inner-poster.poster-revi p {
  background: var(--theme3);
  margin: 0;
}
section.contact {
  padding: 30px 0 0;
}

section.contact .row {
  align-items: center;
}

section.contact h5 {
  font-size: 16px;
  color: #000;
  font-weight: 600;
}

.contact-info a span {
  font-size: 16px;
  color: #000;
  font-weight: 600;
}

.contact-info a {
  display: block;
  color: #000;
}

section.contact .review-form {
  border-style: double;
  border-top-width: 8px;
  border-bottom-width: 8px;
  border-right-width: 8px;
  border-left-width: 8px;
}
.map iframe {
  width: 100%;
  margin-top: 80px;
  height: 400px;
}
section.pricing {
  padding: 50px 0;
}
.pricing-text ul li {
  font-size: 26px;
  color: #000;
  font-family: "Alegreya", serif;
  font-weight: 400;
  line-height: 40px;
}

.pricing-text ul {
  border-color: rgb(103, 103, 103);
  border-width: 4px;
  border-style: double;
  padding: 20px;
}

.pricing-img img {
  width: 100%;
  height: 530px;
  object-fit: cover;
}

section.after-banner.pric-ban ul li {
  width: 24%;
}

section.after-banner.pric-ban ul {
  padding: 0;
}

section.after-banner.pric-ban ul li img {
  height: 250px;
}

section.latest-price {
  padding: 80px 0;
}
section.latest-price .top-head {
  background: rgb(190, 190, 190);
  padding: 20px 0;
}
section.latest-price .top-head p {
  width: 60%;
  margin: 0 auto;
}
.latest-wrap ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  line-height: 1.9;
}
section.latest-price .midle-box {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
section.latest-price .col-md-4:first-child {
  border: 0;
}
section.latest-price.price-terma {
  padding-top: 80px;
  padding-bottom: 0 !important;
}
.therma-texts {
  border-color: rgb(103, 103, 103);
  border-top-width: 4px;
  border-right-width: 4px;
  border-bottom-width: 4px;
  border-left-width: 4px;
  border-style: double;
  height: 300px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 50px !important;
}

.terma-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.therma-texts p {
  font-size: 16px;
  /* font-family: "Alegreya", serif; */
}
section.enquiry-form h3 {
  text-align: center;
}

.review-form {
  border-width: 4px;
}
section.enquiry-form .top-head {
  background: rgb(190, 190, 190);
  padding: 40px 0;
}

section.enquiry-form .top-head h2 {
  margin: 0;
}
section.privacy-policy {
  padding: 50px 0;
}
section.privacy-policy h4 {
  font-size: 16px;
  color: #000;
  font-weight: 600;
}

section.privacy-policy p span {
  font-size: 16px;
  color: #000;
  font-weight: 600;
}

/* Inner Pages end */

/* price li8st page starts  */
.non-laser-pricing-box {
  padding: 20px;
  margin: 0 0 30px 0 !important;
  border-radius: 10px;
  border-color: rgb(103, 103, 103);
  border-width: 4px;
  border-style: double;
}
p.non-laser-prising {
  font-weight: 600;
  font-size: 20px;
}

.price-non-laser {
  margin: 100px 0;
}
.non-laser-pricing-box h4 {
  font-size: 25px;
  text-transform: capitalize;
  font-weight: 600;
}

.price-non-laser > h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 40px;
  text-align: center;
}
.abt-text h5 {
  font-family: "Alegreya", serif;
  text-align: end;
  margin-top: 20px;
  font-weight: 600;
  color: #000;
}
/* price li8st page ends */

/*Gallery Start*/

.gallery-img {
  margin: 12px 0;
}

.gallery-img img {
  width: 100%;
  height: 275px;
}

.siteImg {
  display: inline-block;
  transition: 0.3s;
  border-radius: 33px;
}

.siteImg:hover {
  filter: brightness(0.8);
  transform: scale(1.1);
}

.imgWrap {
  position: relative;
  overflow: hidden;
  border-radius: 33px;
}

section.gallery {
  padding: 100px 0;
}
section.testimonial h3 {
  text-transform: capitalize;
}
/*Gallery Start*/

@media (max-width: 1366px) {
  .asthetic-wrap p {
    font-size: 16px;
    line-height: 30px;
  }

  .trat-para p {
    font-size: 20px;
    line-height: 30px;
  }

  section.poster-bar p {
    font-size: 18px;
    line-height: 28px;
  }

  .top-head p br {
    display: none;
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 35px;
    line-height: 45px;
  }

  .logo p {
    font-size: 12px;
    line-height: 22px;
  }

  .num-details h2 {
    font-size: 16px;
    line-height: 23px;
  }

  .num-details a {
    font-size: 14px;
    line-height: 20px;
  }

  .menuSec ul li a {
    font-size: 15px;
    line-height: 22px;
  }

  section.main_slider .carousel-item img.img-fluid {
    height: 600px;
  }

  section.after-banner ul li img {
    height: 200px;
  }

  .asthetic-wrap p {
    font-size: 13px;
    line-height: 28px;
  }

  section.poster-bar {
    padding: 60px 0 0 0;
  }

  section.poster-bar p {
    font-size: 14px;
    line-height: 26px;
  }

  .abt-text {
    padding: 30px 20px;
    height: 380px;
  }

  .abt-img img {
    height: 380px;
  }

  p {
    font-size: 14px;
    line-height: 24px;
  }

  .copy-write p {
    margin-top: 40px;
  }

  h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 14px;
  }

  ul.tri-listing li {
    width: 28%;
    font-size: 13px;
    line-height: 23px;
  }

  .gallery-img img {
    height: 200px;
  }

  section.pricing .vc_col-sm-10 {
    width: 100% !important;
  }

  section.main_slider.inner-ban .carousel-item img.img-fluid {
    height: 390px;
  }

  section.pricing .vc_col-sm-8 {
    width: 100% !important;
  }

  p.non-laser-prising {
    font-size: 16px;
    line-height: 22px;
  }

  section.latest-price.price-terma .vc_col-sm-10 {
    width: 100% !important;
  }

  section.after-banner.pric-ban .vc_col-sm-10 {
    width: 100% !important;
  }

  section.latest-price .top-head p {
    width: 90%;
  }

  section.latest-price .vc_col-sm-10 {
    width: 100% !important;
  }
}

@media (max-width: 880px) {
  .menuSec .col-md-9.d-none.d-md-block.m-auto {
    width: 100%;
  }

  .menuSec ul {
    justify-content: space-between;
  }

  section.main_slider .carousel-item img.img-fluid {
    height: 500px;
  }

  .trat-para p {
    font-size: 15px;
    line-height: 23px;
  }

  .asthetic-wrap p br {
    display: none;
  }

  h2 {
    font-size: 25px;
    line-height: 30px;
  }

  footer h2 {
    font-size: 14px;
    line-height: 20px;
  }

  p.footertext {
    font-size: 12px;
    line-height: 22px;
  }

  ul.module.socialmedia li a {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  section.poster-bar p {
    font-size: 12px;
    line-height: 24px;
  }

  .top-head p br {
    display: none;
  }

  section.main_slider.inner-ban .carousel-item img.img-fluid {
    height: 400px;
  }

  section.main_slider.inner-ban .trat-para p {
    font-size: 24px;
    line-height: 30px;
  }

  .abt-text.abt-text2 {
    height: 470px;
    padding: 10px 9px;
  }

  .abt-text.abt-text2 h2 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 25px;
  }

  .abt-text.abt-text2 p {
    font-size: 13px;
    line-height: 20px;
  }

  .abt-img.abt-img2 img {
    height: 470px;
  }

  .abt-text.abt-text3 h2 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 25px;
  }

  .abt-text.abt-text3 p {
    font-size: 13px;
    line-height: 20px;
  }
  ul.tri-listing li {
    width: 100%;
  }

  .gallery-img img {
    height: 170px;
  }

  section.gallery .gallery-img {
    margin: 5px 0;
  }

  section.gallery .vc_column_container > .vc_column-inner {
    padding-left: 5px;
    padding-right: 5px;
  }

  section.gallery {
    padding: 60px 0;
  }

  section.pricing .vc_col-sm-1 {
    display: none !important;
  }

  .pricing-img img {
    height: 420px;
  }

  .non-laser-pricing-box h4 {
    font-size: 20px;
    line-height: 30px;
  }

  section.pricing .vc_column_container > .vc_column-inner {
    padding: 0px !important;
  }

  section.after-banner.pric-ban .vc_column_container > .vc_column-inner {
    padding: 0px;
  }

  .non-laser-pricing-box {
    margin-bottom: 0px !important;
  }

  section.after-banner.pric-ban ul li img {
    height: 180px;
  }

  section.latest-price.price-terma {
    padding-top: 40px;
  }

  .latest-wrap p {
    font-size: 12px;
    line-height: 20px;
  }

  section.latest-price span {
    font-size: 11px;
    line-height: 20px;
  }

  section.latest-price h3 {
    font-size: 18px;
    line-height: 22px;
  }

  section.enquiry-form .top-head {
    padding: 20px 0;
  }

  section.latest-price .vc_col-sm-1 {
    display: none !important;
  }

  section.latest-price {
    padding: 60px 0;
  }
  .page-id-185 .price-non-laser {
    margin: 60px 0 !important;
  }

  .price-non-laser h2 {
    font-size: 28px !important;
    margin-bottom: 30px !important;
    line-height: 29px;
  }

  .page-id-185 .non-laser-pricing-box {
    margin-bottom: 20px !important;
  }
}

@media (max-width: 480px) {
  .topSec .row .col-md-6 {
    width: 100%;
  }

  .topSec .row .logo {
    width: 100%;
  }

  .num-details {
    width: 100%;
    text-align: center;
  }

  .menuSec {
    padding: 0px;
  }

  .trat-para p {
    font-size: 13px;
    line-height: 22px;
  }

  section.after-banner ul {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  section.after-banner ul li {
    width: 80%;
  }

  .asthetic-wrap p {
    line-height: 22px;
  }

  .btn1 {
    font-size: 14px;
    line-height: 20px;
    height: 45px;
  }

  .abt-text h5 {
    text-align: center;
  }

  .abt-text {
    text-align: center;
  }

  section.main_slider .carousel-item img.img-fluid {
    height: 300px;
  }

  footer h2 {
    font-size: 20px;
    line-height: 28px;
  }

  .textwidget.custom-html-widget {
    margin-bottom: 24px;
  }

  p.footertext {
    font-size: 14px;
    line-height: 28px;
  }

  footer {
    padding: 50px 0 0;
  }

  .topSec .textwidget.custom-html-widget {
    margin-bottom: 0px;
  }

  section.main_slider.inner-ban .carousel-item img.img-fluid {
    height: 280px;
  }

  .abt-text.abt-text2 {
    height: auto;
    margin-bottom: 30px;
    padding: 24px 12px;
  }

  .abt-text.abt-text2 h2 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 20px;
  }

  .abt-text.abt-text2 p {
    font-size: 13px;
    line-height: 24px;
  }

  .abt-text.abt-text3 {
    height: auto;
    margin-top: 20px;
    padding: 24px 12px;
  }

  .abt-text.abt-text3 h2 {
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 35px;
  }

  .abt-text.abt-text3 p {
    font-size: 14px;
    line-height: 24px;
  }
  .abt-img.abt-img3 img {
    height: auto;
  }

  .abt-img.abt-img2 img {
    height: auto;
  }

  .faq-wrap {
    padding: 14px;
  }

  h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .faq-wrap p {
    font-size: 13px;
    line-height: 22px;
  }
  .gallery-img img {
    height: auto;
  }

  section.gallery .gallery-img {
    margin: 10px 0;
  }

  section#custom_html-7 .textwidget.custom-html-widget {
    margin: 0px !important;
  }

  .copy-write p {
    margin-top: 20px;
  }

  section.testimonial .row {
    margin: 0px auto;
  }

  section.testimonial h3 {
    font-size: 24px;
    line-height: 35px;
  }

  section.testimonial p {
    line-height: 24px;
    font-size: 13px;
  }

  section.testimonial .stars i {
    font-size: 12px;
  }

  section.main_slider.inner-ban .trat-para p br {
    display: none;
  }

  .review-form input[type="radio"] {
    width: 12px;
    height: 12px;
  }

  .review-form label {
    font-size: 12px;
  }

  section.pricing .non-laser-pricing-box {
    margin-bottom: 30px !important;
  }

  section.pricing {
    padding-bottom: 10px;
  }

  section.after-banner.pric-ban ul li {
    width: 90%;
  }

  .therma-texts {
    margin-bottom: 20px !important;
  }

  .terma-img {
    margin-bottom: 20px !important;
  }

  section.latest-price h3 {
    font-size: 24px;
    line-height: 31px;
  }

  section.latest-price span {
    font-size: 13px;
    line-height: 24px;
  }

  .latest-wrap ul {
    margin-bottom: 30px !important;
  }

  section.latest-price .midle-box {
    border: 0px !important;
  }

  section.latest-price {
    padding-bottom: 30px;
  }

  section.enquiry-form .top-head h2 {
    font-size: 20px;
    line-height: 24px;
  }

  section.latest-price .vc_column_container > .vc_column-inner {
    padding: 0px !important;
  }
  
  
.page-id-185 .price-non-laser .vc_column-inner {
  padding: 0px !important;
}

.price-non-laser h2 {
  font-size: 19px !important;
}

section.main_slider.inner-ban .trat-para p {
  font-size: 20px;
  line-height: 26px;
}
p {
    font-size: 13px;
    line-height: 23px;
}

}


@media (max-width: 390px) {
  section.main_slider .carousel-item img.img-fluid {
    height: 240px;
    width: 100% !important;
  }
}