@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap');
/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

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-weight: 500;
   font-family: 'Montserrat';
}


/***** Font Files *****/

@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Regular.ttf);
  font-weight: 400;
  font-style: normal
}
@font-face {
  font-family: 'IvyMode';
  src: url(../fonts/IvyMode-Regular.ttf);
  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;
}

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #fff;
  color: #000;
  border-color: unset;
}

.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: "Black Ops One", system-ui !important;
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
   font-family: "Black Ops One", system-ui;
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
   font-family: "Black Ops One", system-ui;
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
    font-family: "Black Ops One", system-ui;
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
    font-family: "Black Ops One", system-ui;
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: 'Montserrat';
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  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: 0px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 20px 0px 0px 0px;
  margin: 0;
  text-align: unset;
  text-transform: capitalize;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #393939;
    padding: 10px 30px;
    font-size: 17px;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.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: #8e7d73;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !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;
}

.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;
}
header {
    padding: 0px 0px;
    position: relative;
    z-index: 999;
}

.search {
    position: absolute;
    top: 0px;
    right: 0px;
}
a.bnt-1.one:hover {
    background-color: #313b45;
    border: none;
}
a.bnt-1:hover{
  background-color: #313b45;
}
header .row {/* align-items: center; */}

/*header css end*/
/*banner css start */
section.banner {
    position: relative;
    margin-top: -50px;
}
.social-med ul.ft-social-icon {
    display: flex;
}
.nike-zoom-silder-number {
    display: flex;
    align-items: center;
    /* margin-top: 40px; */
    position: absolute;
    bottom: 0%;
    width: 52.2%;
    background-color: #fff;
    padding: 10px 53px;
    right: 0;
    align-items: center;
    justify-content: space-around;
    }
   .slide_counter {
    position: relative;
}
.slide_counter h2::before {
    position: absolute;
    content: '';
    background-color: #00000061;
    top: 30px;
    height: 1px;
    width: 100px;
    left: -119px;
}
.slide_counter h2::after {
    position: absolute;
    content: '';
    background-color: #00000061;
    top: 30px;
    height: 1px;
    width: 100px;
    right:-119px;
}
.slide_counter h2 {
    font-size: 17px;
    margin-bottom: 0;
    color: #fff;
    display: flex;
    gap: 30px;
    position: relative;
}
span.start_number {
    color: #000;
}
.search i {
    background-color: #99877b;
    font-size: 22px;
    width: 64px;
    height: 69px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

section.banner img {
    width: 100%;
}
.bann-txt p {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 30px;
}

.bann-txt h1{
  font-size: 80px;
  color: #fff;
  line-height: 80px;
}
.bann-slid .slick-slide {
    margin: 0px 0px;
}
.bann-txt h1 span{
display: block;
}
.social-med ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}


.social-med ul li h6 {
    font-size: 12px;
    margin-bottom: 0;
    color: #283d34;
    letter-spacing: 2px;
}

.social-med {
    position: absolute;
    top: 0;
    right: 0px;
    writing-mode: tb;
    background-color: #fff;
    width: 4%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 100%;
    padding: 0px 11px 0px 0px;
}

.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 {}
.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;
}
.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;
}
a.bnt-1 {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #a89082;
    width: fit-content;
    padding: 0px 0px 0px 20px;
    border-radius: 10px;
    color: #fff;
    font-family: 'Montserrat';
    font-size: 14px;
}
a.bnt-1 img {
    width: auto;
    border-radius: 5px;
}
/*banner end*/
/*section after start*/
.after-slid .slick-active {
    opacity: 1;
}
.after-slid .slick-prev, .after-slid .slick-next {
    position: absolute;
    top: auto;
    /* left: auto; */
    bottom: -80px;
    /* margin: 0 auto; */
    right: 0;
    width: 90%;
}
.after-slid .slick-prev:before {
    position: absolute;
    top: -3px;
   /* content: '\f177';*/
    font-size: 36px;
    font-family: 'Font Awesome 6 pro';
    font-weight: 700;
    color: #837a73;
}
.after-slid .slick-next:before {
    position: absolute;
    top: -3px;
    /*content: '\f178';*/
    font-size: 36px;
    font-family: 'Font Awesome 6 pro';
    font-weight: 700;
    color: #837a73;
}
section.after-before {
    padding: 40px 0px 80px;
}

.after-txt-top {
    text-align: center;
    margin-bottom: 40px;
}

.after-txt-top h3 {
    font-size: 50px;
    line-height: 50px;
}
.after-main-bx img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.after-main-bx {
    box-shadow: 0 0 10px #000c;
    background-color: #a89082a8;
    padding: 10px;
    border-radius: 20px;
}
.after-slid .slick-slide {
    margin: 0px 10px;
}
/*section after end*/
/*about start*/
section.about {
    padding: 100px 0px;
}
.abt-txt-2 ul {
    column-count: 2;
}
.abt-txt h3 span {
    display: block;
}
.abt-txt-2 ul li {
    list-style: disc;
    padding: 5px 0px;
}
.abt-txt h3 {
    font-size: 50px;
    line-height: 50px;
    color: #252525;
}
.abt-txt-2 {
    margin-top: 25px;
}
.abt-txt-2 p{
  font-size: 14px;
  color: #313b45;
  margin-bottom: 30px;
}
.abt-txt h5 {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 10px;
    font-family: 'IvyMode';
}
a.bnt-1.one {
    background-color: #837a73;
    border: 2px solid #a89082;
}
.abt-img img {
    width: 100%;
    height: 540px;
    object-fit: cover;
}
/*about end*/
/* Brand Section Start */

.brand-text img {
    width: auto;
}

section.brand-sec {
    padding: 20px 0;
    /* border-top: 2px solid; */
    /* background: linear-gradient(359deg, rgba(189,154,89,1) 61%, rgba(204,198,134,1) 69%); */
    margin: 0px 0px 70px;
}

.brand-text h5 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    font-size: 28px;
    color: #000;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
}
.brand-sec .slick-slide {
    transition: all ease-in-out 0.3s;
    opacity: 1;
    margin: 0;
}
.brand-text img {
    width: 180px;
}
/* Brand Section End */
/*explore start*/
section.explore{
  background-image: url(../images/explore-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 80px 0px;
  margin-bottom: 70px;
}
.explore-txt h4 span {
    display: block;
}
.explore-txt h4 {
    font-size: 49px;
    color: #fff;
    line-height: 64px;
    font-weight: 300;
}
.explore-txt p{
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
}
/*explore end*/
/*faq start*/
.faq-txt-head h3 {
    text-align: center;
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 40px;
    font-weight: 400;
}
section.faq\'s .accordion-button {
    font-size: 31px;
    color: #242424;
}
section.faq\'s {
    padding: 40px 0px 70px 0px;
}
.accordion-button::after {
    background-image: url(../images/plus.png);
    content: '';
    width: 30px;
    background-size: contain;
    position: absolute;
    top: 40px;
    right: 0;
}
/*faq's end*/
/*client start*/
.client-head-txt h4 {
    font-size: 50px;
    color: #313b45;
    line-height: 50px;
    margin-bottom: 50px;
}
.client-head-txt {
    text-align: center;
}
.client-img img {
    width: 70px;
}
.main-dv-reviews ul li img {
    width: 62px;
    position: relative;
    top: -47px;
    z-index: 999;
}
.main-dv-reviews ul li p {
    text-align: center;
    font-size: 12px;
    color: #313b45;
    width: 92%;
    margin: 0 auto;
    margin-top: -27px;
}
.main-dv-reviews {
    box-shadow: 0 0 10px 0px #00000024;
    padding: 20px;
    background-color: #fff;
    margin: 30px 0px;
    position: relative;
}
.main-dv-reviews::before {
    position: absolute;
    top: 19px;
    left: -14px;
    border: 1px solid #a79082;
    content: '';
    /* background-color: #a79082; */
    width: 104%;
    height: 100%;
    z-index: -1;
}
.client-img-txt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}
.client-bx-txt h5 span {
    display: block;
    font-size: 14px;
}
.client-bx-txt h5 {
    font-size: 24px;
    color: #313b45;
}
.reviewsslid .slick-dots li button:before {
    font-family: 'slick';
    font-size: 10px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 25px;
    text-align: center;
    opacity: 1;
    color: #b2b2b2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "•";
}
section.happy-client {
    padding-bottom: 100px;
}
section.happy-client .slick-prev, section.happy-client .slick-next {
    position: absolute;
    top: auto;
    /* left: auto; */
    bottom: -46px;
    /* margin: 0 auto; */
    right: 0;
    width: 80%;
}
ul.slick-dots {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    bottom: -40px;
    width: fit-content;
    margin: 0 auto;
    left: 0;
    right: 0;
}
section.happy-client .slick-next:before {
    position: absolute;
    top: -3px;
   /* content: '\f178';*/
    font-size: 36px;
    font-family: 'Font Awesome 6 pro';
    font-weight: 700;
    color: #837a73;
}
section.happy-client .slick-prev:before {
    position: absolute;
    top: -3px;
    /*content: '\f177';*/
    font-size: 36px;
    font-family: 'Font Awesome 6 pro';
    font-weight: 700;
    color: #837a73;
}
/*client-end*/
/*Footer Start*/


footer {
    background: #111111;
}
ul.ft-social-icon li {
    border: 1px solid #7e7e7e;
    width: 37px;
    height: 38px;
    font-size: 20px;
    padding: 7px 9px;
    border-radius: 30px;
    margin-bottom: 46px;
}
ul.ft-social-icon {
    display: grid;
    justify-content: center;
    padding: 89px 0px 0px;
    margin-bottom: 0px;
}
ul.ft-social-icon li a {
    color: #7e7e7e;
}
.ft-logo .head-logo a {
    color: #000;
}
.ft-logo {
    text-align: center;
    padding: 71px 0px;
}
ul.socialmedia-linksft {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
    padding: 0px 35px;
}
ul.socialmedia-linksft li a {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 14px;
    color: #7e7e7e;
    text-transform: uppercase;
    /* border-left: 2px solid #7e7e7e; */
    padding-left: 8px;
}
.maindv-social-icons {
    padding: 30px 0px 40px;
    border-left: 1px solid #414548;
    height: 100%;
}
.ft-news h2 {
    font-size: 30px;
    text-transform: capitalize;
    /* letter-spacing: 6px; */
    margin-bottom: 4px;
    color: #fff;
}
.ft-news input {
    width: 100%;
    /* border: 1px solid #707273; */
    padding: 10px 10px;
    background: #292929;
    outline: none;
    border: none;
}
.ft-news {
    padding: 14px 40px;
    border-top: 1px solid #414548;
}
.number-field p {
    font-family: 'IvyMode';
    font-size: 20px;
    margin-bottom: 5px;
    color: #fff;
    text-transform: capitalize;
}
.number-field a {
    font-family: 'Montserrat';
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
}
.number-field {
    text-align: center;
    padding: 53px 0px;
    border-bottom: 1px solid #414548;
}
.company-text {
    padding: 76px 0px 10px;
    text-align: center;
    color: #828282;
}
.maindv-con-detail {
    border-left: 1px solid #414548;
    border-right: 1px solid #414548;
}
.maindv-social-links-newsletter {
    border-left: 1px solid #414548;
}
.follow-text p {
    text-transform: uppercase;
    font-size: 15px;
    transform: rotate(90deg);
    letter-spacing: 1px;
    width: 100%;
    color: #fff;
}
.follow-text {
    padding: 250px 0px 0px;
}
.social-link-heading h2 {
    font-size: 30px;
    /* font-family: 'blenderpro'; */
    /* text-transform: uppercase; */
    padding: 0px 35px;
    color: #fff;
    margin-bottom: 10px;
}
.ft-logo .head-logo {
    /* background: #fff; */
    margin-left: 11px;
    padding: 14px 0px;
}
ul.ft-social-icon li:hover {
    background: #d1beb0;
    border: unset;
}
ul.ft-social-icon li:hover a {
    color: #000;
}
ul.socialmedia-linksft li a:hover {
    color: #fff;
}
.number-field a:hover {
    color: #d1beb0;
}
.ft-news input::placeholder {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 14px;
    color: #7e7e7e;
}
button.theme-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #000;
    width: fit-content;
    padding: 0px 0px 0px 20px;
    border-radius: 10px;
    color: #d1beb0;
    font-family: 'Montserrat';
    font-size: 14px;
    border: 1px solid #d1beb0;
}
/*Footer End*/
/*treatment start*/
section.treatment::before {
    position: absolute;
    content: '';
    height: 140px;
    width: 100%;
    background-color: #a89082;
    z-index: -1;
    top: 0;
}

section.treatment {
    padding: 40px 0px 130px;
    position: relative;
}
.treat-txt h4 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 30px;
    color: #fff;
}
.treat-slid .slick-prev, section.treatment .slick-next {
    position: absolute;
    top: auto;
    /* left: auto; */
    bottom: -80px;
    /* margin: 0 auto; */
    right: 0;
    width: 80%;
}
.treat-slid .slick-next:before {
    position: absolute;
    top: -3px;
    /*content: '\f178';*/
    font-size: 36px;
    font-family: 'Font Awesome 6 pro';
    font-weight: 700;
    color: #837a73;
}
.treat-slid ul.slick-dots {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    bottom: -75px;
    width: fit-content;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.treat-slid .slick-prev:before {
    position: absolute;
    top: -3px;
    /*content: '\f177';*/
    font-size: 36px;
    font-family: 'Font Awesome 6 pro';
    font-weight: 700;
    color: #837a73;
}
.treat-slid .slick-slide {
    margin: 0px 10px;
}
.treat-slid .slick-active {
    opacity: 1;
}
.main-trat-bx h4 {
    font-size: 18px;
    color: #313b45;
    line-height: 18px;
}
.treat-slid .slick-dots li button:before {
    font-family: 'slick';
    font-size: 13px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "•";
}

.main-trat-bx p {
    font-size: 11px;
    line-height: 16px;
    margin-bottom: 25px;
}
/*treatment end*/
/*inner-banner start*/
section.inner-banner img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}
section.inner-banner {
    position: relative;
    margin-top: -49px;
}
.inner-bann-txt {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    display: flex;
    align-items: center;
}
.inner-bann-txt h1{
  font-size: 81px;

}
section.about.inn .row {
    align-items: center;
}
section.inn-service {
    padding: 80px 0px;
}

section.inn-service .main-trat-bx h4 {
    font-size: 25px;
    line-height: 29px;
}
section.inn-service h3 {
    text-align: center;
    font-size: 50px;
    line-height: 50px;
}
section.inn-service .main-trat-bx p {
    font-size: 14px;
    line-height: 21px;
}
section.inn-service .main-trat-bx {
    box-shadow: 0 0 10px #00000094;
    padding: 20px;
    height: 340px;
}
p.hair {
    text-align: center;
    margin: 0 auto;
    width: 67%;
    margin-bottom: 30px;
}
.hair-2 a {
    display: block;
    margin: 0 auto;
}
.main-trat-bx {
    /* box-shadow: 0 0 10px #00000094; */
    padding: 20px;
    margin: 30px 0px;
    position: relative;
    z-index: 999;
}
section.detail-ser {
    padding: 80px 0px;
}

.det-ser-img img {
    width: 100%;
    margin-bottom: 30px;
}
/*contact page start*/
/*CONTACT START*/
.contact_page_sidbar h6 {
  font-size: 14px;
  color: #dad7d7;
  line-height: 20px;
  margin: 0;
  font-weight: 400;
}

.fa-color {
  color: #e51921;
  font-size: 80px;
}

.contact_page_sidbar h4 {
    color: #000;
    font-weight: 400;
    margin: 0;
    font-family: 'Poppins';
    margin-bottom: 0px;
    font-size: 20px;
}

.contact_page_sidbar i {
  font-size: 35px;
  margin: 0 20px 0 0;
  width: 35px;
}

.contact_social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #e51921;
  color: #ffffff;
  border-radius: 0;
  margin: 0 10px 0 0;
  font-size: 22px;
}

.contact_social a:hover {
  background-color: #e51921;
  color: #fff;
}

.contact_map iframe {
  width: 100%;
  height: 600px;
}

.contact-left img {
  width: 100%;
}

ul.contact_page_sidbar li i {
    color: #000;
}

ul.contact_page_sidbar a {
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 12px;
  color: #8b8a8a;
  text-decoration: none;
}

ul.contact_page_sidbar h6 {
  line-height: 26px;
  font-family: 'Poppins';
  font-size: 12px;
  color: #8b8a8a;
}

.contact-form {
    border-radius: 15px;
    padding: 40px 20px 40px 20px;
    border: 2px solid #dcdcdc;
}
.contact-form-title h4 {
  color: #000;
  font-size: 36px;
  line-height: 26px;
  margin-bottom: 30px;
  font-weight: 600;
}

.contact-form input {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 20px;
    border: 2px solid #dcdcdc;
    border-radius: 5px;
}

.contact-form input::placeholder {
  color: #000;
}

.contact-form textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px 18px 80px;
    border-radius: 5px;
    border: 2px solid #dcdcdc;
    resize: none;
}
.contact-submit button {
  width: 100%;
  padding: 15px;
  border-radius: 30px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 17px;
  background: none;
}

.contact-form input::placeholder {
  font-size: 14px;
  line-height: 14px;
  color: #000;
  border-radius: 5px;
  margin-bottom: 0px;
}

.contact-form textarea::placeholder {
  font-size: 14px;
  line-height: 14px;
  border-radius: 5px;
  color:#000;
  margin-bottom: 0px;
}

section.contact_page_main.pt-8.pb-8 {
  padding: 100px 0;
  background-color: #050505;
}

li.d-flex.align-items-center.mt-5 {
  margin: 0 !important;
  margin-bottom: 30px !important;
}

.contact_page_sidbar p {
  margin-bottom: 0;
}

.cont-1 h3 {
  color: #000;
}

.cont-1 p {
  color: #8b8a8a;
  font-size: 16px;
  width: 70%;
}

.icons i {
    color: #a58f82;
    margin: 0px 3px;
    font-size: 20px;
    border: 1px solid;
    border-radius: 50%;
    padding: 10px 10px;
}
.con-form {
  padding: 20px 50px;
}

section.contact-us {
  padding: 80px 0px;
}

.btn-contact a {
  background: #194376;
  padding: 10px 80px;
  border: none;
  border-radius: 5px;
  color: #fff;
}

section.contact-us.inner h3 {
    font-size: 48px;
    line-height: 26px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
}
.map-col {
  padding: 0;
}
.btn-contact button {
    width: 30%;
    padding: 0;
    height: 45px;
    background-color: #a58f82;
    color: #fff;
    border: none;
    border-radius: 5px;
}
section.contact-us .row {
    align-items: baseline;
}
/*contact inner page sec end*/
/*Book-An-Appointment-start*/
.get-txt h4 {
    font-size: 80px;
    line-height: 80px;
    color: #fff;
}
section.get {
    padding: 100px 0px;
    border-bottom: 29px solid #e5e57f;
}

.get-txt {
    text-align: center;
}
.get-txt p {
    margin: 0 auto;
    width: 60%;
    margin-bottom: 40px;
    line-height: 28px;
    color: #fff;
}
section.get form input {
    width: 100%;
    /* border: 1px solid #000000c7; */
    padding: 21px 15px;
    margin-bottom: 30px;
    border-radius: 15px;
    outline: none;
    clip-path: none;
}
section.get form{
  position: unset;
}
section.get textarea{
  width: 100%;
  border: 1px solid #000000c7;
  padding: 11px 15px;
  margin-bottom: 30px;
  border-radius: 0px;
  outline: none;
  height: 305px;
  resize: none;
  font-family: 'Fredoka';
  font-size: 21px;
  color: #000000c7;
  font-weight: 400;
}
.parents img {
    position: absolute;
    right: 15px;
    bottom: 47px;
}
.parents {
    position: relative;
}
.parents i{
    position: absolute;
    right: 15px;
    bottom: 47px;
}
.parents.tex i {
    top: 19px;
}
section.get form input::placeholder {
    font-family: 'Fredoka';
    font-size: 21px;
    color: #000000c7;
    font-weight: 400;
}
section.get.inn.inner {
    border-bottom: unset;
}

section.get.inn.inner::before {
    background-image: unset;
}
section.get.inn.inner label {
    color: #000;
    font-size: 20px;
    /* font-family: 'Brandon Light'; */
    margin-bottom: 10px;
}
button.btn {
    padding: 10px 20px;
    background-color: #a08d7f;
    color: #fff;
    border-radius: 10px;
    width: auto;
    margin: 0 auto;
}
/*Book-An-Appointment-End*/



.slick-slide.slick-current.slick-active.slick-center > .slick-slide.slick-active {
opacity: 0;
}
/*pricing start*/
section.pricing {
    padding: 80px 0px;
}

.pricing-txt h4 {
    font-size: 35px;
    color: #000;
    line-height: 40px;
    margin-bottom: 20px;
}
.pricing-txt ul li p {
    margin-bottom: 0;
}
.pricing-txt ul li {
    list-style: auto;
    padding: 5px 0px;
}
section.pricing ul#myTab {
    justify-content: center;
    gap: 20px;
    border: unset;
    margin-bottom: 40px;
}
ul#myTab li{
  list-style: none;
}
section.pricing .nav-tabs .nav-link {
    font-size: 35px;
    color: #000;
    line-height: 35px;
}
section.pricing h4 {
    font-size: 40px;
    line-height: 40px;
    color: #000;
    margin-bottom: 30px;
}
section.pricing p {
    font-size: 16px;
    line-height: 28px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}
section.pricing p.bold {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: #fff;
}
section.pricing ul li {
    padding: 5px 0px;
    color: #fff;
    list-style: disc;
}
section.pricing span {
    font-size: 20px;
    font-weight: 800;
}
.hair-txt h3 {
    font-size: 55px;
    line-height: 55px;
    color: #fff;
    margin-bottom: 0px;
}
.hair-txt {
    width: 98%;
    background-color: #a89083;
    padding: 35px 45px 25px;
    border-radius: 100px;
}
.hair-txt h5 {
    font-size: 35px;
    line-height: 35px;
    color: #fff;
    font-weight: 500;
    margin: 25px 0px;
}
.beauty-txt {
    width: 98%;
    background-color: #a89083;
    padding: 35px 45px 25px;
    border-radius: 100px;
}
.beauty-txt  h3 {
    font-size: 55px;
    line-height: 55px;
    color: #fff;
}
.hair-txt ul li p {
    margin-bottom: 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1365px){
  .follow-text p{
   font-size: 12px;
 letter-spacing: 0px;
  }  
    
    
}

@media only screen and (min-width: 992px) and (max-width: 1199px){
  
 .social-med ul.ft-social-icon {
    display: flex;
}
section.banner ul.ft-social-icon li {
    margin-bottom: 0px;
     padding: 0px 0px 0px;
}

ul.ft-social-icon li {
    display: flex;
    align-items: center;
    justify-content: center;
}
 section.banner ul.ft-social-icon {
    padding: 0px 0px 0px;
}
section.banner .social-med{
    width:6%;
}
.menuSec ul li a {
    padding: 10px 23px;
    font-size: 15px;
}
.bann-txt h1 {
    font-size: 60px;
    line-height: 60px;
}
.main-dv-reviews ul li p {
    font-size: 9px;
    line-height: 17px;
}
ul.socialmedia-linksft li a{
font-size: 12px;
}
section.inn-service .main-trat-bx{
    height:unset;
}
    section.contact-us.inner h3 {
        font-size: 38px !important;
    }
	
.follow-text p{
        font-size: 8px;
}
.slide_counter h2::before {
    width: 90px;
    left: -97px;
}
.slide_counter h2::after {
    width: 90px;
    right: -92px;
}
ul.socialmedia-linksft {
    gap: 20px;
    padding: 0 20px;
}
	.abt-txt h3 {
    font-size: 40px !important;
    height: 50px !important;
}

.abt-img img {
    height: 410px;
}

.abt-txt {
    margin-bottom: 100px;
}
	.hair-txt h3 {
    font-size: 40px !important;
    line-height: 50px !important;
}

.beauty-txt h3 {
    font-size: 40px !important;
    line-height: 50px !important;
}

section.pricing p {
    font-size: 12px;
    flex-wrap: wrap;
}

.hair-txt {
    width: 100%;
}

section.pricing span {
    font-size: 15px;
}

.hair-txt {
    border-radius: 40px;
}
	.beauty-txt {
    width: 100%;
    border-radius: 40px;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px){
    .menuSec ul li a {
    padding: 10px 15px;
    font-size: 12px;
}
.abt-txt h3 {
    font-size: 32px !important;
    line-height: 40px !important;
}
    section#custom_html-2 ul {
    gap: 30px;
    margin-top: 90px;
}

section#custom_html-2 ul li a i {
    display: flex;
    align-items: center;
    justify-content: center;
}
    .social-med ul {
    gap: 10px;
}

ul.ft-social-icon li {
    margin: 0;
}

ul.ft-social-icon {
    padding: 0;
}

.ft-news p {
    font-size: 13px !important;
}

.social-link-heading h2 {
    font-size: 24px;
}

.number-field a {
    font-size: 16px;
}
.abt-txt-2 ul li {
    font-size: 12px;
}
ul.socialmedia-linksft li a {
    font-size: 8px;
    padding-left: 0px;
}
.inner-bann-txt h1 {
    font-size: 70px;
}
.follow-text p {
    font-size: 6px;
     letter-spacing: 0px; 
}
.company-text p {
    font-size: 10px;
}
section.inn-service .main-trat-bx p {
    font-size: 11px;
    line-height: 16px;
}
section.inn-service .main-trat-bx h4 {
    font-size: 21px;
    line-height: 23px;
}
a.bnt-1{
    font-size: 12px;
    gap: 5px;
}
section.inn-service .main-trat-bx{
    height:unset;
}
section.pricing p.bold {
    font-size: 20px;
    line-height: 30px;
}
section.pricing span {
    font-size: 12px;
}
section.pricing p {
    font-size: 10px;
    line-height: 18px;
    flex-wrap: wrap;
}
    .hair-txt h3 {
    font-size: 40px !important;
    line-height: 50px !important;
}

.beauty-txt h3 {
    font-size: 40px !important;
    line-height: 50px !important;
}
.hair-txt {
    width: 100%;
    padding: 35px 26px 25px;
}
.bann-txt h1 {
    font-size: 40px;
    line-height: 40px;
}
.bann-txt p {
    font-size: 12px;
    margin-bottom: 13px;
}
.slide_counter h2::before {
    width: 42px;
    left: -52px;
}
.slide_counter h2::after {
    width: 40px;
    right: -47px;
}
.social-med{
    width: 8%;
}

section.happy-client .slick-prev, section.happy-client .slick-next {
    bottom: -80px;
}
    section.contact-us.inner h3 {
        font-size: 28px !important;
        line-height: 26px !important;
    }
}

@media only screen and (min-width: 520px) and (max-width: 767px){
   .bann-txt h1 {
        font-size: 33px;
        color: #fff;
        line-height: 40px;
    }
    .carousel-item>img {
        height: 500px;
        object-fit: cover;
    }
    .social-med ul {
        gap: 30px;
    }
    ul.ft-social-icon {
        padding: 0;
    }
    .social-med {
        position: absolute;
        writing-mode: horizontal-tb;
        width: 100%;
        left:0;
        top:auto;
        bottom:0;
        height: auto !important;
    }
    .after-txt-top h3 {
        font-size: 30px;
        line-height: 30px;
    }
    .faq-txt-head h3 {
        font-size: 30px;
        line-height: 30px;
    }
    .accordion-header {
        line-height: 20px;
    }
  
    .accordion-button::after {
        top: 18px;
        height:12px;
        width:12px;
    }
    .main-dv-reviews {
        height: auto !important;
    }
    ul.profile li:nth-child(2) {
        height: 200px;
        margin-bottom: 15px;
        overflow-y: scroll;
        padding-right: 15px;
    }
    ul.ft-social-icon {
        display: inline-flex;
        width: 100%;
        gap: 30px;
        margin-top:15px;
    }
    ul.ft-social-icon li {
        padding: 7px 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 10px 0;
    }
    .ft-logo {
        padding: 0 0px;
    }
    .bann-txt h1 span {
        display: inline-block;
    }
    ul.socialmedia-linksft li {
        width: 50%;
    }
    .ft-news {
        padding: 20px 15px;
    }
    .ft-news h2 {
        margin-bottom: 15px;
    }
    .abt-txt h3 {
        font-size: 27px;
    }
    .abt-txt h3 span {
        display: inline-block;
    }
    .nike-zoom-silder-number {
        width: 100%;
            bottom: -68px;
        padding: 0;
    }
    .slide_counter h2::before{
        display:none;
    }
    .slide_counter h2::after{
       display:none;
    }
    section.inn-service .main-trat-bx {
        /*padding: 0;*/
        height:unset;
    }
    .treat-slid ul.slick-dots {
        bottom: -25px;
    }
    .main-trat-bx h4 {
        font-size: 24px;
        line-height: 28px;
    }
    .explore-txt h4 span {
        display: inline;
        margin-left: 5px;
    }
    .explore-txt h4 {
        font-size: 29px;
        line-height: 34px;
    }
    .client-head-txt h4 {
        font-size: 30px;
        line-height: 30px;
    }
    .follow-text {
        padding: 0;
        display:none;
    }
    .reviewsslid ul.slick-dots {
       display: none !important;
    }
    .client-bx-txt h5 {
      font-size: 17px !important;
    }
    .company-text {
     padding: 25px 0px 10px;
    }
    .company-text p {
        font-size: 12px;
    }
    .inner-bann-txt h1 {
        font-size: 40px;
    }
    section.inner-banner img {
        width: 100%;
      height: 250px;
    }
    .abt-1-img p {
        font-size: 12px;
        line-height: 21px;
    }
    .abt-txt-2 p {
         font-size: 12px;
        line-height: 21px; 
    }
    .abt-txt-2 ul li {
        padding: 3px 0px;
        font-size: 10px;
        line-height: 15px;
    }
    section.inn-service h3 {
        font-size: 25px;
        line-height: 33px;
    }
    section.inn-service {
        padding: 40px 0px;
    }
    .after-slid .slick-prev, .after-slid .slick-next {
        bottom:-60px;
    }
    p.hair {
        width: 90%;
    }
    section.contact-us.inner h3 {
        font-size: 30px;
        line-height: 26px;
    }
    .contact-text {
        margin-bottom: 20px;
    }
    section.contact-us {
        padding: 40px 0px;
    }
      section.faq\'s .accordion-button {
        font-size: 14px;
    }
    .hair-txt h3 {
    font-size: 30px;
    line-height:30px;
}
.hair-txt h5 {
    font-size: 20px;
    margin: 20px 0px;
}
section.pricing p {
    font-size: 11px;
    line-height: 22px;
}
section.pricing span {
    font-size: 11px;
}
.hair-txt {
    padding: 40px 25px 30px;
}
section.pricing p.bold {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}
section.pricing ul li {
    font-size: 11px;
    line-height: 17px;
}
.beauty-txt {
    width: 100%;
    padding: 35px 25px 25px;
        margin-top: 30px;
}
.beauty-txt h3 {
    font-size: 30px;
    line-height: 40px;
}    
}

@media only screen and (min-width: 300px) and (max-width: 767px){
    .bann-txt h1 {
        font-size: 33px;
        color: #fff;
        line-height: 40px;
    }
    .carousel-item>img {
        height: 500px;
        object-fit: cover;
    }
    .social-med ul {
        gap: 30px;
    }
    ul.ft-social-icon {
        padding: 0;
    }
    .social-med {
        position: absolute;
        writing-mode: horizontal-tb;
        width: 100%;
        left:0;
        top:auto;
        bottom:0;
        height: auto !important;
    }
    .after-txt-top h3 {
        font-size: 30px !important;
        line-height: 30px !important;
    }
    .faq-txt-head h3 {
        font-size: 30px !important;
        line-height: 30px !important;
    }
    .accordion-header {
        line-height: 20px;
    }
  
    .accordion-button::after {
        top: 18px;
        height:12px;
        width:12px;
    }
    .main-dv-reviews {
        height: auto !important;
    }
    ul.profile li:nth-child(2) {
        height: 200px;
        margin-bottom: 15px;
        overflow-y: scroll;
        padding-right: 15px;
    }
    ul.ft-social-icon {
        display: inline-flex;
        width: 100%;
        gap: 30px;
        margin-top:15px;
    }
    ul.ft-social-icon li {
        padding: 7px 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 10px 0;
    }
    .ft-logo {
        padding: 0 0px;
    }
    .bann-txt h1 span {
        display: inline-block;
    }
    ul.socialmedia-linksft li {
        width: 50%;
    }
    .ft-news {
        padding: 20px 15px;
    }
    .ft-news h2 {
        margin-bottom: 15px;
    }
    .abt-txt h3 {
        font-size: 27px !important;
    }
    .abt-txt h3 span {
        display: inline-block;
    }
    .nike-zoom-silder-number {
        width: 100%;
            bottom: -68px;
        padding: 0;
    }
    .slide_counter h2::before{
        display:none;
    }
    .slide_counter h2::after{
       display:none;
    }
    section.inn-service .main-trat-bx {
        /*padding: 0;*/
        height:unset;
    }
    .treat-slid ul.slick-dots {
        bottom: -25px;
    }
    .main-trat-bx h4 {
        font-size: 24px;
        line-height: 28px;
    }
    .explore-txt h4 span {
        display: inline;
        margin-left: 5px;
    }
    .explore-txt h4 {
        font-size: 29px;
        line-height: 34px;
    }
    .client-head-txt h4 {
        font-size: 30px;
        line-height: 30px;
    }
    .follow-text {
        padding: 0;
        display:none;
    }
    .reviewsslid ul.slick-dots {
       display: none !important;
    }
    .client-bx-txt h5 {
      font-size: 17px !important;
    }
    .company-text {
     padding: 25px 0px 10px;
    }
    .company-text p {
        font-size: 12px;
    }
    .inner-bann-txt h1 {
        font-size: 40px;
    }
    section.inner-banner img {
        width: 100%;
      height: 250px;
    }
    .abt-1-img p {
        font-size: 12px;
        line-height: 21px;
    }
    .abt-txt-2 p {
         font-size: 12px;
        line-height: 21px; 
    }
    .abt-txt-2 ul li {
        padding: 3px 0px;
        font-size: 10px;
        line-height: 15px;
    }
    section.inn-service h3 {
        font-size: 24px !important;
        line-height: 33px !important;
    }
    section.inn-service {
        padding: 40px 0px;
    }
    .after-slid .slick-prev, .after-slid .slick-next {
        bottom:-60px;
    }
    p.hair {
        width: 90%;
    }
    section.contact-us.inner h3 {
        font-size: 30px !important;
        line-height: 26px !important;
    }
    .number-field {
    padding: 10px 0 20px;
}

.maindv-social-icons {
    padding: 10px 0px 10px;
}
    .contact-text {
        margin-bottom: 20px;
    }
    section.contact-us {
        padding: 40px 0px;
    }
      section.faq\'s .accordion-button {
        font-size: 14px;
    }
    .hair-txt h3 {
    font-size: 30px !important;
    line-height: 30px !important;
}
.hair-txt h5 {
    font-size: 20px;
    margin: 20px 0px;
}
section.pricing p {
    font-size: 11px;
    line-height: 22px;
	flex-wrap: wrap;
}
section.pricing span {
    font-size: 11px;
}
.hair-txt {
    padding: 40px 25px 30px;
    border-radius: 40px;
}
section.pricing p.bold {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}
section.pricing ul li {
    font-size: 11px;
    line-height: 17px;
}
.beauty-txt {
    width: 100%;
    padding: 35px 25px 25px;
    margin-top: 30px;
    border-radius: 40px;
}
.beauty-txt h3 {
    font-size: 30px !important;
    line-height: 40px !important;
}
.abt-txt-2 ul {
    padding: 0 20px;
}
.slicknav_nav a:hover {
    background: #a89082;
    color: #fff;
}

.abt-1-img img {
    height: 330px;
    object-fit: cover;
}

section.about {
    padding: 100px 0 50px;
}

.treat-txt h4 {
    font-size: 34px;
    line-height: 40px;
    margin: 0;
}

section.treatment::before {
    display: none;
}

.treat-txt {
    background: #a89082;
    padding: 30px 10px;
}

section.explore {
    margin-bottom: 0;
}

.accordion-body {
    font-size: 12px;
    line-height: 20px;
}

.number-field a {
    font-size: 16px;
}

section#custom_html-6 p {
    font-size: 18px;
}
html {
    overflow-x: hidden;
}

}
