@charset "utf-8";
/* Variables */
:root {
  --brand-clr1: #55b6ff;
  --white-clr: #ffffff;
  --black-clr: #383838;
  --body-clr1: #6a6a6a;
  --family-EB-Garamond:'EB Garamond', serif;
  --family-Mrs-Saint:'Mrs Saint Delafield', cursive;
  --transition: all ease .4s;
  --shadow1: 0 0 12px rgba(0, 0, 0, .1);
}
/* Normal CSS */
html {
  overflow-x: hidden;
}
body {
  font-size: 18px;
  color: var(--body-clr1);
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  line-height: 1.42857143;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
*, *:focus {
  outline: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
a:hover, a:focus {
  color: var(--brand-clr1);
}
a:focus {
  outline: none;
  outline-offset: 0;
}
p, .p {
  font-size: 18px;
  padding-bottom: 10px;
  margin-bottom: 0;
  line-height: 1.6;
}
ol, ul {
  padding-left: 0;
  margin: 0;
}
img {
  max-width: 100%;
  object-fit: cover;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  padding-bottom: 10px;
  margin-bottom: 0;
  line-height: 1.3;
  font-weight: 500;
}
b , strong {
  font-weight: 600;
  color: var(--black-clr);
  display: inline-block;
}

svg * {
  fill: none;
  stroke: #4D6C85;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}
video {
  width: 100%;
  height: auto;
  border: none;
}
section {
  display: flex;
  padding: 100px 0;
  align-items: center;
}
::selection {
  background: var(--brand-clr1);
  color: var(--white-clr);
}
::-webkit-selection {
  background: var(--brand-clr1);
  color: var(--white-clr);
}
::-moz-selection {
  background: var(--brand-clr1);
  color: var(--white-clr);
}
::-o-selection {
  background: var(--brand-clr1);
  color: var(--white-clr);
}
::-ms-selection {
  background: var(--brand-clr1);
  color: var(--white-clr);
}
/* Reseted CSS */
.row {
  margin: 0 -15px;
}
[class*="col-"] {
  padding: 0 15px;
}
figure {
  margin: 0;
}
/* Form CSS  */
label {
  cursor: pointer;
}
textarea {
  resize: none;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
  border-radius: 0;
  background: none;
  color: var(--black-clr);
  padding: 16px;
  border-color: #000;
}
.form-control:focus {
  color: var(--brand-clr1);
  box-shadow: none;
  border-color: var(--brand-clr1);
  background: transparent;
}
.form-control::placeholder {
  color: #7d7d7d;
}
/* Button CSS */
.btn {
  font-size: 16px;
  padding: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-clr);
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  transition: var(--transition);
  transition-property: border;
  line-height: normal;
  background: var(--black-clr);
  z-index: 0;
  min-width: 193px;
}
.btn:hover, .btn:focus {
  background: var(--brand-clr1);
  color: var(--white-clr);
}
.btn img {
  margin-right: 10px;
}

header .btn {
  color: var(--white-clr);
  border-color: var(--white-clr);
  background: transparent;
  transition: var(--transition);   
}
header .btn:hover, header .btn:focus {
  color: var(--brand-clr1);
  background: var(--white-clr);   
}
.hero-caption .btn {
  color: var(--black-clr);
}
/* Section Title CSS */
.section-title {
  position: relative;
  z-index: 0;
  max-width: 920px;
  margin: 0 auto;
  padding-bottom: 45px;
}
.container {
  max-width: 1410px;
}
/* Header CSS */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  position: absolute;
  top: 0;
  left: 0 ;
  right: 0;
  z-index: 2;
}
header ul {
  display: inline-flex;
  align-items: center;
  list-style: none;
  font-size: 16px;
  color: var(--white-clr);
  text-transform: uppercase;
}
header ul li {
  padding-left: 28px;
}
.cart {
  position: relative;
}
.cart:before {
  position: absolute;
  height: 53px;
  width: 1px;
  background: var(--white-clr);
  top: 50%;
  transform: translateY(-50%);
  content: "";
}
.header-right img {
  padding: 0 20px 0 30px;
}
.has-dropdown {
  position: relative;
  transition: var(--transition);
}
.dropdown-item {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  z-index: 1;
  visibility: hidden;
  padding: 15px 0;
  margin: 0;
  font-size: 14px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 0 5px rgb(0 0 0 / 10%);
  display: block;
  min-width: 290px;
  height: auto;
  border-radius: 2px;
  opacity: 0;
  font-weight: normal;
  padding-bottom: 0;
  transition: var(--transition);
  width: auto;
}
.has-dropdown.active .dropdown-item {
  visibility: visible;
  opacity: 1;
}
.dropdown-item li {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
  margin-right: 15px;
}
.dropdown-subitem li {
  border: none !important;
  padding-bottom: 0 !important;
}
.dropdown-item li:last-child {
  margin-bottom: 0;
  border: none;
}
.subhas-dropdown {
  position: relative;
  font-size: 15px;
  transition: var(--transition);
}
.subhas-dropdown a:hover {
  color: var(--black-clr);
  font-weight: 600;
}
.dropdown-subitem {
  position: relative;
  top: calc(100% + 30px);
  top: 100%;
  font-size: 13px;
  z-index: 1;
  background: var(--white-clr);
  box-shadow: 0 0 5px rgb(0 0 0 / 10%);
  display: block;
  list-style: disc;
  padding: 12px;
  color: #6a6a6a;
  border-top: 5px solid var(--brand-clr1);
  display: none;
  padding-bottom: 10px;
  margin-left: -28px;
  margin-top: 14px;
  padding-left: 40px;
  margin-bottom: -15px;
  color: var(--brand-clr1);
}
.dropdown-subitem ::marker {
  color: #6a6a6a;
}
.dropdown-subitem li {
  padding-left: 2px;
}
.dropdown-subitem li:first-child {
  list-style-type: none;
}
.dropdown-subitem li b {
  font-size: 16px;
}
.subhas-dropdown a {
  color: var(--black-clr);
}
.subhas-dropdown a:hover,.subhas-dropdown a:focus {
  color: var(--black-clr);
  font-weight: 600;
}
.subhas-dropdown.active .dropdown-subitem {
  display: block;
}

/* Common CSS */
.title {
  font-family: var(--family-Mrs-Saint);
  font-size: 200px;
  line-height: 145px;
  color: #dceaf5;
}
/* Banner CSS */
.banner {
  padding: 0;
}
.banner .swiper-slide {
  background: url(../images/hero.png) no-repeat 50% 50% / cover;
  /* height: 100vh; */
  aspect-ratio: 1920 / 840;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 0;
  position: relative;
}
.banner .swiper-slide::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 155px;
  width: 100%;
  content: "";
  background: -moz-linear-gradient(top, rgba(0,0,0,0.85) 0%, transparent 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,0.85) 0%, transparent 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 );
}
.banner .banner-title {
  font-size: 90px;
  line-height: 90px;
  font-family: var(--family-EB-Garamond);
  color: var(--white-clr);
  max-width: 835px;
  margin: 0 auto;
}
.banner .btn {
  background: var(--brand-clr1);
  margin-top: 45px;
  transition: var(--transition);
}
.banner .btn:hover, .banner .btn:focus {
  background: var(--black-clr);
  color: var(--white-clr);
}
.swiper-button-next, .swiper-button-prev {
  color: var(--white-clr);
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 32px;
}
.swiper-button-prev {
  left: 60px;
}
.swiper-button-next {
  right: 60px;
}
.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
  z-index: 2;
}
.swiper-container-horizontal > .swiper-pagination-bullets {
  padding-bottom: 40px;
  bottom: 0;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
  height: 15px;
  width: 15px;
  background: transparent;
  border: 3px solid var(--white-clr);
  z-index: 5;
  opacity: 1;
}
.swiper-pagination-clickable .swiper-pagination-bullet-active {
  border-color: var(--white-clr);
  background: var(--white-clr);
}
.patient-detail .swiper-pagination-clickable .swiper-pagination-bullet-active {
  border-color: #949494;
  background: #949494;
}
.patient-detail .swiper-pagination-clickable .swiper-pagination-bullet {
  border-color: #949494;
}
.patient-detail .swiper-container-horizontal > .swiper-pagination-bullets {
    padding-bottom: 1px;
}
/* treatments CSS */
.treatments {
  text-align: center;
  padding: 35px 0 103px;
}
.section-title h2 {
  font-size: 38px;
  color: var(--black-clr);
  line-height: 48px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  margin-top: -70px;
  padding-bottom: 20px;
  max-width: 704px;
  margin-right: auto;
  margin-left: auto;
}
.section-title h2:after {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 78px;
  height: 2px;
  background: var(--black-clr);
  content: "";
}
.section-title p {
  padding-top: 20px;
  font-size: 20px;
}
.sub-title h2 {
  font-size: 24px;
  line-height: 28px;
  color: var(--black-clr);
  text-transform: uppercase;
  margin-top: -64px;
  padding-bottom: 18px;
  letter-spacing: -2px;
  position: relative;
}
.sub-title h2:after {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 37px;
  height: 2px;
  background: var(--black-clr);
  content: "";
}
.sub-title .title {
  font-size: 100px;
  line-height: 145px;
}
.sub-title {
  padding: 0 60px 40px;
}
.sub-title p,.sub-title  strong {
  padding-top: 20px;
  display: block;
  line-height: 1.6;
}
.sub-title strong span {
  color: #55b6ff;
}
.treatments figure {
  height: 100%;
  position: relative;
  transition: var(--transition);
}
.treatments figure:after {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  bottom: 0;
  border: 1px solid var(--black-clr);
  transition: var(--transition);
  z-index: 2;
  content: "";
}
.treatments figure:hover:after {
  /* border: transparent; */
  display: none;
} 
.treatments figure:hover {
  box-shadow: var(--shadow1);
}

/* About */
.about {
  padding: 0;
}
.about .swiper-slide {
  background: url(../images/about.png) no-repeat 50% 50% / cover;
  padding: 122px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 0;
}
.about .section-title {
  padding-bottom: 0;
}
.about .section-title h2 {
  font-size: 70px;
  line-height: 70px;
  text-transform: none;
  font-family: var(--family-EB-Garamond);
  color: var(--white-clr);
  margin-top: 0;
}
.about .section-title h2:after {
  background: var(--white-clr);
}
.about .section-title p {
  color: var(--white-clr);
}

/* private-label */
.private-label {
  text-align: center;
  background: #fcfcfc;
  border-bottom: 1px solid #e9e9e9;
  background: url(../images/private-label1.png) no-repeat 50% 50% /cover;
  position: relative;
}
.private-label::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 0;
}
.private-label .container {
  z-index: 2;
}
.private-label .section-title {
  padding-bottom: 67px;
}
.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 109px;
  width: 109px;
  background: #dceaf5;
  border-radius: 100%;
  margin-bottom: 25px;
}
.icon img {
  padding-bottom: 50px;
}
.label-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 35px;
}
.label-item h3 {
  color: var(--black-clr);
  text-transform: uppercase;
  font-size: 24px;
  line-height: 28px;
}

/* Private-label */
.intimacy {
  padding-bottom: 0;
}
.intimacy .title {
  font-size: 150px;
  line-height: 145px;
}
.intimacy .section-title h2 {
  font-size: 28px;
  line-height: 32px;
  text-align: left;
  margin-top: -37px;
}
.intimacy strong {
  padding-top: 10px;
}
.intimacy .section-title {
  padding-bottom: 16px;
}
.intimacy .section-title h2:after {
  display: none;
}
.intimacy .row .row [class*="col-"] {
  margin-bottom: 25px;
}
.technology-treat-list {
  display: flex;
  flex-wrap: wrap;
}
.technology-treat {
  font-size: 18px;
  display: block;
  position: relative;
  padding-left: 50px;
  line-height: 28px;
  margin-bottom: 25px;
  width: 50%;
}
.technology-treat:before {
  position: absolute;
  top: 0;
  height: 35px;
  width: 35px;
  border-radius: 100%;
  background: url(../images/technology.png) no-repeat 50% 50% /cover;
  left: 0;
  content: ""
}

.intimacy .btn {
  margin-top: 35px;
}

/* Testimonials */
.testimonials {
  text-align: center;
  padding: 70px 0 60px;
}
.testimonials .section-title h2 {
  max-width: 415px;
}
.testimonials .swiper-wrapper {
  padding-top: 30px;
}
.testimonials-item {
  border: 1px solid var(--black-clr);
  height: 100%;
  padding: 65px 33px 55px;
  position: relative;
  box-shadow: 15px 20px #dceaf5;
}
.testimonials-item .img-wrap {
  position: absolute;
  top: -28px;
  left: 20px;
  background: var(--white-clr);
  padding: 0 15px;
}
.testimonials .row {
  margin: 0 -35px;
}
.testimonials .row [class*="col-"] {
  padding: 0 35px;
}
.patient-detail {
  padding-top: 90px;
}
.patient-info {
  text-align: left;
  display: flex;
  align-items: center;
  padding-top: 87px;
}
.patient-info h3 {
  font-size: 22px;
  line-height: 32px;
  text-transform: uppercase;
  text-align: left;
  color: var(--black-clr);
  padding-bottom: 0;
}
.patient-detail .user {
  height: 97px;
  min-width: 97px;
  border-radius: 100%;
  background: #dceaf5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.patient-detail .swiper-container {
  padding-bottom: 53px;
}

/* Header Two */
.header-two {
  position: relative;
  background: var(--white-clr);
}
.header-two ul {
  color: var(--black-clr);
}
.header-two .btn {
  color: var(--black-clr);
  border-color: var(--black-clr);
  background: transparent;
  transition: var(--transition);
}
.header-two .cart::before {
  background-color: var(--black-clr);
}
/* Banner Two */
.banner-two {
  background: url(../images/banner-two.png) no-repeat 50% 50% /cover;
  padding: 65px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.banner-two h1 {
  font-size: 90px;
  line-height: 90px;
  color: var(--white-clr);
  padding-bottom: 23px;
  font-family: var(--family-EB-Garamond);
}
.breadcrumb,.breadcrumb-item.active {
  color: var(--white-clr);
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 500;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "|";
  color: var(--white-clr);
}
.labial-us {
  padding: 58px 0 68px;
}
.labial-us .section-title h2 {
  padding-bottom: 60px;
}
.labial-us .section-title {
  padding-bottom: 50px;
}
.labial-one {
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}
.labial-three img {
  padding-bottom: 50px;
}
.labial-us .container, .contact-us-form .container  {
  max-width: 1102px;
}
.labial-us .section-title {
  text-align: center;
}
.labial-us h3 {
  font-size: 28px;
  line-height: 32px;
  color: var(--black-clr);
  text-align: left;
  text-transform: uppercase;
}
.labial-us strong {
  padding: 20px 0 30px;
}
.labial-us .technology-treat {
  margin-bottom: 20px;
  width: 100%;
}
.labial-two img {
  padding-bottom: 50px;
}
.labial-two {
  padding: 50px 0 30px;
  border-bottom: 1px solid #e0e0e0;
}
.labial-three {
  padding-top: 50px;
}
.contact-us-form {
  text-align: center;
  background: url(../images/contact-us.png) no-repeat 50% 50% /cover;
  padding: 70px 0;
  position: relative;
}
.contact-us-form .container {
    z-index: 1;
  }
.contact-us-form::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 0;
}
.contact-us-form .row [class*="col-"] {
  margin-bottom: 20px;
}
.contact-us-form select {
  border-color: #e8e8e8;
  color: var(--black-clr);
}
.contact-us-form .form-control::placeholder {
  color: var(--black-clr);
}
.contact-us-form textarea {
  min-height: 120px;
}
.contact-us-form .title {
  display: inline-block;
}
select.form-control {
  background: url(../images/down-arrow.png) no-repeat 98% 50% #fff!important;
  cursor: pointer;
  background-color: #e8e8e8!important;
}

/* Map */
#map1 {
  height: 552px;
}
.map {
  padding: 0;
  display: block;
}
/* Contact Us Form */
.contact-us-form.style-two {
  padding-top: 100px;
}
.contact-us p strong {
  padding: 0;
}
.contact-us-form .form-control {
  border-radius: 2px;
  padding: 16px 30px;
}
.contact-us p a {
  color: var(--brand-clr1);
}
.contact-us h3 {
  padding-bottom: 30px;
}
.office-hours .technology-treat {
  font-weight: 600;
  color: var(--black-clr);
}
.office-hours .technology-treat span {
  color: var(--brand-clr1);
  font-weight: 500;
}

/* Footer */
footer {
  background-image: url(../images/footer-img1.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  padding: 82px 0 58px;
  background-color: var(--black-clr);
  position: relative;
  font-size: 16px;
  color: var(--white-clr);
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
footer form {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 665px;
  width: 100%;
  margin-top: 45px;
}
footer .form-control {
  border: none;
  border-bottom: 1px solid #5e5e5e;
  padding: 20px 18px;
}
footer .btn {
  background: transparent;
  border: 2px solid #5e5e5e;
  transition: var(--transition);
  margin-left: 15px;
}
footer .btn:hover, footer .btn:focus {
  border-color: var(--brand-clr1);
}
footer ul {
  list-style: none;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  color: #a0a5a4;
  padding: 40px 0 20px;
  font-size: 16px;
  color: var(--white-clr);
}
footer ul li + li {
padding-left: 27px;
}
footer ul li {
  margin-bottom: 20px;
}
.social-media {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.social-media a {
  display: inline-flex;
  height: 58px;
  width: 58px;
  border: 1px solid var(--white-clr);
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.social-media a:hover {
  background-color: var(--brand-clr1);
  border-color: var(--brand-clr1);
}
.social-media a:not(:last-child) {
  margin-right: 15px;
}
footer .address {
  font-weight: 300;
  color: #7d7d7d;
  padding-top: 24px;
  padding-bottom: 0;
}
footer .address li + li {
  padding-left: 0;
}
footer .address li + li::before {
  content: "|";
  margin: 0 16px;
  color: #7d7d7d;
}
.copyright {
  background: #000;
  padding: 50px 0;
  color: #7d7d7d;
}
.copyright .container {
  display: flex;
  align-items: center;
  justify-content: space-between;

}
.copyright span {
  display: inline-block;
  text-transform: capitalize;
  padding: 5px 0;
  color: #898989;
}
.copyright .inject {
  padding-left: 0;
  padding-right: 2px;
}
.copyright .beauty {
  margin-left: 15px;
}
.copyright .copy {
  color: var(--white-clr);
}
@media screen and (min-width: 992px) {
  .private-label .container {
    max-width: 952px
  }
  .toggle-icon {
    display: none;
  }
}
@media screen and (max-width: 1699px) {
  .logo img {
    max-width: 200px; 
  }
  header ul {
    font-size: 14px;
  }
  header ul li {
    padding-left: 15px;
  }
  header .btn {
    font-size: 14px;
  }
  header .btn {
    padding: 16px;
  }
  header {
    padding: 18px 35px;
  }
  .header-right img {
    padding: 0 15px 0 18px;
  }
  header .btn {
    padding: 14px;
  }
} 
@media screen and (max-width: 1299px) {
  .logo img {
    max-width: 150px;
  }
  header ul li {
  padding-left: 12px;
  }
}
@media screen and (max-width: 1199px) {
  .banner .banner-title {
    font-size: 80px;
  }
  .sub-title .title {
    font-size: 76px;
    line-height: 137px;
  }
  .sub-title {
    padding: 0 25px 40px;
  }
  .title {
    font-size: 130px;
  }
  .intimacy .title {
    font-size: 130px;
  }
  .testimonials-item {
    padding: 65px 20px 55px;
  }
  .banner-two h1 {
    font-size: 70px;
    line-height: 70px;
  }
  .labial-us h3 {
    font-size: 26px;
  }
  header nav {
    display: none;
  }
  .header-two ul {
    color: var(--white-clr);
  }
  .toggle-icon {
    width: 45px;
    height: 40px;
    background: var(--brand-clr1);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .toggle-icon span {
    position: relative;
    width: 100%;
    height: 3px;
    background: #fff;
  }
  .toggle-icon span::before, .toggle-icon span::after {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #fff;
    content: "";
    z-index: 1;
    top: -10px;
  }
  .toggle-icon span::after {
    top: 10px;
  }
  .nav-open nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 30px 30px 15px;
    background: #000;
    display: block;
  }
  nav ul {
    display: block;
  }
  .cart::before {
    display: none;
  }
  header ul li {
    padding-left: 0;
    padding-bottom: 15px;
  }
  .dropdown-item {
    padding-left: 28px;
    padding-bottom: 0;
  }
  .header-right img {
    padding-left: 0;
  }
  .header-two .btn {
  color: var(--white-clr);
  border-color: var(--white-clr);
  }
  .header-two .dropdown-item {
    color: var(--black-clr);
  }
}
@media screen and (max-width: 991px) {
  .banner .banner-title {
    font-size: 65px;
    line-height: 65px;
  }
  .swiper-button-next {
    right: 30px;
  }
  .swiper-button-prev {
    left: 30px;
  }
  .title {
    font-size: 128px;
    line-height: 106px;
  }
  .section-title h2 {
    font-size: 32px;
    line-height: 42px;
    margin-top: -48px;
  }
  .about .section-title h2 {
    font-size: 42px;
    line-height: 52px;
  }
  .sub-title {
    padding: 0 14px 40px;
  }
  .sub-title h2 {
    margin-top: -56px;
  }
  .treatments .row [class*="col-"] {
    margin-bottom: 50px;
  }
  .intimacy {
    text-align: center;
  }
  .intimacy .row [class*="col-"] {
    margin-bottom: 50px;
  }
  .intimacy .title {
    font-size: 100px;
  }
  .intimacy .section-title h2 {
    text-align: center;
  }
  .intimacy .technology-treat {
    text-align: left;
  }
  .label-item h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .testimonials .section-title {
    padding-bottom: 50px;
  }
  .testimonials .row [class*="col-"] {
    margin-bottom: 50px;
  }
  .patient-detail {
    padding-top: 55px;
  }
  .banner-two h1 {
    font-size: 55px;
    line-height: 60px;
    padding-bottom: 20px;
  }
  .labial-us h3 {
    font-size: 22px;
    line-height: 28px;
  }
  .labial-us strong {
    padding: 10px 0 20px;
  }
  footer ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer ul li + li {
    padding-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  header {
    padding: 15px 12px;
  }
  .toggle-icon {
    height: 35px;
    width: 40px;
  }
  .toggle-icon span::before {
    top: -8px;
  }
  .toggle-icon span::after {
    top: 8px;
  }
  .banner .swiper-slide {
    height: 650px;
  }
  .banner .banner-title {
    font-size: 42px;
    line-height: 44px;
  }
  .banner .btn {
    margin-top: 30px;
  }
  .title {
    font-size: 90px;
    line-height: 90px;
  }
  .section-title h2 {
    font-size: 26px;
    line-height: 36px;
    margin-top: -38px;
  }
  .section-title {
    padding-bottom: 30px;
  }
  .sub-title {
    padding: 0 14px 20px;
  }
  .testimonials {
    padding: 0 0 50px;
  }
  .testimonials .section-title {
    padding-bottom: 35px;
  }
  .treatments {
    padding: 35px 0 0;
  }
  .about .section-title h2 {
    font-size: 36px;
    line-height: 46px;
  }
  .about .swiper-slide {
    padding: 50px 0; 
  }
  .patient-info {
    padding-top: 50px;
  }
  p {
    font-size: 16px;
  }
  .section-title p {
    font-size: 18px;
  }
  .private-label {
    padding: 50px 0 10px;
  }
  .private-label .section-title {
    padding-bottom: 45px;
  }
  .private-label .row [class*="col-"] {
    margin-bottom: 40px;
  }
  .intimacy {
    padding-top: 50px;
  }
  .intimacy .section-title h2 {
    font-size: 22px;
    line-height: 30px;
  }
  .testimonials-item {
    padding: 45px 20px 35px;
  }
  .patient-detail {
    padding-top: 10px;
  }
  .labial-us {
    padding: 50px 0 0;
  }
  .contact-us-form {
    padding: 20px 0 50px;
  }
  .labial-one {
    padding-bottom: 0;
  }
  .labial-two img {
    padding-bottom: 35px;
  }
  .labial-three img {
    padding-bottom: 35px;
  }
  .labial-three {
    padding-bottom: 0;
  }
  .labial-us {
    text-align: center;
  }
  .labial-us h3 {
    text-align: center;
  }
  .technology-treat {
    text-align: left;
  }
  .labial-us h3 {
    font-size: 18px;
    line-height: 24px;
  }
  .technology-treat {
    font-size: 16px;
  }
  .section-title {
    padding-bottom: 20px;
  }
  .breadcrumb, .breadcrumb-item.active {
    justify-content: center;
  }
  .contact-us-form .title {
    padding-top: 30px;
  }
  .map {
    padding-top: 50px;
  }
  .contact-us h3 {
    padding-bottom: 16px;
  }
  .form-control {
    font-size: 12px;
    line-height: 14px;
    padding: 14px 16px;
  }
  .contact-us-form textarea {
    min-height: 100px;
  }
  .contact-us-form .row [class*="col-"] {
    margin-bottom: 10px;
  }
  footer {
    padding: 50px 0 30px;
  }
  footer ul {
    flex-direction: column;
  }
  footer ul li + li {
    padding-left: 0;
  }
  footer .address li + li::before {
    display: none;
  }
  .copyright {
    padding: 30px 0;
    text-align: center;
  }
  .copyright .container {
    flex-direction: column;
  }
  .technology-treat-list {
    flex-direction: column;
  }
  .technology-treat {
    width: 100%;
  }
  .treatments figure:after {
    top: 5px;
    left: 5px;
    right: 5px;
  }
  .swiper-button-next, .swiper-button-prev {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .banner .swiper-slide {
    height: 450px;
  }
  .title {
    font-size: 70px;
    line-height: 70px;
  }
  .section-title h2 {
    font-size: 22px;
    line-height: 32px;
    margin-top: -32px;
  }
  .section-title p {
    font-size: 16px;
  }
  p {
    font-size: 14px;
  }
  .label-item h3 {
    font-size: 18px;
    line-height: 20px;
  }
  .icon {
    margin-bottom: 18px;
  }
  .intimacy .title {
    font-size: 70px;
  }
  .intimacy .section-title h2 {
    font-size: 20px;
    line-height: 26px;
  }
  .about .section-title h2 {
    font-size: 32px;
    line-height: 36px;
  }
  .banner-two h1 {
    font-size: 36px;
    line-height: 36px;
    padding-bottom: 15px;
  }
  footer {
    text-align: center;
  }
  footer form {
    flex-direction: column;
  }
  footer form .btn {
    margin-left: 0;
    margin-top: 30px;
  }
}


.dropdown-visible {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Custom CSS */

#intimacy ul {display: flex; flex-wrap: wrap;}
#intimacy li {
  font-size: 18px;
  display: block;
  position: relative;
  padding-left: 50px;
  line-height: 28px;
  margin-bottom: 25px;
  width: 50%;
}

#intimacy li::before{
  position: absolute;
  top: 0;
  height: 35px;
  width: 35px;
  border-radius: 100%;
  background: url(../images/technology.png) no-repeat 50% 50% /cover;
  left: 0;
  content: "";
}

@media(max-width:768px){ 
  #intimacy ul {flex-direction: column;}
  #intimacy li {width: 100%; font-size: 16px; text-align: left;}
}

@media screen and (max-width: 991px){
  #intimacy li {text-align: left;}
}
