@charset "utf-8";

/* This is My Custom CSS */
/* 
   Author: Company Name,
   Author URL: Company URL,
   
   Site Name: Site Title,   
   Site Description: Site Field,
   Template: Responsive,
   Framework: Bootstrap v4.0.0    
*/
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #000000;
  /* word-break: break-all; */
}

/* HTML Elements */
ul,
ol {
  margin: 0;
  padding: 0;
}

/* HTML Elements ends */

/* Typography CSS starts */
/* titillium-web-300 - latin */
@font-face {
  font-display: swap;
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/titillium-web-v17-latin-300.woff2') format('woff2'); 
} 
/* titillium-web-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/titillium-web-v17-latin-regular.woff2') format('woff2');
}
/* titillium-web-600 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/titillium-web-v17-latin-600.woff2') format('woff2');
}
/* titillium-web-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/titillium-web-v17-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* titillium-web-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/titillium-web-v17-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 600;
}

/* Typography CSS ends */
/* Global CSS */
.clear {
  clear: both;
}

.no-padding {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.no-paddingR {
  padding-right: 0;
}

.no-paddingL {
  padding-left: 0;
}

/* Some Padding Field Changes ( for below media queries written) */
.change-padding {
  padding-right: 15px;
  padding-left: 15px;
}

.change-paddingR {
  padding-right: 0px;
}

.change-paddingL {
  padding-left: 0px;
}

.spl-padding {
  padding-right: 0;
  padding-left: 0;
}

a:hover {
  text-decoration: none;
}

/* Some Padding Field Changes ends */

img {
  max-width: 100%;
}
 
:root {
  --main-bg-color: #F3BA1A;
  --main-white-bg: #ffffff;
  --main-black-bg: #000000;
  --main-text-color: #000000;
  --white-text-color: #ffffff;
  --main-color-text: #F3BA1A;
 

  --thin-weight: 300;
  --regular-weight: 400;
  --medium-weight: 600;
  --bold-weight: 700;

  --normal-text-size: 20px;
  --normal-text-line-he: 29.89px;

  --h1-size: 60px;
  --h2-size: 52px;    
  --h3-size: 35px;
  --h4-size: 24px;
  --h5-size: 20px;
  --h6-size: 18px;

  --sect-padding: 70px 15px;
  --sect-small-padding: 43px 15px;
}




button:focus {
  outline: none;
  box-shadow: none;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: inherit;
}

body{
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 400;
}

/* Section Headings Starts */
h1 {
  font-size: var(--h1-size);
  line-height: 60px;
}

h2 {
  font-size: var(--h2-size);
  line-height: 54px;
}

h3 {
  font-size: var(--h3-size);
}

h4 {
  font-size: var(--h4-size);
}

h5 {
  font-size: var(--h5-size);
}
ul li,
p{
  font-size: var(--normal-text-size);
  font-weight: var(--regular-weight);
  line-height: var(--normal-text-line-he);
}
.sec-padding{
  padding: var(--sect-padding);
} 
.sect-small-padding{
  padding: var(--sect-small-padding);
}
/* Section Heading Ends */


/* Buttons Styles Starts */
.main-bg-btn,
.main-white-btn,
.main-black-btn{
  box-shadow: none;
  border: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  text-align: center;
  padding: 9px 24px 11px 24px;
  border-radius: 6px;
  display: inline-block;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  cursor: pointer;
}
.main-bg-btn{
  background-color: var(--main-bg-color);
  color: var(--main-text-color);
}
.main-bg-btn img{
  margin-right: 10px;
}
.main-white-btn{
  background-color: var(--main-white-bg);
  color: var(--main-text-color);
}
.main-white-btn:hover,
.main-bg-btn:hover{
  background: var(--main-black-bg);
  color: var(--white-text-color);
}
.main-black-btn{
  background: var(--main-black-bg);
  color: var(--white-text-color);
}
.main-black-btn:hover{
  background: #fff;
  color: #000;
}
.dark-bg  .main-bg-btn:hover{
  background-color: var(--main-white-bg);
  color: var(--main-text-color);
}
/* Button Ends */


/* Home Page Starts */
/*==========-------- Home Page Starts  ---------===========*/

/* Header Starts */
.header-sec-outer {
  box-shadow: 1px 1px 5px #c6c6c6;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.navbar-brand img{
  height: 65px;
  width: auto;
  -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.header-sec-outer .navbar-collapse {
  flex: inherit !important;
}
.header-sec-outer .navbar-nav .nav-item:first-child{
  /* display: none; */
}
.header-sec-outer .navbar-nav .nav-link{
  color: #000;
  font-size: 17px;
  line-height: 25.99px;
  letter-spacing: -0.015em;
  padding: 0 10px;
  font-weight: 500;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.header-sec-outer .navbar-nav .nav-link:hover{
  color: var(--main-color-text);
}
.conta-icon{
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.conta-icon li{
  list-style: none;
  margin: 0 8px;
}
.conta-icon li:last-child{
  margin-right: 0;
}
.conta-icon li,
.conta-icon li a{
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 0;
}
.conta-icon li a img{
  width: 24px;
  height: 24px;
}
.header-sec-outer.sticky-sec .navbar-brand img {
  height: 45px;
}
.header-sec-outer.sticky-sec .navbar-nav .nav-link{
  font-size: 16px;
}
.navbar-collapse .conta-icon,
.mob-menu-icon{
  display: none !important;
}
.nav-item.active > a{
  color: #C89403 !important;
}
.dropdown-menu li.active a{
  color: #C89403 ;
}
#navbarNav .arrow-right {
  margin: 0 5px;
}

/* Header Ends */

/* Banner Starts */
#banner-sec{
  background: var(--main-bg-color);
}
#banner-sec .carousel-item{
  height: 600px;
}
#banner-sec .carousel-item{
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
#banner-sec .single-carousel{
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
#banner-sec .single-carousel-left {
  width: 60%;
  text-align: center;
  padding: 0 30px;
}
#banner-sec .single-carousel-right {
  width: 40%;
  text-align: right;
}
#banner-sec .single-carousel-left h1{
  margin-bottom: 28px;
}
#banner-sec .single-carousel-left h1 b{
    font-weight: 700;
}
#banner-sec .single-carousel-left .single-caro-btn{
  margin-top: 37px;
  display: block;
}
/* Banner Ends */


/* three-banner-sec Starts */
.three-banner-sec{
  /* background: var(--main-bg-color); */
}
.single-banner-sec{
  text-align: center;
  padding: var(--sect-padding);
  padding-left: 40px;
  padding-right: 40px;
}
.single-banner-sec h2{
  font-size: var(--h2-size);
  line-height: 54px;
  font-weight: 700;
  margin-bottom: 20px;
}
.three-banner-sec .main-white-btn{
  font-size: 17px;
  line-height: 22px;
}
.single-banner-sec img{
  margin-bottom: 30px;
}
.single-banner-sec p{
  margin-bottom: 20px;
}
 
/* three-banner-sec Ends */



/* Revolutionary GFC Therapy & Revitalize with PRP Hair Therapy */
 
.single-therapy-sec .btn-outer{
  display: block;
  width: 100%; 
}
.single-therapy-sec h2,
.single-therapy-sec p{
  margin-bottom: 28px;
}
.single-therapy-sec .btn-outer{
  margin-top: 28px;
}
.gfc-prp-therapy-sec {
  background: #DEDEDE;
}
/* Revolutionary GFC Therapy & Revitalize with PRP Hair Therapy Ends*/

/* Are you tried of Dealing Starts */
.hair-lose-sec{
  background: #fff;
  position: relative;
  overflow: hidden;
}
.hair-lose-right {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  text-align: right;
  z-index: 99;
  width: auto;
}
.hair-lose-right img{
  height: 100%;
  width: auto;
  object-fit: contain;
}
.hair-lose-bg-shape{
  position: absolute;
  background: #b3b3b3;
  border-radius: 50% 0 0 50%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.hair-lose-sec h2{
  margin-bottom: 28px;
}
.hair-lose-sec .btn-outer{
  margin-top: 28px;
}

/* Are you tried of Dealing Ends */

.hair-lose-right-img {
  height: 300px;
  width: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #F3BA1A;
  margin-left: auto;
}
.hair-lose-right-img img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}


.testimonial-sec.sec-padding {
  background: #DEDEDE;
}
.testimonial-sec-right .item > img{
  height: auto;
}
.testimonial-sec-right .item img {
  width: 100%;
}
.testimonial-sec-right .item {
  border-radius: 30px;
  overflow: hidden;
}
/* Testimonial Starts */
.item .play-btn {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  cursor: pointer;
}
.item .play-btn svg {
  width: 60px;
  height: 60px;
}
#VideoPop .modal-body{
  display: inherit;
}
#VideoPop .close {
  position: absolute;
  top: -20px;
  right: -20px;
  margin: 0;
  padding: 0;
  background: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  opacity: 1;
  z-index: 999;
}
#VideoPop .close:hover{
  opacity: .8;
}
#VideoPop .close i {
  font-size: 18px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
#VideoPop .modal-body iframe{
  width: 100%;
  height: 450px;
  border-radius: 0;
}
.owl-dot span {
  background-color: rgba(243, 186, 26, .8);
}
.owl-dot.active span {
  background-color: rgba(243, 186, 26, 1);
}

.testimonial-sec h2{
  margin-bottom: 28px;
}
.testimonial-sec .main-bg-btn{
  margin-top: 28px;
}
/* Testimonial Ends */

/* Skin & Dental Starts */
.skin-dental-sec{
  background-color: var(--main-bg-color);
}
.img-skin-dental {
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
}
.img-skin-dental img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-skin-dental  h2{
  margin-bottom: 15px;
}
.single-skin-dental  .btn-outer{
  margin-top: 25px;
}
.skin-dental-sec .row{
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
  position: relative;
}

.skin-dental-sec .row:before{
  content: "";
  position: absolute;
  height: 100%;
  width: 1px ;
  background: #333;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

/* Skin & Dental Ends */

/* Sucess Unveiled Starts */
.sucess-message-sec h2{
  margin: 0;
}
.dark-bg{
  background: var(--main-black-bg);
}
.single-success-row{
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.unveiled-right{
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
.unveiled-right p {
  color: #fff;
}
.unveiled-left {
  margin-right: 80px;
}
.unveiled-right .unveiled-play-btn{
  display: block;
  text-align: center;
  margin: 40px 0;
}
.unveiled-right .unveiled-play-btn img{
  width: 63px;
  height: 63px;
  margin: 0 auto;
} 
.success-unveiled-dot .owl-dot span {
  width: 100%;
  border-radius: 0;
  height: 3px;
  margin: 0 7px;
  display: block;
  border-radius: 5px;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
}
.success-unveiled-dot .owl-dot {
  width: 15%;
  margin: 0 2%;
  display: inline-block;
  zoom: 1;
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  cursor: pointer;
}
.success-unveiled-dot .owl-dots {
  text-align: center;
  line-height: 0;
}
.success-unveiled-dot .owl-dot.active span {
  background-color: rgba(0, 0, 0, 1);
}
.success-unveiled-dot .owl-dot span {
  background-color: rgba(0, 0, 0, .5);
}
.success-unveiled-dot .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.success-unveiled-dot .owl-next {
  float: right;
}
.success-unveiled-dot .owl-next,
.success-unveiled-dot .owl-prev{
  background: transparent;
  border: none;
  cursor: pointer;
}
.success-unveiled-dot  .owl-next span,
.success-unveiled-dot  .owl-prev span{
  width: 22px;
  height: 22px;
  display: inline-block;
  font-size: 0;
  line-height: 22px;
  vertical-align: middle;
}
.success-unveiled-dot  .owl-next span {
  background: url(../images/arrow-right.svg);
}
.success-unveiled-dot  .owl-prev span {
  background: url(../images/arrow-right.svg);
  rotate: -180deg;
}
#success-unveiled-carousel .owl-prev {
  position: absolute;
  left: -50px;
  top: 50%;
  padding: 0 !important;
  margin: 0;
}
#success-unveiled-carousel .owl-next {
  position: absolute;
  right: -50px;
  top: 50%;
  padding: 0 !important;
  margin: 0;
}
#success-unveiled-carousel .owl-next span,
#success-unveiled-carousel .owl-prev span{
  font-size: 0;
}
#success-unveiled-carousel .owl-next span:before,
#success-unveiled-carousel .owl-prev span:before{
  font-family: 'feather' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 41px;
  color: rgba(250, 250, 250, .6);
}
#success-unveiled-carousel .owl-prev span:before{
  content: "\e92f";
} 
#success-unveiled-carousel .owl-next  span:before{
  content: "\e930";
}
#success-unveiled-carousel .owl-prev:hover,
#success-unveiled-carousel .owl-next:hover {
  background: transparent;
}
#success-unveiled-carousel .owl-prev:hover span:before,
#success-unveiled-carousel .owl-next:hover span:before{
  color: #F3BA1A;
}
/* Sucess Unveiled Ends */


/* Insider Knowledge Starts */
.insider-knowledge-sec{
  background: #DFDFDF;
}
.insider-knowledge-text {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
.single-insider-img {
  height: 290px;
  border: 3px solid #fff;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: #fff;
  overflow: hidden;
}
.single-insider-img img{
  height: 290px;
  width: 100%;
  object-fit: cover;
  object-position: top left;
  /* filter: grayscale(100%); */
  transition: all 0.2s;
  /* -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s; */
}
#insider-knowledge-carousel .item:hover img{
  filter: none;
}
.single-insider-text{
  background: #000;
  border: 3px solid #000;
}
.single-insider-text {
  padding: 24px 5px;
}
.single-insider-text h6{
  color: #fff;
  text-align: center;
}
/* Insider Knowledge Ends */


/* Locate Our Branches Starts */
.locate-our-branches-head h2{
  margin-bottom: 0;
}
.branches-locat{
  background: var(--main-bg-color);
}
.single-loc-box,
.single-loc-box a{
  display: -ms-flexbox !important;
  display: flex !important;
}
.single-loc-box a {
  color: inherit !important;
}
.single-loc-box{
  margin-bottom: 30px;
}
 
.icon-loct {
  width: 50px;
  margin-right: 20px;
}
.icon-loct img {
  width: 50px;
  min-width: 50px;
  max-width: 50px;
  object-fit: contain;
}
/* Locate Our Branches Ends */


/* Lets Help Starts */
.lets-help-sec{
  padding: 100px 0;
}
.lets-help-sec .lets-help-inn{
  background: #D9D9D9;
  border-radius: 9px;
  display: -ms-flexbox !important;
  display: flex !important;
  overflow: hidden;
}
.lets-help-sec .lets-help-img{
  width: 40%;
}
.lets-help-sec .lets-help-img img{
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  max-height: 350px;
}
.lets-help-sec .lets-help-text{
  width: 60%;
  -ms-flex-item-align: center !important;
  align-self: center !important;
  padding: 0 40px;
}
.call-action-btn li{
  list-style: none;
  display: inline-block;
  margin-right: 25px;
}

 
.call-to-action{
  background: var(--main-bg-color);
  font-size: 18px;
  font-weight: 500;
  padding: 10px 16px;
  display: inline-block;
  border-radius: 6px;
  color: #000;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.call-to-action img {
  margin-right: 10px;
}
.call-to-action {
  padding: 9px 24px 11px 24px;
}
.lets-help-inn .call-to-action:hover{
  background: #333;
  color: var(--white-text-color);
}
.lets-help-text h2{
  margin-bottom: 20px;
}
.call-action-btn{
  margin-top: 25px;
}
/* Lets Help Ends */

/* Footer Starts */
footer{
  background: var(--main-black-bg);
  padding: var(--sect-padding);
  padding-bottom: 0;
  color: var(--white-text-color);
}
.footer-head{
  color: var(--white-text-color);
}
.social-media li,
.use-full-links li{
  list-style: none;
  margin-bottom: 15px;
}
.social-media li a,
.use-full-links li a{
  color: var(--white-text-color);
}
.social-media li a:hover,
.use-full-links li a:hover{
  color: var(--main-color-text);
}
.social-media li a svg{
  margin-right: 15px;
  height: 20px;
  width: 20px;
}
.copyright-sec{
  padding: 15px 0;
  background: #333;
  margin-top: 40px;
}
.copyright-sec h6{
  text-align: center;
  margin-bottom: 0;
  font-weight: var(--regular-weight);
  letter-spacing: 1px;
}
#footer li.active a{
  color: var(--main-color-text);
}
/* Footer Ends */

/* Footer Starts */
footer{
  background: #000000;
}
footer{
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.shfooter .collapse {
  display: inherit;
}
#footer h5{
  color: #ffcc00;
}
#footer li{
  margin-bottom: 10px;
}
#footer a{
  color: #fff;
}
#footer a:hover{
  text-decoration: none;
  color: #ffcc00;
}
@media (max-width:767px) {
  .shfooter ul {
    margin-bottom: 0;
  }

  .shfooter .collapse {
    display: none;
  }

  .shfooter .collapse.show {
    display: block;
  }

  .shfooter .title .fa-angle-up,
  .shfooter .title[aria-expanded=true] .fa-angle-down {
    display: none;
  }

  .shfooter .title[aria-expanded=true] .fa-angle-up {
    display: block;
  }

  .shfooter .navbar-toggler {
    display: inline-block;
    padding: 0;
  }

}
.resize {
  text-align: center;
}
.resize {
  margin-top: 3rem;
  font-size: 1.25rem;
}
 
.fa-angle-double-right {
  animation: rightanime 1s linear infinite;
}

.fa-angle-double-left {
  animation: leftanime 1s linear infinite;
}
@keyframes rightanime {
  50% {
    transform: translateX(10px);
    opacity: 0.5;
  }
  100% {
    transform: translateX(10px);
    opacity: 0;
  }
}
@keyframes leftanime {
  50% {
    transform: translateX(-10px);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-10px);
    opacity: 0;
  }
}

footer li a{
  font-size: 16px;
}
.copyright{
  text-align: center;
}
.copyright{
 
}
.copyright h6{
  color: #fff;
  margin-bottom: 0;
  font-size: 14px;

}

footer li a svg {
  margin-right: 15px;
  height: 20px;
  width: 20px;
}
/* Footer Ends */

.skew {
  transform: skewX(-10deg);
  overflow: hidden;
  margin: auto;
  -webkit-backface-visibility: hidden;
}
.inn-banner-sec {
  transform: skewX(10deg); 
  width: 65%; 
  margin: 0 auto;
}
.three-banner-sec{
  position: relative;
}
.single-banner-sec{
  transition: .5s ease;
}
.single-banner-sec:first-child:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0; 
}
.three-banner-sec:before{
  /* content: "";
  background: #ffcc00;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute; */
}
.single-banner-sec:first-child,
.single-banner-sec:last-child{
  background: #fff;
}
.single-banner-sec:nth-child(2){
  background: #ffcc00;
}
.single-banner-sec:hover{
  background: #ffcc00;
}

.single-banner-sec:first-child:hover ~ .single-banner-sec:nth-child(2){
  background: #fff;
}
.single-banner-sec.three:hover ~ .single-banner-sec.two{
  background: #fff;
}
/*==========-------- Home Page Ends  ---------===========*/

/*==========-------- About Page Starts  ---------===========*/
.about-banner-sec{
    background: var(--main-bg-color);
    height: 450px;
}
.about-banner-sec .left-abt-banr{
  max-height: 400px;
  text-align: right;
}
.about-banner-sec .left-abt-banr img{
  max-height: 400px;
  width: auto;
}
.about-banner-sec  .container,
.about-banner-sec  .row{
  height: 100%;
}
.left-abt-banr{
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
.left-abt-banr h4{
  font-weight: var(--bold-weight);
  font-size: 54px;
  line-height: 67.5px;
}
.left-abt-banr img{
  width: 100%;
  height: auto;
}
.right-abt-banr{
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}
.corporate-video-sec{
  background: var(--main-bg-color);
}
.about-banner-left,
.about-banner-right{
  text-align: center;
}

.about-18-years-banner .left-abt-banr {
  text-align: right;
}
.about-banner .left-abt-banr {
  text-align: left;
}

.corporate-video-sec img{
  max-height: 395px;
  border-radius: 35px;
}
.play-btn {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  cursor: pointer;
}
.play-btn svg {
  width: 60px;
  height: 60px;
}
.living-values-sec{
  position: relative;
}
.living-val-bg-img {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
}
.living-val-bg-img img{
  width: auto;
  height: 100%;
}
.living-values-sec{
  padding-bottom: 0 !important;
}
/* Collapsible Starts */
.accordion .card-header{
  padding: 0;
}
.card{
  border: none;
}
.card-header{
  border: none;
}
.collapsible-link {
  width: 100%;
  position: relative;
  text-align: left;
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: var(--medium-weight);
  color: #000;
  font-size: 29px;
  border: none;
  border-radius: 0;
  padding: 0;
}
.collapsible-link:focus,
.collapsible-link:hover{
  text-decoration: none;
  color: inherit;
}
.icon-right{
  position: absolute;
  width: 27px;
  height: 27px;
  border: 1px solid #F3BA1A;
  border-radius: 50%; 
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.icon-right:before{
  content: "";
  position: absolute;
  background: url(../images/icons/plus-icon.svg);
  background-size: contain;
  background-position: center center;
  width: 17px;
  height: 17px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.collapsible-link[aria-expanded="true"] .icon-right:before{
  background: url(../images/icons/minus-icon.svg);
}
.accordion  .card{
  border-bottom: 1px solid #000 !important;
  padding: 10px 0;
  border-radius: 0;
}
.accordion  .card-body {
  padding: 10px;
}
/* Collapsible Ends */
.living-values-left{
  padding-bottom: 70px;
}
.living-values-right{
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

/*==========-------- About Page Ends  ---------===========*/

/*==========-------- About Us Starts  ---------===========*/
.about-banner-sec.about-18-years-banner .left-abt-banr,
.about-banner-sec.about-18-years-banner .right-abt-banr{
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
.about-banner-sec.about-18-years-banner .left-abt-banr{
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}
.about-banner-sec h2{
  font-weight: 700;
  line-height: 57px;
}
.humble-beginnings{
  background: var(--main-bg-color);
}
.start-year{
  font-size: 118.93px;
  font-weight: 600;
  line-height: 118.93px;
}
.humble-beginning-left{
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
.numerically-speaking-head{
  margin-bottom: 60px;
}
.faq-outer .numerically-speaking-head {
  margin-bottom: 30px;
}
.nu-speak-box{
  border-radius: 20px;
  background: #F0EFEF;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  padding: 30px 20px;
}
.nu-speak-box img{
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}
.box-right-sec h4{
  font-size: 65.88px;
  font-weight: 700;
  line-height: 65.88px;
  margin-bottom: 10px;
}
.box-right-sec p{
  font-size: 30px;
  font-weight: 300;
  line-height: 30px;
}
.box-right-sec p b{
  font-weight: 600;
  display: block;
}
.box-right-sec {
  padding-left: 20px;
}
/*==========-------- About Us Ends  ---------===========*/

/*==========-------- About Page 3 Starts  ---------===========*/
.about-image-banner > .container-fluid,
.about-image-banner > .container-fluid .row,
.about-image-banner > .container-fluid .about-banner-inner{
  padding: 0;
  height: 100%;
}
.about-image-banner .about-banner-inner img{
  height: 100%;
}
.quality-recogn-right {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
.accreditations-certifi{
  background: var(--main-bg-color);
}
.single-accredit-certifi{
  text-align: center;
}
.single-accredit-certifi img{
  margin-bottom: 40px;
}
.accreditations-certifi-bottom{

}
/*==========-------- About Page 3 Ends  ---------===========*/

/*==========-------- Team Page Starts  ---------===========*/
.team-banner-inn{
  text-align: center;
  padding: 0;
}
.team-banner{
  height: 650px;
}
.team-banner-inn img{
  object-fit: cover;
  width: 100%;
  height: 650px;
}
.meet-exp-image{
  border-radius: 20px;
  overflow: hidden;
  background: #F3BA1A;
  height: 400px;
}
.meet-exp-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.meet-our-exper-single {
  padding: 0 45px;
  margin-bottom: 20px;
}
.meet-exp-text{
  text-align: center;  
  padding: 25px 0;
}
.meet-exp-image img{
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
}
.meet-our-exper-inn:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.join-our-team .container{
  background: #D9D9D9;
  border-radius: 9px;
}
.join-our-team-inn h2{
  margin-bottom: 15px;
}
.join-our-team-inn p{
  margin-bottom: 20px;
}
.mr-15{
  margin-right: 20px;
}
/*==========-------- Team Page Ends  ---------===========*/

/*==========-------- Start Franchise Page Starts  ---------===========*/
.why-choose-hairocraft.gery-bg{
  background: #D9D9D9;
}
.why-choose-hairocraft.white-bg{
  background: #fff;
}
.highlight-even .why-cho-box{
  border-color: #F3BA1A;
}
.why-choose-box{
  margin-bottom: 20px;
}
.why-cho-box {
  height: 100%;
  border: 1px solid #fff;
  border-radius: 24px;
  padding: 15px 20px;
}
.why-cho-box h6{
  font-size: 24px;
}
.why-choose-hairocraft.white-bg  .why-cho-box {
  border: 1px solid #D9D9D9;
}
.why-choose-heading .why-cho-box {
  padding: 0;
  border: none !important;
}
/*==========-------- Start Franchise Page Ends  ---------===========*/

/*==========-------- Contact Page Starts  ---------===========*/
.meet-us-single {
  padding-bottom: 10px;
  border: 1px dashed #f3ba1a;
  height: 100%;
  padding: 20px;
  border-radius: 20px;
}

.meet-us-single h6 {
  font-size: 19px;
  min-height: 48px;
}
.meet-us-single ul li {
  list-style: none;
}
.meet-us-single ul li:first-child{
  margin-bottom: 5px;
}
.meet-us-single ul li a {
  color: #000;
}
.center-image img{
  width: 100%;
}
.contact-form-right .form-control {
  margin-bottom: 15px;
}
.contact-form{
  background: #EAEAEA;
}
ul.contact-social li{
  display: inline-block;
  margin-right: 10px;
}
ul.contact-social li a{
  background: var(--main-bg-color);
  width: 1.8em;
  height: 1.8em;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
ul.contact-social li svg {
  width: 1em;
  height: 1em;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
ul.contact-social li a i{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #000;
  font-size: 14px;
}
.contact-form-left p {
  margin-bottom: 15px;
}
.contact-form-right .form-control{
  border: none;
}
.contact-form-right input.form-control{
  min-height: 45px;
}
.view-sec{
  margin-bottom: 15px;
}
.view-sec li{
  list-style: none;
}
.view-sec li a{
  color: #000;
}
.view-sec li a img{
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.select-loca-row{
  margin-top: 30px;
}
.select-loca-row .select2-selection,
.select-loca-row  .select2-selection__rendered {
  min-height: 45px !important;
  line-height: 45px !important;
  color: #000;
}
.select-loca-row .select2-selection__arrow{
  min-height: 45px !important;
}
#state-dropdown .select2-search {
  display: none;
}
.select-loca-row  .select2-search__field:focus{
  outline: 0 !important;
  box-shadow: none !important;
  border-color: #333;
}
.map-container{
  padding: 0;
  margin-top: 40px;
}
.map-container img{
  width: 100%;
  height: auto;
}
.locate-branches{
  padding-bottom: 0 !important;
}
.locate-branches{
  padding-left: 0;
  padding-right: 0;
}
.map-container iframe{
  margin-bottom: -7px !important;
}
/*==========-------- Contact Page Ends  ---------===========*/

/*==========--------  Carrier Page Starts  ---------===========*/
.join-our-left img{
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.join-our-box-inn{
  background: #EAEAEA;
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
}
.join-our-box-inn img{
  margin-bottom: 20px; 
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.join-our-box-inn h5{
  margin-bottom: 15px;
}
.join-our-team{
  margin-bottom: 25px;
}
.our-mission-sec{
  margin-top: 50px;
}
/*==========--------  Carrier Page Ends  ---------===========*/

/*==========--------  Carrier Life Starts  ---------===========*/
.employee-benefits-outer{
  background: #DFDFDF;
}
.life-hairocraft-bottom{
  margin-top: 50px;
}
.employee-benefits-box{
  margin-top: 40px;
}
.employee-benefits-box img{
  border-radius: 50%;
  width: 100px;
}
.employee-benefits-box h5{
  margin-top: 15px;
}
.employee-stories-head{
  margin-bottom: 40px;
}
#employee-stories-carousel .img-thumb {
  width: 60%;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px auto;
}
#employee-stories-carousel  .item{
  text-align: center;
}
#employee-stories-carousel  .item h4{
  margin-bottom: 0;
}
#employee-stories-carousel  .item h6{
  color: #333;
  margin-bottom: 10px;
}
/*==========--------  Carrier Life Ends  ---------===========*/

/*==========--------   Gallery Starts   ---------===========*/
#gallery-filter-masonry-light{
  margin-top: 30px;
}
.gallery-wrapper-light .main-bg-btn{
  margin: 0 15px;
  cursor: pointer;
}
.gallery-wrapper-light  .main-bg-btn.current{
  background-color: #000;
  color: #fff !important;
}
.gallery-wrapper-light  .main-bg-btn:hover{
  color: #fff !important;
}
.gallery-item-inner {
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 15px 25px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.gallery-item-img:after{
  content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    position: absolute;
    background: rgba(243, 186, 26, 1);
    pointer-events: none;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    border-radius: 3px;
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(1, 0.2, 0.5, 1);
    transition: -webkit-transform 0.5s cubic-bezier(1, 0.2, 0.5, 1);
    transition: transform 0.5s cubic-bezier(1, 0.2, 0.5, 1);
    transition: transform 0.5s cubic-bezier(1, 0.2, 0.5, 1), -webkit-transform 0.5s cubic-bezier(1, 0.2, 0.5, 1);
}
.gallery-item:hover .gallery-item-img:after {
  opacity: 0.6;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.gallery-details{
  left: 30px;
  z-index: 15;
  bottom: 20px;
  opacity: 0;
  border-radius: 4px;
  position: absolute;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #fff !important;
}
.gallery-item:hover .gallery-details {
  opacity: 1;
  bottom: 30px;
}
.gallery-item {
  margin-bottom: 30px;
}
.gallery-details h5,
.gallery-details span{
  color: #000;
}
/*==========--------   Gallery Ends   ---------===========*/

/*==========--------   Location  Starts   ---------===========*/
.location-lists-sec{
  background: var(--main-bg-color);
}
.location-list-ul{
  text-align: center;
  display: inline-block;
 
}
.location-list-ul li {
  float: left;
  position: relative;
  padding-right: 35px;
  list-style: none;
}
 

.location-list-ul li a{
  color: #000;
  font-weight: 500;
}
.location-list-ul li a:hover{
  color: #333;
}
.location-box{
  height: 400px;
  margin-bottom: 30px;
}
.location-box a {
  display: inline-block;
  height: 100%;
  width: 100%;
  position: relative;
  background-position: center center !important;
  background-size: cover !important;
}
.location-name{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-weight: 700;
  font-size: 45px;
  color: #fff;
  background: rgba(0, 0, 0, .6);
  margin-bottom: 0;
  padding: 2px 15px 5px 15px;
  z-index: 9;
}
.location-box a:after{
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  position: absolute;
  background: rgba(243, 186, 26, 1);
  pointer-events: none;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  border-radius: 3px;
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(1, 0.2, 0.5, 1);
  transition: -webkit-transform 0.5s cubic-bezier(1, 0.2, 0.5, 1);
  transition: transform 0.5s cubic-bezier(1, 0.2, 0.5, 1);
  transition: transform 0.5s cubic-bezier(1, 0.2, 0.5, 1), -webkit-transform 0.5s cubic-bezier(1, 0.2, 0.5, 1);
}
.location-box a:hover:after {
  opacity: 0.6;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.location-box-inn {
  height: 100%;
}
.location-box-inn{
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
/*==========--------   Location  Ends   ---------===========*/

/*==========--------   Location Detail Starts   ---------===========*/
.location-detail-banner{  
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.location-details-heading p{
  margin-bottom: 10px;
}
.call-whatssup-number{
  background: var(--main-bg-color);
  padding: 20px 0;
}
.call-whatssup-number .call-to-action {
  font-size: 40px;
  font-weight: 700;
}
.call-whatssup-number .call-to-action img {
  height: 50px;
  width: auto;
}
.call-whatssup-number .call-to-action:hover{
  color: inherit;
}
.get-in-touch-sec{
  background: #EAEAEA;
}
.map-left iframe{
  width: 100%;
  height: 500px;
}
.address-right-inn{
  position: absolute;
  left: -100px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 35px;
}
.direct-head{
  margin-top: 15px;
}
.address-right-inn ul {
  padding-left: 30px;
  margin-bottom: 15px;
}
.address-right-inn p b{
  font-weight: 600;
}
.address-sec{
  margin-top: 25px;
}
.address-sec li{
  position: relative;
  padding-left: 30px;
  list-style: none;
  margin-bottom: 5px;
}
.address-sec li i{
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 19px;
  color: #666;
}
.address-sec li a{
  font-size: 17px;
  color: #000;
  font-weight: 500;
}
.meet-us-left .address-sec {
  margin-top: 10px;
  padding-left: 20px;
  margin-bottom: 15px;
}
.location-details-sec{
  background: var(--main-bg-color);
}
.get-touch-sec textarea.form-control{
  margin-bottom: 15px;
}
.get-touch-sec input.form-control {
  min-height: 38px;
  margin-bottom: 15px;
}
.get-touch-sec .form-control:focus{
  border-color: #9e9e9e !important;
}
.get-touch-sec .select2-selection,
.get-touch-sec .select2-selection__rendered {
  min-height: 38px !important;
  line-height: 38px !important;
  color: #000;
}
.get-touch-sec  .select2-search--dropdown .select2-search__field:focus{
  outline: none;
  box-shadow: none;
}
.get-touch-sec .select2-selection__arrow {
  min-height: 38px !important;
}
.location-details-heading h2,
.meet-us-left h2,
.get-touch-sec h2 {
  margin-bottom: 20px;
}
.get-touch-sec {
  margin-top: 74px;
}
.get-touch-inn{
  padding: 25px 40px;
  border-radius: 20px;
  box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.2);
}
.location-detail-banner{
  overflow: hidden;
}
.location-detail-banner img{
  height: 500px;
  width: 100%;
  object-fit: cover;
}
.get-touch-inn textarea.form-control {
  margin-top: 15px;
}
#google_recaptcha {
  margin-left: 15px;
  margin-bottom: 15px;
}

.location-detail-banner, #location-detail-slider, .location-slide {
  height: 450px;
}
#location-detail-slider .location-slide img{
  height: 450px !important;
  object-fit: cover !important;
  width: 100% !important;
  object-position: top;
}
#location-detail-slider .slick-prev {
  position: absolute;
  top: 50%;
  background: #ffffff;
  left: 15%;
  transform: translateY(-50%);
  z-index: 9;
  width: auto;
  height: auto;
  border-radius: 5px;
}
#location-detail-slider .slick-next{
  position: absolute;
  top: 50%;
  background: #ffffff;
  right: 15%;
  transform: translateY(-50%);
  z-index: 9;
  width: auto;
  height: auto;
  border-radius: 5px;
}
#location-detail-slider .slick-prev:before,
#location-detail-slider .slick-next:before{
  font-family: 'feather' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 35px;
  color: #000;
}
#location-detail-slider .slick-prev:before{
  content: "\e92f";
  
}
#location-detail-slider .slick-next:before{
  content: "\e930";
}
 

/* #location-detail-slider .slick-slide.slick-current .location-slide:after{
  background: linear-gradient(100deg,  rgba(243, 186, 26, 0),rgba(243, 186, 26, 0), rgba(243, 186, 26, 0));
}
#location-detail-slider .slick-slide.slick-current .location-slide:before{
  background: linear-gradient(100deg, rgba(243, 186, 26, 0),rgba(243, 186, 26, 0), rgba(243, 186, 26, 0));
}
#location-detail-slider  .slick-slide .location-slide:before {
  position: absolute;
  height: 100%;
  width: 50%;
  display: block;
  content: "";
  background: linear-gradient(100deg, rgba(243, 186, 26, 0),rgba(243, 186, 26, .7), rgba(243, 186, 26, 1));
  z-index: 100;
  visibility: visible;
  opacity: 0.6;
  transition: 0.3s ease-in-out;
  right: 0;
}
#location-detail-slider  .slick-slide .location-slide:after {
  position: absolute;
  height: 100%;
  width: 50%;
  display: block;
  content: "";
  background: linear-gradient(100deg,  rgba(243, 186, 26, 1),rgba(243, 186, 26, .7), rgba(243, 186, 26, 0));
  z-index: 100;
  visibility: visible;
  opacity: 0.6;
  transition: 0.3s ease-in-out;
  left: 0;
  height: 100%;
  top: 0;
}
  */
#location-detail-slider  .slick-slide .location-slide {
  position: relative;
} 

/*==========--------   Location Detail Ends   ---------===========*/


/*==========--------  Mega Menu Starts  ---------===========*/
.navbar-nav .nav-item > a {
  padding: 0 10px !important;
}
.dropdown.megamenu-fw {
  position: static;
}
.megamenu-content{
  left: 0;
  right: 0;
  background: #DEDEDE;
  border: none;
  border-radius: 0;
  padding: 50px 0;
  margin-top: 0;
  box-shadow: 1px 1px 5px #c6c6c6;
}
.megamenu-content .tab-content {
  margin-top: 40px;
}
.megamenu-content .fade.in {
  opacity: 1;
}
.megamenu-content .tab-pane img{
  border-radius: 10px;
  height: 90px;
  
}
.megamenu-content .tab-pane .img-menu{
  margin-bottom: 15px;
}
.megamenu-content .tab-pane .img-menu a {
  display: inline-block;
  text-align: center;
}
.megamenu-content .tab-pane .img-menu a h5{
  margin-top: 15px;
  color: #000;
  font-size: 16px;
}
.megamenu-content .tab-pane h5{
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 500;
}
.megamenu-content .nav.nav-tabs {
  -ms-flex-pack: center !important;
  justify-content: center !important;
  border: none;
}
.megamenu-content .nav.nav-tabs li a {
  border: 1px solid #333;
  margin: 0 10px;
  padding: 3px 20px;
  border-radius: 5px;
  color: #000;
  font-size: 16px;
}
.megamenu-content .nav.nav-tabs li.active a,
.megamenu-content .nav.nav-tabs li a:hover{
  background-color: var(--main-bg-color);
  border-color: #F3BA1A;
}
.common-menu-list {
  margin-top: 59px;
}
.common-menu-list li{
  list-style: none;
  margin-bottom: 16px;
}
.common-menu-list li a{
  color: #000;
  font-size: 16px;
}
.common-menu-list li a:hover{
  color: #F3BA1A;
}
.singlemenu-content {
  top: 56px;
  border: none;
  border-radius: 0;
  padding: 15px;
  background: #DEDEDE;
  min-width: 200px;
}
.singlemenu-content li{
  margin-bottom: 16px;
}
.singlemenu-content li a{
  color: #000;
  font-size: 16px;
}
.dropdown-toggle:after{
  display: none;
}
.sub-arrow-right.only-mob{
  display: none;
}
.sticky-sec .singlemenu-content {
  top: 47px;
} 
.singlemenu-content li a:hover{
  color: #F3BA1A;
}
/*==========--------   Mega Menu Ends   ---------===========*/

.megamenu-content {
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  background: #DEDEDE;
  z-index: 1000;
}
.megamenu-fw > .dropdown-menu {
  width: 100%;
  left: 0;
}
.nav-tabs .nav-link {
  color: #000;
}
.nav-tabs .nav-link.active {
  color: #fff;
  background-color: #007bff;
}
 

/* New Banner with Animation Starts */
.boxes-banner-bottom {
  background: #DEDEDE;
}
.single-therapy-sec .single-therapy-inn {
  background: #ffffff;  
  border-radius: 15px;
  -webkit-transition: all 0.9s ease-in-out 0s;
  -o-transition: all 0.9s ease-in-out 0s;
  transition: all 0.9s ease-in-out 0s;
}
.single-therapy-sec .single-therapy-inn:hover{
  background-color: var(--main-bg-color);
}
.single-therapy-sec .single-therapy-inn:hover .main-bg-btn{
  background-color: var(--main-white-bg);
  color: var(--main-text-color);
}
.two-left-banner{
  background: #ffcc00;
}
.two-left-banner,
.two-right-banner{
  text-align: center;
  padding: 50px 40px;
}
.two-left-banner, .two-right-banner {
  position: relative;
  transition: .5s ease;
}
.two-banner-sec p{
  margin-bottom: 20px;
}
 
.single-therapy-inn{
  box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
  padding: 50px 50px 50px 50px;
  transition: .5s ease;
}

.single-therapy-inn:nth-child(2){
  background-color: #dedede;
}
 
.middle-box{
  transform: matrix3d(1.1, 0, 0, 0, 0, 1.1, 0, 0, 0, 0, 1, 0, 0, -50, 0, 1);
  z-index: 99;
} 
/* New Banner with Animation Ends */


/* Video Modal Starts */
.testimonial-sec .row {
  -ms-flex-align: center !important;
  align-items: center !important;
}
.unveiled-play-btn{
  cursor: pointer;
}
#videoModal .modal-body{
  display: inherit;
}
#videoModal .close {
  position: absolute;
  top: -20px;
  right: -20px;
  margin: 0;
  padding: 0;
  background: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  opacity: 1;
  z-index: 999;
}
#videoModal .close:hover{
  opacity: .8;
}
#videoModal .close i {
  font-size: 18px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
#videoModal .modal-body iframe{
  width: 100%;
  height: 450px;
  border-radius: 0;
}
.single-therapy-sec.middle-box {
  background-color: #F3F3F3 !important;
}
/* Video Modal Ends */

/* Whatsapp Chat Widget Starts */
.whatsapp-chat-icon{
    position: fixed;
    right: 30px;
    bottom: 10px;
    z-index: 999;
}
.whatsapp-chat-icon a{
    width: 50px;
    height: 50px;
    background: #25d366;
    display: inline-block;
    border-radius: 50%;
}
.whatsapp-chat-icon a i{
    font-size: 25px;
    position: absolute;
    left: 50%;
    top: 41%;
    transform: translateX(-50%) translateY(-41%);
    color: #fff;
}
.whatsapp-tooltip {
    position: absolute;
    left: -110px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    max-width: 380px;
    border-radius: 5px;
    padding: 10px 15px;
    box-shadow: rgba(50, 50, 93, 0.25) -1px 6px 12px -9px, rgba(0, 0, 0, 0.3) -3px -1px 11px -3px;
    transition: visibility .1s,opacity .3s;
    opacity: 0;
    visibility: hidden;
}
.whatsapp-tooltip:before{
  content: " ";
  width: 0;
  height: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -12px;
  border: 6px solid;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-color: currentcolor;
    border-left-color: currentcolor;
  position: absolute;
  transform: rotate(-270deg);
  border-color: transparent transparent #fff;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .1));
}
.whatsapp-tooltip.show{
    opacity: 1;
    visibility: visible;
}
.whatsapp-widget-box {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.15) 0px 6px 12px -2px, rgba(0, 0, 0, 0.2) 0px 3px 7px -3px;
    width: 380px;
    bottom: 80px;
    position: fixed;
    right: 30px;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}
.whatsapp-widget-box.show {
    visibility: visible;
    opacity: 1;
}
.widget-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 14px;
    height: 14px;
    padding: 0;
    cursor: pointer;
    background-color: transparent;
    border: none;
    z-index: 99;
}
.widget-close i {
    font-size: 20px;
    color: #fff;
}
.widget-user-header {
    position: relative;
    padding: 25px 45px 25px 25px;
    background: #25d366;
    display: flex;
}
.widget-user-photo {
    position: relative;
    width: 40px;
    height: 40px;
}
.widget-user-photo:after {
    position: absolute;
    right: 5px;
    bottom: 0;
    display: block;
    width: 6px;
    height: 6px;
    content: "";
    border: 2px solid #25d366;
    border-radius: 50%;
    background-color: #76f17b;
}
.widget-user-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
}
.widget-user-desc {
    margin-left: 15px;
}
.widget-user-name {
    font-size: 14px;
}
.widget-user-status {
    font-size: 13px;
    font-weight: 300;
}
.widget-chat-body {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #f1f1f1 url(../img/modalChatBackground.png) repeat;
    background-size: contain;
}
.widget-chat-message {
    max-width: 145px;
    border-radius: 0 5px 5px 5px;
    background-color: #fff;
    align-self: flex-start;
    position: relative;
    display: inline-block;
    padding: 10px;
    box-shadow: 0 1px 0 rgb(0 0 0 / 10%);
}
.widget-chat-message:before{
    position: absolute;
    top: 0;
    left: -11px;
    display: block;
    width: 0;
    height: 0;
    content: "";
    border-top: 11px solid #fff;
    border-left: 11px solid transparent;
}
.widget-message-name {
    font-size: 12px;
    color: #9e9e9e;
}
.widget-message-text {
    font-size: 14px;
    line-height: 120%;
    color: #212121;
    white-space: pre-wrap;
    margin: 10px 0;
}
.widget-message-time {
    font-size: 12px;
    color: #9e9e9e;
    text-align: right;
}
.widget-chat-footer {
    text-align: center;
    background-color: #fff;
    padding: 15px 15px 3px;
}
.whatsapp-widget-box .start-chat-btn {
    background: #25d366;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    width: 100%;
    border: none;
    margin-bottom: 15px;
    color: #000;
}
.whatsapp-widget-box .start-chat-btn:hover{
    text-decoration: none;
    color: #000;
}
.whatsapp-widget-box .start-chat-btn i {
    font-size: 19px;
    color: #fff;
    margin-right: 10px;
}
.widget-chat-footer span {
  font-weight: 500;
  font-family: 'Titillium Web';
  font-style: normal;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .whatsapp-widget-box {
        width: 300px;
    }
}

/* Google & Facebook Review Sec Starts */
.google-fb-review {
  display: -ms-flexbox !important;
  display: flex !important;
 
}
.google-fb-review .fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #F3BA1A;
}

.google-fb-review .fa-star:before {
  content: "\f005";

}
.google-fb-review  .fa-star-o:before {
  content: "\f006";
}
.google-fb-review .review-inn{
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.google-fb-review .google-review,
.google-fb-review .facebook-review{
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.google-fb-review .google-star h5 {
  margin-bottom: 0;
}
.google-fb-review .google-icon {
  margin-right: 15px;
}
.google-fb-review .google-icon img {
  height: 50px;
}
.google-fb-review .google-star h6 {
  font-size: 13px;
  font-weight: 400;
  color: #333;
  margin-bottom: 0;
  padding-left: 20px;
}
.google-fb-review .start-number{
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  padding-left: 0;
}
.google-fb-review .star-no {
  font-weight: 600;
  font-size: 25px;
  line-height: 28px;
  margin-right: 10px;
}
.google-fb-review .js-star-rating .fa {
  font-size: 20px;
  position: relative;
  margin-right: 5px;
}
.google-fb-review .js-star-rating  .fa-star-percentage {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}
.google-fb-review{
  margin: 0 -15px;
}

.google-review, .facebook-review {
  box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.2);
  padding: 20px;
  border-radius: 10px;
  margin: 15px;
}

 
/* Google & Facebook Review Sec Ends */

/* FAQ Starts */
.faq-outer .accordion .card {
  padding: 0;
  border: none !important;
  margin-bottom: 5px;
}
.collapsible-link:hover,
.collapsible-link:focus{
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.collapsible-link {
  width: 100%;
  position: relative;
  text-align: left;
  padding: 5px 25px;
  font-size: 24px;
}
.collapsible-link[aria-expanded="true"],
.collapsible-link:hover{
  background-color: #f3ba1a !important;
}
.faq-outer  .collapsible-link{
  padding: 20px 25px;
}
.faq-outer .accordion .card-body {
  padding: 20px 50px !important;
  border-left: 1px solid #f3ba1a;
  border-right: 1px solid #f3ba1a;
  border-bottom: 1px solid #f3ba1a;
  font-size: 20px;
}
.collapsible-link::before {
  content: "\f107";
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translateY(-50%);
  display: block;
  font-family: "FontAwesome";
  font-size: 1.1rem;
}
.collapsible-link[aria-expanded="true"]::before {
  content: "\f106";
}
/* FAQ Ends */

/* Services Starts */
/* Banner Sec Starts */
.services-list-inn {
  padding: 0;
}
.mobile-banner{
  display: none;
}
.desk-banner{
  max-height: 450px;
  width: 100%;
  object-fit: cover;
  object-position: left center;
}
.services-lists-banner .services-banner-inn{
  padding: 0;
}
.services-banner-inn h1{
  font-size: var(--h2-size);
  line-height: 54px;
}
/* Banner Sec Ends */

.services-listbox{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: inline-block;
  margin-bottom: 25px;
  width: 100%;
  max-height: 460px;
}
.services-desc {
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 180px 30px 35px 30px;
  width: 100%;
  z-index: 9;
  /* background: linear-gradient(0deg, rgb(255 194 43) 0.94%, rgba(255, 255, 255, 0) 100%); */
  background: linear-gradient(0deg, rgb(255 194 43) 0.94%, rgba(255, 255, 255, 0) 50%);
}
.services-image img{
  width: 100%;
  object-fit: cover;
  height: 460px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
 }
.services-listbox:hover .services-image img{
  transform: scale(1.1);
}
.services-cat h6 {
  color: #333;
}
.services-title h3 {
  color: #000;
}
.read-button {
  position: absolute;
  background: #fcc11f;
  width: 50px;
  height: 50px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  z-index: 9;
  top: 10px;
  transition: .3s linear all;
  opacity: 0;
  right: 0;
}
.read-button i{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #000;
  font-size: 25px;
}
.services-listbox:hover .read-button {
  opacity: 1;
  right: 10px;
}
.read-more-button {
  position: absolute;
  background: #fcc11f;
  text-align: center;
  z-index: 9;
  top: 10px;
  transition: .3s linear all;
  padding: 4px 10px;
  color: #000;
  border-radius: 5px;
  font-size: 15px;
  opacity: 0;
  right: 0;
}
.services-listbox:hover .read-more-button{
  opacity: 1;
  right: 10px;
}
/* Services Ends */

/* Banner Bottom Starts */
.banner-bottom-right {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
/* Banner Bottom Ends */

/* New Content Starts */
.services-lists-sect {
  margin-top: 60px;
}
.new-content-outer {
  padding-top: 30px;
  padding-bottom: 30px;
}
.new-content-box {
  background: var(--main-bg-color);
}
.new-content-box:nth-child(even){
  background: #ebeaea;
}
.new-content-box:nth-child(even) .new-content-left {
  order: 2;
}
.new-content-with-menu{
  background: #ebeaea;
}
/* Sidebar Starts */
.services-lists-banner {
  margin-top: 91px;
}
.new-content-left {
  padding-right: 50px;
}
.sidebar-section {
  position: absolute;
  height: 100%;
  width: 100%;
}
.sidebar-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.make-me-sticky {
  position: sticky;
  top: 75px;
  padding: 20px;
  background: #ffc22b;
  border-radius: 15px;
}
.sidebar-menu {
  margin-bottom: 35px;
}
.sidebar-menu:last-child{
  margin-bottom: 0;
}
.sidebar-menu  ul li{
  padding-left: 15px;
}
.sidebar-menu ul li {
  list-style: none;
  margin-bottom: 5px;
}
.sidebar-menu ul li a{
  position: relative;
  font-family: 'Titillium Web';
  font-style: normal;
  font-size: var(--normal-text-size);
  display: inline-block;
  padding-left: 25px;
  color: #000;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.sidebar-menu ul li.active a{
  font-weight: 600;
}
.sidebar-menu ul li a:hover{
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}
.sidebar-menu ul li a:before{
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #333;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
}
.content-section h3 {
  margin-bottom: 15px;
}
.content-section p{
  margin-bottom: 20px;
}
.full-size{
  width: 100%;
}
.half-size{
  width: 50%;
}
.quarter-size{
  width: 25%;
}
.img-outer {
  margin-bottom: 20px;
}
.content-section ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
.content-section-single {
  margin-bottom: 20px;
}
/* Sidebar Ends */



/* Services Details Page Starts */
.services-with-img.sec-padding,
.services-without-img.sec-padding{
  padding: 40px 15px !important;
}
.services-lists-banner{
  margin-top: 91px;
}
.services-banner-inn{
  padding: 0;
}
.services-img-right{
  position: relative;
}
.services-with-img  .services-with-content {
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 50px;
  left: -60px;
  box-shadow: rgba(100, 100, 111, 0.3) 0px 7px 29px 0px;
}
/* .services-with-img:nth-child(even) .services-img-left {
  order: 2;
}
.services-with-img:nth-child(even) .services-with-content{
  left: inherit; 
  right: -60px;
  z-index: 9;
} */
.services-with-img.even .services-img-left {
  order: 2;
}
.services-with-img.even .services-with-content{
  left: inherit; 
  right: -60px;
  z-index: 9;
  left: 15px;
}
.services-without-img .services-with-content{
  background: #fff;
  padding: 50px;
  box-shadow: rgba(100, 100, 111, 0.3) 0px 7px 29px 0px;
}
.services-with-img.no-image .services-img-right{
  -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.services-with-img.no-image .services-with-content {
  position: relative;
  right: inherit;
  transform: inherit;
  top: inherit;
  left: inherit;
}
.services-with-img:first-child  {
  opacity: 0;
} 
/* Services Details Page Ends */

/* FAQ Starts */
.faq-outer {
  background: #DEDEDE;
}
.faq-outer .card-header{
  background-color:  #fff ;
}
.faq-outer .collapsible-link::before {
  font-size: 35px;
}
/* FAQ Ends */

/* New Banner Starts */
.main-banner-sec{
  height: 750px;
  position: relative;
  /* background: #fdbc2b; */
  background: url(../images/bg-shape.png) #fdbc2b;
  overflow: hidden;
  background-size: cover;
  background-position: right bottom;
}
.banner-slide,
.banner-slide .row,
.banner-slide{
  height: 750px;
}

.bg-shape {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
.main-banner-sec .container-fluid{
  position: relative;
  height: 100%;
}
.banner-slide {
  overflow: hidden;
}
.carousel-overlay{
  background: #ffcc00;
  height: 100%;
  background-size: 50%;
  background-position: top right;
  position: absolute;
  right: 0;
  width: 100%;
}
.banner-slide-left{
  -ms-flex: 0 0 47%;
  flex: 0 0 47%;
  max-width: 47%;
  padding-right: 60px;
}
.banner-slide-left{
  display: -ms-flexbox !important;
  display: flex !important;
}
.banner-left-content{
  -ms-flex-item-align: center !important;
  align-self: center !important;
} 
.banner-slide-right{
  -ms-flex: 0 0 53%;
  flex: 0 0 53%;
  max-width: 53%;
  padding: 0;
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}
.banner-slide-right img{
  width: 100%;
}
.banner-left-content h2{
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
}
.banner-left-content p{
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.banner-left-content .btn-wrapper {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}
.banner-left-content h2,
.banner-left-content p,
.banner-left-content .btn-wrapper {
  visibility: hidden;
}
.banner-left-content h2.fadeInUp,
.banner-left-content p.fadeInUp,
.banner-left-content .btn-wrapper.fadeInUp {
  opacity: 1;
  visibility: visible;
}
.btn-wrapper {
  display: inline-block;
}
.banner-left-content h2 {
  text-transform: uppercase;
  margin-bottom: 15px;
}
.banner-left-content p{
  margin-bottom: 15px;
}

/* New Banner Ends */


/* Banner Bottom Starts */
.single-box-inn {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.single-box-content {
  -ms-flex-item-align: center !important;
  align-self: center !important;
  margin-left: 15px;
}
.single-box-outer{
  padding-top: 30px;
  padding-bottom: 30px;
}
.single-box-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fc0;
  position: relative;
}
.single-box-img img {
  width: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.single-box-content h4{
  margin-bottom: 0;
  font-size: 40px;
  line-height: 40px;
}
.single-box-content span {
  font-size: 20px;
  line-height: 20px;
}
/* Banner Bottom Ends */

/* Services Banner Starts */
.container.services-banner-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.services-banner-caption h3{
  font-size: 65px;
}
/* Services Banner Ends */

.form-control.has-error {
  border-color: red;
}
.get-touch-inn [aria-describedby="ddlCode-error"] {
  border-color: red !important; 
}
.get-touch-inn .form-control:focus {
  border-color: #ced4da;
}

.map-container iframe {
  width: 100%;
  margin-bottom: 15px;
}



/* Testimonial Starts */
 
.testimonial-item {
  margin-bottom: 30px;
}
.testimonial-icon {
  text-align: center;
  margin-bottom: 20px;
}
.testimonial-icon i{
  font-size: 20px;
  color: #bababa;
}
.testimonial-box{
  padding: 20px;
  box-shadow: 0px 7px 16px 0px rgba(0,0,0,0.2);
  transition: transform .3s cubic-bezier(.175,.885,.32,1.275);
  /* box-shadow: 0 1px 3px #00000014,0 1px 2px #0000000a; */
  border-radius: 10px;
}
.testimonial-box:hover{
  transform: translateY(-5px); 
  box-shadow: 0px 3px 13px 0px rgba(0,0,0,0.2);
}
.testimonial-video {
  border-radius: 10px;
  overflow: hidden;
  height: 240px;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
}
.testimonial-video-play i{
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.testimonial-video img{
  height: 240px;
  width: 100%;
  object-fit: cover;
}
.customer-dp {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonial-customer {
  margin-top: 20px;
  display: flex;
}
.customer-dp img{
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.customer-detail h5 {
  margin-bottom: 0;
}
.customer-detail h6{
  font-weight: 400;
  font-size: 16px;
}
.customer-detail {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
/* Testimonial Ends */
.single-success-row .unveiled-left img {
  overflow: hidden;
  border-radius: 50%;
  height: 320px;
  object-fit: cover !important;
  width: 320px;
  max-width: 320px;
  border: 3px solid #F3BA1A;
  background: #121212;
}


/* Location Top */


.location-lists-sec {
  background: #fff;
 }
 .location-lists-sec.sticky {
   margin-top: 91px !important;
   top: 71px;
   position: sticky;
   z-index: 99;
   background: #F3BA1A;
   padding: 15px 0 12px 0;
 }
 .location-list-ul li:after{
   position: absolute;
   top: 50%;
   right: 16px;
   -webkit-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
   transform: translateY(-50%);
   content: "/";
   opacity: .5;
 }
 .location-list-ul li:last-child:after{
   display: none;
 }
 .location-list-ul li{
   padding-right: 35px;
 }
 .location-list-ul li a {
   color: #000; 
 }
 .location-list-ul li a:hover{
   color: #333333;
 }
  
.location-menu{
  display: none;
}

 /* Location Ends */
 
.modal {
  z-index: 99999;
}
.modal-backdrop {
  z-index: 9999;
}

.our-mission-right img {
  border-radius: 50%;
}
.main-det-content h4 {
  font-size: 25px;
  font-weight: var(--regular-weight);
  line-height: 35px;
}
/* breadcrumb Starts */

.breadcrumb-outer .container {
  padding-top: 25px;
}
.breadcrumb-outer .breadcrumb {
  background-color: transparent;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
}
.breadcrumb-outer .breadcrumb li {
  position: relative;
  padding-right: 30px;
}
.breadcrumb-outer .breadcrumb li:after {
  position: absolute;
  top: 50%;
  right: .8rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "/";
  opacity: .5;
}
.breadcrumb-outer .breadcrumb li a{
  color: #000;
}
.breadcrumb-outer .breadcrumb li a:hover{
  color: #C89403 !important;
}
.breadcrumb-outer .breadcrumb li:last-child::after{
  display: none;
}
.breadcrumb-outer .breadcrumb li:last-child{
  color: #C89403 !important;
}
.breadcrumb-inner {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}


.submenu-inn li {
  list-style: none;
  display: inline-block;
  margin-right: 10px;
}
.submenu-inn li:last-child{
  margin-right: 0;
}
.submenu-inn {
  text-align: right;
}
.submenu-inn li a {
  transform: skew(-21deg);
  display: inline-block;
  background: #DEDEDE;
  padding: 4px 20px;
  font-size: var(--normal-text-size);
  font-weight: var(--thin-weight);
  line-height: var(--normal-text-line-he);
}
.submenu-inn li a:hover{
  background: #F3BA1A;
}
.submenu-inn li a span{
  transform: skew(21deg);
  display: inline-block;
  color: #000;
}
/* breadcrumb Ends */

.services-with-content {
  font-size: var(--normal-text-size);
  font-weight: var(--regular-weight);
  line-height: var(--normal-text-line-he);
}
.services-with-content ul,
.services-with-content ol {
  list-style-position: inside;
}
.services-with-content p {
  margin-bottom: 10px;
}
.services-with-content ul li {
  list-style: none;
  position: relative;
  padding-left: 17px;
  margin-bottom: 10px;
}
.services-with-content ul li:before {
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  left: 0;
}

/* Video Play Starts */
.video-play-overlay {
  width: 80px;
  height: 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.video-play-overlay i{
  font-size: 25px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);  
}
.video-play-overlay:before{
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #F3BA1A;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
}
.video-play-overlay:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: rgba(243, 186, 26, .7);
  border-radius: 50%;
  transition: all 200ms;
}

@-webkit-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.gallery-item-inner .video-play-overlay {
  z-index: 99;
}
.gallery-item-inner .video-play-overlay:before{
  background: #ffffff;
}
.gallery-item-inner .video-play-overlay:after{
  background: #ffffff;
}
.gallery-item-inner .video-play-overlay i{
  color: #000;
}
/* Video Play Ends */

 

#employee-stories-carousel .item{
  padding: 0 !important;
  box-shadow: none !important;
}
.employee-descrip {
  padding: 0 15px;
}
#employee-stories-carousel .img-thumb{
  width: 65%;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px auto;
  border: 15px solid #fff;
}
#employee-stories-carousel .item {
  text-align: center;
  box-shadow: 0px 0px 15px -3px rgba(0,0,0,0.2);
  margin: 13px;
  padding: 16px;
  border-radius: 12px;
  transition: all .3s linear;
}
#employee-stories-carousel .item:hover {
  box-shadow: 0px 0px 15px -3px rgba(0,0,0,0.4);
}
.employee-descrip {
  position: relative;
}
.employee-descrip:before{
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  width: 100%;
  height: 76%;
  background: #E8E7E7;
  z-index: -1;
  bottom: 0;
  border-radius: 10px;
}
.employee-descrip {
  padding: 0 15px 30px 15px;
}
#employee-stories-carousel .owl-nav .owl-prev:hover,
#employee-stories-carousel .owl-nav  .owl-next:hover {
  background: transparent;
}
#employee-stories-carousel .owl-nav .owl-prev:hover i,
#employee-stories-carousel .owl-nav  .owl-next:hover i {
  color: #F3BA1A;
}
#employee-stories-carousel .owl-nav  .owl-prev i,
#employee-stories-carousel .owl-nav  .owl-next i{
  font-size: 40px;
}
#employee-stories-carousel .owl-nav  .owl-prev{
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-60%);
}
#employee-stories-carousel .owl-nav  .owl-next{
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-60%);
}

.service-submenu .breadcrumb {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
#employee-stories-carousel .img-thumb{
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
#employee-stories-carousel .item:hover .img-thumb {
  border-color: #fbb500;
}
 

/* Employee Benefits Starts */
.emp-bene-col{
  margin-bottom: 15px;
}
.emp-bene-left{
  padding-right: 30px;
}
.emp-bene-colinn {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  border: 1px solid #fff;
  padding: 20px 12px;
  border-radius: 11px;
}
.emp-bene-colinn h5 {
  font-size: 18px;
}
.emp-bene-col img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;

  -webkit-transition: 0.70s;
  -moz-transition: 0.70s;
  -ms-transition: 0.70s;
  -o-transition: 0.70s;
}
.emp-bene-colinn:hover img{
  transition: 0.70s;
  -webkit-transition: 0.70s;
  -moz-transition: 0.70s;
  -ms-transition: 0.70s;
  -o-transition: 0.70s;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
.emp-bene-left{
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
/* Employee Benefits Ends */



.life-hoc-bg {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  background-size: cover !important;
  background-position: center center !important;
  border-radius: 11px;
}
.life-hoc-left h2 { 
  -ms-flex-item-align: center !important;
  align-self: center !important;
  text-align: center;
  margin-bottom: 0;
  color: #000;
  z-index: 99;
}
.life-hoc-text h5 {
  font-size: 25px;
}

.join-our-box-inn h5 {
  font-size: 25px;
}
.life-hoc-text {
  border: 1px solid #F3BA1A;
  border-radius: 11px;
  padding: 15px 20px;
}
.col-xl-4.life-hoc-left{
  padding: 0;
  display: block;
}
.life-hoc-bg::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(243, 186, 26, .8);
  z-index: 0;
  border-radius: 11px;
  left: 0;
}


.join-our-box-inn {
  padding-right: 80px;
  padding-bottom: 40px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  height: 100%;
}
.join-our-img {
  position: absolute;
  right: -20px;
  bottom: -25px;
  background: #D9D9D9;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  border-radius: 50%;
  padding: 25px;
  z-index: 2;
}
.join-our-img img {
  width: 80px;
  margin-bottom: 0;
  height: auto;
}
.join-our-box-inn:hover .join-our-img{
    background: #F3BA1A;
}
.join-our-box {
  margin-bottom: 20px;
}
.life-right-box:last-child{
  margin-bottom: 0;
}

.life-right-box {
  display: -ms-flexbox !important;
  display: flex !important;
  margin-bottom: 30px;
}

/* Form Modal Sec Starts */
.swal2-popup{
  border-radius: 20px !important;
}
#swal2-html-container .swal-success-content {
  padding-top: 45px;
  overflow: hidden;
}
#swal2-html-container .icon-outer {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #6bd652;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -35px;
}
#swal2-html-container .icon-outer img {
  width: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
#swal2-html-container .modal-title {
  font-size: 44px;
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 600;
  color: #000;
}
#swal2-html-container .swal-body p {
  font-size: 19px;
  color: #000;
}
.swal2-styled.swal2-confirm{
  color: #000 !important;
}
.swal2-styled.swal2-confirm:focus{
  outline: none !important;
  box-shadow: none !important;
}
.loaderouter.send_email img {
  width: 70px;
}
.loaderouter.send_email {
  text-align: center;
}
/* Form Modal Sec Ends */

.address-box {
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.2);
  margin-bottom: 20px;
}
.loader-outer .modal-content {
  background: transparent;
  border: none;
}
.loader-outer .modal-content img {
  width: 100px;
}
.loader-outer .modal-content .icon-outer {
  text-align: center;
}



.four-zero-four-inn h4 {
  font-weight: 800;
  font-size: 130px;
  color: #333;
  margin-bottom: 0;
}

.privacy-content .about-banner-left {
  text-align: left;
}
.about-banner-sec.about-18-years-banner .banner-img-pri-pol {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}


/* Video */
.video-banner-outer{
  height: 75vh;
  padding: 0;
  overflow: hidden;
}
.video-banner-outer .container-fluid{
  padding: 0;
}
#video-banner-sec video:hover {
  pointer-events: none; /* Prevent hover interaction */
}
#video-banner-sec::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(250,250,250,0);
}


/* New Location sec  Starts */
.location-lists-inn{
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
  margin-bottom: 20px;
}
.location-lists-inn h2{
  margin-bottom: 0 !important;
}
.location-lists{
  position: relative;
}
.location-lists:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--main-bg-color);
  height: 20px;
  width: 100%;
}
.location-lists-inn .filter-state {
  padding: 0;
}
.location-lists-inn .col-xl-3.filter-state {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
.location-lists-inn #ddlLocHead {
  cursor: pointer;
}
.location-lists-inn #ddlLocHead {
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 400 !important;
  color: #000;
}

.location-lists-inn .select2-selection.select2-selection--single {
  height: 45px;
  background-color: #f3ba1a;
  border: 1px solid #f3ba1a;
  border-radius: 0;
}
.location-lists-inn .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 45px;
  color: #000;
  padding-left: 20px;
}
.location-lists-inn .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 45px;
  width: 30px;
  font-size: 17px;
}
.location-lists-inn .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: none;
  margin: 0;
  height: 45px;
  width: 25px;
  top: 0;
  left: inherit;
  right: 0;
}
.location-lists-inn  .select2-container--default .select2-selection--single .select2-selection__arrow b:before{
  font-family: "Font Awesome 5 Free";
  content: "\f0d7";
  font-size: 14px;
  font-weight: 900;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #000;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b:before{
  content: "\f0d8";
}
 
.location-lists-inn #select2-ddlLocHead-results li{
  font-size: 17px;
  padding-left: 20px;
}
.location-lists-inn .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #e5be4f;
  color: #000;
}
.location-lists-inn  .select2-dropdown{
  border: none;
  border-radius: 0;
  box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.2);
}
/* New Location sec  Ends */
.eapps-instagram-feed-posts-item-link {
  border: 1px solid #ccc;
}



/* Xmas Starts */
.hoc-xmaswish{
  position: fixed;
  right: 20px;
  bottom: -100%;
  width: 260px;
  transition: 0.4s all ease-out;
  z-index: 99;
}
.hoc-xmaswish.show{
  bottom: 15px;
}
/* Xmas Ends */

/* Services Form Starts */
.services-form-outer {
  background: #f1f1f1;
}
.services-form-outer .services-form-row{
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.services-form-outer .life-hoc-left {
  padding: 0 15px;
}
.services-form-outer .get-touch-inn {
  background: #fff;
}
.services-form-outer .get-touch-sec {
  margin-top: 0;
}
.services-form-outer .life-hoc-left {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
.services-form-outer .life-hoc-bg {
  padding-top: 90px;
  padding-bottom: 90px;
  border-radius: 0;
}
.services-form-outer  .life-hoc-bg:after{
  display: none !important;
} 
.services-form-outer  .life-hoc-left h2{
  color: #fff;
}
.services-form-outer .get-touch-inn {
  background: #fff;
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 50px;
  left: -60px;
  box-shadow: rgba(100, 100, 111, 0.3) 0px 7px 29px 0px;
  width: 100%;
  border-radius: 6px;
}

select {
  min-height: 40px; /* Set your desired minimum height */
}

@media (max-width: 768px) { /* Tablets and smaller */
  select {
    min-height: 35px;
  }
}

@media (max-width: 480px) { /* Mobile screens */
  select {
    min-height: 30px;
  }
}

/* Services Form Ends */

.dental-services-loca {
  text-align: right;
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
.dental-services-loca p{
  font-weight: 600;
}

.join-our-team .main-bg-btn:hover{
  background: #333;
  color: var(--white-text-color);
}
 

#insider-knowledge-carousel .owl-prev {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  background: #F3BA1A;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  opacity: .8;
}

#insider-knowledge-carousel .owl-next{
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  background: #F3BA1A;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  opacity: .8;
}
#insider-knowledge-carousel .owl-prev i,
#insider-knowledge-carousel .owl-next i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #333;
}
#insider-knowledge-carousel .owl-prev:hover,
#insider-knowledge-carousel .owl-next:hover{
  opacity: 1;
}

.seo-content-sec ul, 
.seo-content-sec ol{
  list-style-position: inside;
}
.seo-content-sec ul li {
  list-style: none;
  position: relative;
  padding-left: 17px;
  margin-bottom: 10px;
}
.seo-content-sec ul li::before {
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  left: 0;
}
.seo-content-sec p {
  margin-bottom: 20px;
}


 
.footer-other-links li {
  list-style: none;
  display: inline-block;
  margin-bottom: 0 !important;
  padding: 0 15px;
  border-right: 1px solid #ccc;
  line-height: 20px;
}
.foot-other-link-out {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  border-top: 1px solid rgba(250, 250, 250, 0.3);
  padding-top: 30px;
  margin-top: 20px;
}
.footer-other-links li:last-child {
  border: none;
}

.location-custom-div {
  box-shadow: 0 0 6px 0 rgba(0,0,0,0.4);
  padding: 50px 50px 50px 50px;
  background: #ffffff;
  border-radius: 15px;
}
.location-custom-div.mb-60{
  margin-bottom: 60px;	
}
.location-custom-div h3 {
  margin-bottom: 20px;
}
.location-custom-div p:last-child{
  margin-bottom: 0;
}

.location-custom-div a {
    color: #000;
    border-bottom: 1px solid #333;
}