@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=Montserrat:ital,wght@0,100..900;1,100..900&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 !important;
  padding: 0;
  list-style-type: none;
}

p {
   font-family: "Montserrat", sans-serif;
  font-weight: 400;
}


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

@font-face {
  font-family: 'Queensila';
  src: url(../fonts/Queensila.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: #28b16d;
  border-color: #28b16d;
}

.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: 'Queensila';
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
 font-family: 'Queensila';
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'Queensila';
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'Queensila';
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'Queensila';
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: "Montserrat", sans-serif;
  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: 15px 0;
}

.menuSec img {
  margin: 0;
}

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

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 2px solid #ffffff61;
    padding-bottom: 6px;
}

section.banner {
    position: relative;
}
.menuSec li ul {
  display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 10px 28px;
    font-size: 14px;
    font-family: 'Montserrat';
}

.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
  display: none;
}

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

.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;
}
.container-fluid {
  padding: 0 4%;
 max-width:1600px;  
}
.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 .row {
    align-items: center;
}
.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;
}
.menuSec a.btn-1 {
    padding-left: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #102b22;
    width: fit-content;
    margin: 0 auto;
    padding-right: 5px;
    border-radius: 100px;
    font-size: 12px;
    color: #fff;
    gap: 15px;
    padding-top: 3px;
    padding-bottom: 3px;
}
 a.btn-1 {
    padding-left: 18px;
    display: flex;
    align-items: center;
    background-color: #102b22;
    width: fit-content;
    padding-right: 5px;
    border-radius: 100px;
    font-size: 12px;
    color: #fff;
    gap: 15px;
    padding-top: 3px;
    padding-bottom: 3px;
}

a.btn-2 {
    padding-left: 18px;
    display: flex;
    align-items: center;
    background-color: #d2d0a0;
    width: fit-content;
    padding-right: 5px;
    border-radius: 100px;
    font-size: 12px;
    color: #000;
    gap: 15px;
    padding-top: 3px;
    padding-bottom: 3px;
}
.bnner-txt a.btn-2 {
    padding-left: 18px;
    display: flex;
    align-items: center;
    background-color: #d2d0a0;
    width: fit-content;
    padding-right: 5px;
    border-radius: 100px;
    font-size: 12px;
    color: #000;
    gap: 15px;
    padding-top: 3px;
    padding-bottom: 3px;
    margin-left: 8%;
}

/*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 */


img.bann-img {
    width: 100%;
    height: 850px;
    object-fit: cover;
}
.bann-txt-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 30px;
}
.bnner-txt h1 {
    font-size: 99px;
    color: #fff;
    line-height: 93px;
    margin-bottom: 55px;
    position: relative;
}

.bnner-txt h1 span {
    display: block;
}
.bnner-txt p {
    font-size: 14px;
    color: #fff;
    width: 55%;
    margin-left: 8%;
    margin-bottom: 30px;
}
.ban-ul {
    display: flex;
    align-items: center;
    gap: 25%;
    position: absolute;
    width: 80%;
    bottom: -4px;
}

.ban-ul ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ban-ul h5 {
    font-size: 12px;
    color: #fff;
    font-family: 'Montserrat';
    position: relative;
}
.ban-ul ul li a i {
    font-size: 16px;
    color: #ffffff8f;
    border: 1px solid #ffffff85;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}
.bnner-txt h1::before {
    position: absolute;
    bottom: -20px;
    left: 74px;
    width: 5%;
    background-color: #d2d0a0;
    content: '';
    height: 3px;
}
.bnner-txt h1::after {
    position: absolute;
    bottom: -20px;
    left: 129px;
    background-color: #ffffff8a;
    content: '';
    width: 500px;
    height: 3px;
}
.ban-ul h5::after {
    position: absolute;
    bottom: 10px;
    left: 87px;
    background-color: #ffffff82;
    content: '';
    height: 2px;
    width: 290px;
}
.ban-ul::before {
    position: absolute;
    top: -17px;
    left: -65px;
    width: 54%;
    background-color: #ffffff47;
    content: '';
    height: 2px;
    z-index: 0;
}
.ban-2-img {
    text-align: center;
    position: relative;
}

.ban-sm-txt h3 {
    font-size: 23px;
    color: #fff;
    margin: 0;
    font-weight: 300;
}

.ban-sm-txt {
    background-color: #102b22;
    padding: 118px 30px 20px 30px;
    width: fit-content;
    margin: 0 auto;
    border-radius: 10px;
    margin-top: -90px;
}
.ban-ul ul li a i:hover {
    color: #000;
    background-color: #d2d0a0;
    transition: 1s;
    border: unset;
}

/*banner end*/
/*about start*/
section.about {
    padding: 100px 0px;
    position: relative;
    background-color: #fffdee;
}
section.about .row {
    align-items: center;
}
.abt-txt h3 {
    font-size: 62px;
    line-height: 50px;
    color: #191919;
    font-weight: 300;
    margin-bottom: 10px;
}
.abt-txt h5 {
    font-size: 31px;
    line-height: 40px;
    color: #191919;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: 1px;
}
.abt-txt p {
    color: #7c7c7c;
    font-size: 14px;
    line-height: 25px;
}
.abt-txt ul li p {
    font-size: 14px;
    color: #000;
    margin-bottom: 0;
    line-height: 30px;
}

.abt-txt ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.abt-txt h5::before {
    position: absolute;
    bottom: -14px;
    left: -24px;
    width: 584px;
    height: 2px;
    content: '';
    background-color: #00000078;
}
section.about::before {
    position: absolute;
    top: -1px;
    left: -23px;
    content: '';
    width: 10%;
    background-image: url(../images/abt-bef.png);
    height: 239px;
    background-repeat: no-repeat;
    background-size: contain;
}

/*treatment start*/
section.treatement {
    padding: 80px 0px;
    background-color: #112b22;
}
.trat-txt-top a {
    margin: 0 0 0 auto;
}
section.treatement .container-fluid {
    padding: 0 5%;
}
.trat-txt-top h3 {
    font-size: 62px;
    color: #fff;
    font-weight: 400;
    margin: 0;
    position: relative;
}

.trat-txt-top {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ffffff63;
}
section.treatement .row{
  align-items: center;
}
.traetment-txt-bot {
    text-align: center;
    padding: 20px;
    border: 2px solid #ffffff54;
    border-bottom-left-radius: 65px;
    margin-top: -10px;
    padding-top: 30px;
}
.traetment-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-top-right-radius: 65px;
}
.traetment-txt-bot h3 {
    font-size: 30px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 40px;
}

.traetment-txt-bot p {
    font-size: 13px;
    color: #fff;
    line-height: 20px;
    margin-bottom: 30px;
}

.traetment-txt-bot a {
    margin: 0 auto;
}
.trat-txt-top h3:before {
    position: absolute;
    bottom: -22px;
    left: 0;
    content: '';
    height: 2px;
    width: 100px;
    background-color: #ffffff91;
}
.traetment-txt-bot:hover {
    background-color: #d2d0a0;
    transition: 1s;
    border: 2px solid #d2d0a0;
}

.traetment-txt-bot:hover h3 {
    color: #000;
}

.traetment-txt-bot:hover p {
    color: #000;
}

.traetment-txt-bot:hover a {
    background-color: #112b22;
    color: #fff;
}
/*traetment end*/
/*visit-start*/
section.visit-me {
    padding: 100px 0px;
    background-color: #fffdee;
    position: relative;
}
.visit-me-txt h3 {
    font-size: 62px;
    line-height: 60px;
    font-weight: 300;
    position: relative;
    margin-bottom: 40px !important;
}

.visit-me-txt h3 span {
    display: block;
}

.visit-me-txt p {
    font-size: 13px;
    color: #1a1a1a;
}
.visit-me-txt h3::before {
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 770px;
    content: '';
    background-color: #0000004f;
    height: 1px;
}
section.visit-me ul {
    display: block;
    align-items: center;
    gap: 20px;
}

section.visit-me ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

section.visit-me ul li p {
    font-size: 12px;
    font-family: 'Montserrat';
    font-weight: 600;
    text-transform: uppercase;
    color: #09283d;
    margin: 0;
    line-height: 28px;
}
.visit-ul {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    margin-bottom: 10px;
}
.visit-img img {
    width: 100%;
}
section.visit-me::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 34%;
    height: 199px;
    content: '';
    background-image: url(../images/chose-bg-2.png);
    background-repeat: no-repeat;
    background-size: contain;
}
section.visit-me::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 13%;
    height: 283px;
    content: '';
    background-image: url(../images/chose-bg-1.png);
    background-repeat: no-repeat;
    background-size: contain;
}
/*vist end*/
section.shop {
    padding: 100px 0px;
    background-image: url(../images/shop-brand-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.shop-txt h3 {
    font-size: 62px;
    line-height: 66px;
    color: #fff;
    font-weight: 300;
    position: relative;
}
.shop-txt {
    /* margin-left: 4%; */
}
.shop-txt p {
    font-size: 14px;
    color: #fff;
    line-height: 23px;
    margin-bottom: 30px;
}
.shop-txt h3::before {
    position: absolute;
    bottom: -13px;
    left: -110px;
    width: 420px;
    content: '';
    background-color: #fff;
    height: 1px;
}

.shop-txt h3::after {
    position: absolute;
    bottom: -12.5px;
    content: '';
    width: 100px;
    height: 2px;
    background-color: #d2d0a0;
    right: 331px;
}
section.map {
    padding: 0px 0px 0px 0px;
    background-color: #fffdee;
}
/*footer start*/
footer {
    background-color: #0a241b;
    position: relative;
}
.footer-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-social ul {
    display: flex;
    align-items: center;
    gap:10px;
}

.footer-social h6::after {
    position: absolute;
    bottom: 10px;
    left: 87px;
    background-color: #ffffff82;
    content: '';
    height: 2px;
    width: 192px;
}

.footer-social {
    padding: 20px 30px;
}
.footer-social h6 {
    font-size: 12px;
    color: #fff;
    font-family: 'Montserrat';
    position: relative;
}
.footer-social ul li a i {
    font-size: 16px;
    color: #ffffff8f;
    border: 1px solid #ffffff85;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}
.cont-info-fot {
    padding: 20px 30px;
    background-color: #102b22;
}

.cont-info-fot ul {
    display: flex;
    align-items: center;
    gap: 36px;
    margin: 0 !important;
}

.cont-info-fot ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cont-info-fot ul li p {
    font-size: 14px;
    color: #fff;
    margin: 0 !important;
}
.cont-info-fot ul li p span{
  display: block;
}
.cont-info-fot ul li i {
    font-size: 25px;
    color: #fff;
}
.cont-info-fot ul li a {
    font-size: 14px;
    color: #fff;
}

.cont-info-fot ul li i.fas.fa-phone-alt {
    transform: rotate(90deg);
}
.footer-logo {
    padding: 30px 50px 30px 0;
}

.fot-sec {
    position: relative;
    z-index: 9;
}

.fot-sec::before {
    position: absolute;
    left: 0;
    width: 36%;
    height: 264px;
    background-color: #102b22;
    content: '';
    z-index: -1;
    bottom: 0px;
}

.para {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: #102b22;
    width: 100px;
    justify-content: center;
}
.para p{
  font-size: 12px;
  color: #fff;
  margin: 0;
  writing-mode: sideways-lr;
}
.footer-links {
    margin-top: 30px;
    margin-bottom: 40px;
    padding-left: 6%;
}
.footer-links h4 {
    font-size: 20px;
    color: #fff;
    line-height: 35px;
    margin-bottom: 30px;
}

.footer-links ul {
    column-count: 2;
}
.footer-links.tw{
 border-left: 1px solid #ffffff52;
 height: 88%;
}

.footer-links.tw ul {
    column-count: unset;
}

.footer-links ul li a {
    font-size: 14px;
    color: #fff;
    line-height: 40px;
    font-family: 'Montserrat';
}
.footer-links.tw form button {
    padding-left: 18px;
    display: flex;
    align-items: center;
    background-color: #d2d0a0;
    width: fit-content;
    padding-right: 5px;
    border-radius: 100px;
    font-size: 12px;
    color: #000;
    gap: 15px;
    padding-top: 3px;
    padding-bottom: 3px;
    border: unset;
}
.footer-links.tw form input {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    background-color: #102b22;
    border: unset;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links.tw form input::placeholder {
    color: #ffffff8a;
}
.footer-logo img {
    margin-bottom: 30px;
}

.footer-logo p {
    font-size: 12px;
    color: #fff;
    line-height: 22px;
}
.footer-links ul li a:hover {
    color: #d2d0a0;
    transition: 1s;
}
/*footer end*/

/*testimonials start*/
.test-slid .slick-active {
    opacity: 1;
}
.test-img img {
    width: 70px;
}
section.testimonials {
    padding: 100px 0px;
    background-color: #fffdee;
    position: relative;
}
.test-top {
    text-align: center;
    margin-bottom: 14px;
}

.test-top h3 {
    font-size: 62px;
    line-height: 70px;
    font-weight: 400;
    color: #191919;
    margin-bottom: 10px;
}
.test-top p {
    margin: 0 auto;
    width: 48%;
    font-size: 14px;
    color: #7c7c7c;
}
.test-main-bx ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.test-main-bx {
    text-align: center;
    padding: 40px;
    background-color: #fffdee;
    box-shadow: 0 0 10px #00000038;
    margin: 30px 0px !important;
    border-radius: 15px;
    position: relative;
    margin-top: 50px;
    padding-top: 60px;
    margin-top: 42px !important;
}
.test-main-bx p {
    font-size: 14px;
    color: #191919;
    margin: 0 auto;
    width: 85%;
    line-height: 21px;
}
.test-main-bx ul li a  i {
    color: #ffb400;
}
.test-main-bx h4 {
    font-size: 25px;
    color: #191919;
    line-height: 30px;
}
.test-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
    width: fit-content;
    margin-top: -39px;
}
.test-slid .slick-prev:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '\f1d8';
    font-family: 'FontAwesome';
    transform: rotate(236deg);
    font-size: 12px;
    border: 1px solid #000;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.test-slid .slick-next:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '\f1d8';
    font-family: 'FontAwesome';
    transform: rotate(52deg);
    font-size: 12px;
    border: 1px solid #bfbeb2;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.test-main-bx:hover {
    background-color: #102b22;
    transition: 1s;
}

.test-main-bx:hover h4 {
    color: #fff;
}

.test-main-bx:hover p {
    color: #fff;
}

.test-main-bx:hover ul li a i {
    color: #fff;
}
section.testimonials::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    background-image: url(../images/test-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    height: 200px;
}
.footer-social ul li a i:hover {
    transition: 1s;
    background-color: #d2d0a0;
    color: #000;
    border: unset;
}
/*testimonials end*/

html {
    overflow-x: hidden;
}

@media only screen and (min-width: 1366px) and (max-width: 1920px){}

@media only screen and (min-width: 1200px) and (max-width: 1365px){}

@media only screen and (min-width: 992px) and (max-width: 1199px){
 .menuSec ul {
    margin: 0 !important;
}
.menuSec ul li a{
    padding: 10px 8px;
    font-size: 11px;
}
img.bann-img {
    height: 600px;
    object-fit: cover;
}

.bnner-txt h1::after {
    display: none;
}

.bnner-txt h1::before {
    display: none;
}

.bnner-txt h1 {
    font-size: 60px !important;
    line-height: 60px;
}
.ban-ul h5::after {
    display: none;
}
.abt-txt h3 {
    font-size: 50px;
    line-height: 40px;
}

.abt-txt h5 {
    font-size: 25px;
    line-height: 31px;
}

.abt-txt p {
    font-size: 12px;
    line-height: 21px;
}

.abt-txt ul li p {
    font-size: 12px;
}
.traetment-txt-bot {
    padding: 15px;
   padding-bottom: 25px;    
}
section.shop {
    background-position: bottom;
}

.traetment-txt-bot h3 {
    font-size: 19px !important;
    line-height: 23px !important;
    margin-top: 10px;
}

a.btn-2 {
    gap: 10px;
    padding-left: 10px;
    font-size: 12px;
}

a.btn-2 img {
    width: 26px;
}
.trat-txt-top h3:before {
    display: none;
}
.traetment-img img {
    height: 250px;
}
.test-main-bx {
    padding: 20px;
    padding-top: 40px;
}

.test-main-bx p {
    font-size: 12px;
    line-height: 22px;
    width: 100%;
}
.cont-info-fot ul {
    display: block;
}

.cont-info-fot ul li p {
    font-size: 12px;
}

.cont-info-fot ul li a {
    font-size: 12px;
}

.cont-info-fot ul li {
    padding-bottom: 10px;
}
.footer-social h6::after {
    display: none;
}
.footer-social {
    padding: 20px 15px;
}

.footer-social h6 {
    font-size: 11px;
}

.footer-social ul li a i {
    font-size: 12px;
    width: 30px;
    height: 30px;
}
.fot-sec .col-lg-4.col-md-4.col-12 {
    width: 50%;
}
.fot-sec::before {
    display: none;
}
.footer-links.tw {
    border: unset;
}
.visit-me-txt h3 {
    font-size: 50px;
    line-height: 1;
}
.cont-info-fot ul li i{
    font-size: 20px;
}
.test-top p {
    width: 68%;
}
.vc_row.wpb_row.vc_inner.vc_row-fluid.box-01 p {
    font-size: 13px;
}
.vc_row.wpb_row.vc_inner.vc_row-fluid.box-01 a {
    font-size: 11px;
}    
}

@media only screen and (min-width: 768px) and (max-width: 991px){
.menuSec ul {
    margin: 0 !important;
}
.menuSec ul li a{
    padding: 10px 8px;
    font-size: 11px;
}
img.bann-img {
    height: 600px;
    object-fit: cover;
}

.bnner-txt h1::after {
    display: none;
}

.bnner-txt h1::before {
    display: none;
}

.bnner-txt h1 {
    font-size: 60px !important;
    line-height: 60px;
}
.ban-ul h5::after {
    display: none;
}
.abt-txt h3 {
    font-size: 50px;
    line-height: 40px;
}

.abt-txt h5 {
    font-size: 25px;
    line-height: 31px;
}

.abt-txt p {
    font-size: 12px;
    line-height: 21px;
}

.abt-txt ul li p {
    font-size: 12px;
}
.traetment-txt-bot {
    padding: 15px;
   padding-bottom: 25px;    
}
section.shop {
    background-position: bottom;
}

.traetment-txt-bot h3 {
    font-size: 19px !important;
    line-height: 23px !important;
    margin-top: 10px;
}

a.btn-2 {
    gap: 10px;
    padding-left: 10px;
    font-size: 12px;
}

a.btn-2 img {
    width: 26px;
}
.trat-txt-top h3:before {
    display: none;
}
.traetment-img img {
    height: 250px;
}
.test-main-bx {
    padding: 20px;
    padding-top: 40px;
}

.test-main-bx p {
    font-size: 12px;
    line-height: 22px;
    width: 100%;
}
.cont-info-fot ul {
    display: block;
}

.cont-info-fot ul li p {
    font-size: 12px;
}

.cont-info-fot ul li a {
    font-size: 12px;
}

.cont-info-fot ul li {
    padding-bottom: 10px;
}
.footer-social h6::after {
    display: none;
}
.footer-social {
    padding: 20px 15px;
}

.footer-social h6 {
    font-size: 11px;
}

.footer-social ul li a i {
    font-size: 12px;
    width: 30px;
    height: 30px;
}
.fot-sec .col-lg-4.col-md-4.col-12 {
    width: 50%;
}
.fot-sec::before {
    display: none;
}
.footer-links.tw {
    border: unset;
}
.visit-me-txt h3 {
    font-size: 50px;
    line-height: 1;
}
.cont-info-fot ul li i{
    font-size: 20px;
}
.test-top p {
    width: 68%;
}
.vc_row.wpb_row.vc_inner.vc_row-fluid.box-01 p {
    font-size: 13px;
}
.vc_row.wpb_row.vc_inner.vc_row-fluid.box-01 a {
    font-size: 11px;
}
}

@media only screen and (min-width: 520px) and (max-width: 767px){}

@media only screen and (min-width: 300px) and (max-width: 519px){

a.custom-logo-link img.custom-logo {
    margin: 0 auto;
    display: block;
    height: 30px;
    width: 150px;
}

.menuSec {
    margin-top: 51px;
}

.menuSec a.btn-1 {
    margin-top: 18px;
}
.bnner-txt h1 {
    font-size: 45px !important;
    line-height: 55px !important;
        margin-bottom: 19px;    
}
img.bann-img {
    height: 500px;
    object-fit: cover;
}

.bnner-txt h1::after {
    display: none;
}

.bnner-txt h1::before {
    display: none;
}

.ban-ul h5::after {
    display: none;
}
.abt-txt {
    margin-top: 40px;
}

.abt-txt h3 {
    font-size: 40px;
    line-height: 40px;
}

.abt-txt h5 {
    font-size: 20px;
    line-height: 26px;
}
 .abt-txt p {
    font-size: 12px;
    line-height: 22px;
}
.abt-txt ul li p {
    font-size: 10px;
}
.trat-txt-top h3 {
    font-size: 30px;
    line-height: 30px;
}
a.btn-2 {
    padding-left: 13px;
    padding-right: 5px;
    gap: 10px;
}
 .traetment-img img {
    margin: 20px 0px;
    height: 200px;
}
.visit-me-txt h3 {
    font-size: 30px;
    line-height: 36px;
}
section.visit-me::before{
display:none;    
}
.shop-txt h3::before {
    display: none;
}
.test-top h3 {
    font-size: 30px;
    line-height: 40px;
}
.test-main-bx {
    padding: 20px;
    padding-top: 40px;
}

.test-main-bx p {
    font-size: 11px;
    line-height: 20px;
    width: 100%;
}
section.testimonials::before {
    display: none;
}
.footer-links.tw {
    border: unset;
}
.footer-social h6::after {
    display: none;
}
.para {
    display: none;
}

.cont-info-fot ul {
    display: block;
}

.cont-info-fot ul li p {
    font-size: 11px;
}

.cont-info-fot ul li a {
    font-size: 11px;
}

.cont-info-fot ul li {
    padding-bottom: 12px;
}
section.testimonials {
    padding-bottom: 0;
}
.vc_row.wpb_row.vc_inner.vc_row-fluid.box-01 {
    margin: 20px 0px !important;
}

.vc_row.wpb_row.vc_inner.vc_row-fluid.box-01 p {
    font-size: 11px;
}
.vc_row.wpb_row.vc_inner.vc_row-fluid.box-01 a {
    font-size: 11px;
}
.slicknav_menu {
        display: block;
        position: relative;
        z-index: 99999;
    }
.slicknav_nav a:hover {
    background: #112b22;
    color: #fff;
} 


.test-slid .slick-next {
    right: -7px;
}

}

