:root {
  --bg-1: #140801;
  --bg-2: #140801e5;

  --clr-1: #ffffff;
  --clr-2: #140801;
  --clr-3: #fc9e64;
  --clr-4: #140801;
  --clr-5: #6f6f6f;
  --clr-6: #14080108;
  --clr-7: #311301;
  --clr-8: #000000;
  --clr-9: #ffffff80;
  --clr-10: #afacac;
  --clr-11: #f3f2f2;
  --clr-12: #cccccc;
  --clr-13: #525252;
  --clr-14: #7a7a7a;
  --clr-15: #e5e9ed;
  --clr-16: #5a5a5a;
}
html {
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: "Be Vietnam Pro", sans-serif;
  background: var(--bg-1);
  width: 100%;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0 !important;
}
a {
  text-decoration: none !important;
  color: inherit;
}
.logo-wrap img {
  width: 100px;
  height: auto;
}

/* navbar */

.sidebar-open {
  overflow: hidden;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.sidebar-open .overlay {
  opacity: 1;
  visibility: visible;
}
.header {
  padding: 18px 0;

  z-index: 99;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}
.logo {
  color: var(--clr-1);
  font-size: 20px;
  font-weight: 700;
}

.row-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.nav-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-list li {
  padding: 0 17px;
}
.nav-list li a {
  color: var(--clr-1);
  position: relative;
  display: block;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 19.24px;
}
.nav-list li a::after {
  content: "";
  background-color: var(--clr-3);
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s linear;
}
.nav-list li a:hover::after {
  width: 100%;
}
.nav-list li.active a::after {
  width: 100%;
}
.nav-list li.with-submenu {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.nav-list li.with-submenu > a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 21.92px;
  text-align: left;
}
.nav-list li.with-submenu::after {
  content: "";
  border-bottom: 2px solid var(--clr-3);
  border-right: 2px solid var(--clr-3);
  position: absolute;
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  right: 0;
  margin-bottom: 5px;
  transition: all 0.3s;
}
.nav-list li.with-submenu:hover::after {
  transform: rotate(225deg);
  margin-top: 10px;
}
.nav-list li.with-submenu .submenu {
  position: absolute;
  left: 50%;
  /* top: 100%; */
  top: 30px;
  background: var(--bg-1);
  border-radius: 10px;
  transform: translateX(-50%);
  box-shadow: 2px 2px 1px 2px var(--clr-3);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}
.nav-list li.with-submenu .submenu ul {
  padding: 0px;
  margin-top: 10px;
  list-style: none;
}
.nav-list li.with-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  list-style: none;
  width: max-content;
}
.nav-list li.with-submenu .submenu li {
  padding: 0;
}
.nav-list li.with-submenu .submenu a {
  color: var(--clr-1);
  display: block;
  padding: 8px 20px;
  transition: all 0.3s;
  text-decoration: none;
}

.nav-list li.with-submenu .submenu a:hover {
  background-color: rgba(49, 20, 50, 0.3);
}
/* .nav-list li.with-submenu .submenu a::after {
      display: none;
  } */
.nav-list li.with-submenu > a {
  position: relative;
  z-index: 1;
}
.hamburger {
  display: none;
  z-index: 99;
}
.hamburger .line {
  width: 25px;
  height: 1.5px;
  background-color: var(--clr-3);
  display: block;
  margin: 5px 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hamburger .line:nth-child(2) {
  width: 15px;
}
.hamburger:hover {
  cursor: pointer;
}
.hamburger.is-active .line {
  background-color: var(--clr-3);
}
.hamburger.is-active .line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .line:nth-child(1) {
  -webkit-transform: translateY(6.5px) rotate(45deg);
  -ms-transform: translateY(6.5px) rotate(45deg);
  -o-transform: translateY(6.5px) rotate(45deg);
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.is-active .line:nth-child(3) {
  -webkit-transform: translateY(-6.5px) rotate(-45deg);
  -ms-transform: translateY(-6.5px) rotate(-45deg);
  -o-transform: translateY(-6.5px) rotate(-45deg);
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-wrap {
  /* padding: 10px 35px; */
  background: var(--bg-1);
}
.button-wrap {
  padding: 13px 30px;
  border-radius: 5px;
  background: var(--clr-3);
  margin-left: 13px;
}
.button-wrap a {
  color: var(--clr-1);
  font-size: 14px;
  font-weight: 400;
  line-height: 20.45px;
  text-align: center;
  text-decoration: none;
}

.top-header {
  padding: 12px 0px 10px 0 !important;
  border-bottom: 1px solid var(--clr-9);
}

.top-header-main {
  display: flex;
  justify-content: flex-end;
}
.top-header-main .items {
  display: flex;
  align-items: center;
  padding: 0 15px;
}
.top-header-main .items:first-child {
  border-right: 1px solid var(--clr-10);
}
.top-header-main .items h6 {
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  padding-left: 5px;
  color: var(--clr-1);
}
.BannerSec h1 {
  font-size: 50px;
  font-weight: 300;
  line-height: 60px;
  text-align: center;
  color: var(--clr-1);
  padding: 35px 0 15px 0;
}
.bannerImgOrVideo {
  max-height: 700px;
  object-fit: cover;
  padding: 0;
  width:100%;
  background-position: top;
}


.common_title {
  font-size: 35px;
  font-weight: 400;
  line-height: 46px;
  padding: 30px 0px 0px 0px;
  color: white;
  margin-bottom: 20px;
}

.common p {
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: -0.01em;
  padding: 20px 0px 30px 0px;
  color: white;
  margin: 0 auto 20px auto;
}

.ServeBgImg {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.LinkBtn {
  display: block;
  text-align: center;
  margin-top: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.item {
  text-align: center;
}

/* 
.HomeSevSec {
  padding: 75px 0 90px 0;
  background: var(--clr-11);
}

.HomeSevSec h3 {
  font-size: 35px;
  font-weight: 400;
  line-height: 46px;
  text-align: left;
  color: var(--clr-8);
}

.HomeSevSec p {
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: -0.01em;
  text-align: left;
  color: var(--clr-5);
}

.HomeServCardRow {
  display: flex;
  overflow: hidden;
  position: relative;
}

.HomeServCard {
  
  text-align: center;
  margin-bottom: 30px;
}

.ServeBgImg {
  width: 100%;
  height: auto;
  border-radius: 10px;
  padding: 20px;
}

.LinkBtn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

 
.common{
  display: flex;
  align-items: flex-end;
}

.para{
  margin: 20px;
  color: white;
}



.hm_service .container {
  position: relative;
  z-index: 99;
}
.service_left p{
  color: #fff!important;
}
.service_list_wrap {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
}
.service_title h6 {
  color: white;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}
.service_title{
  text-align: center;
  padding: 15px;
}
.service_list_wrap img {
  border-radius: 0px;
  height: 200px;
  object-fit: cover;
}
.bg_blue .common_title {
  color: #fff;
  padding: 30px;
}
#doctors_slider .service_list_wrap img {
  height: 300px;
}

 */


/* .HomeSevSec {
  padding: 75px 0 90px 0;
  background: black
}

.HomeSevSec h3 {
  font-size: 35px;
  font-weight: 400;
  line-height: 46px;
  text-align: left;
  color: white;
}

.HomeSevSec p {
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: -0.01em;
  text-align: left;
  color: white       ;
}

.HomeServCard {
  text-align: center;
  margin-bottom: 30px;
}

.ServeBgImg {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.LinkBtn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}
 */

/* .HomeSevSec {
  padding: 75px 0 90px 0;
  background: var(--clr-11);
}

.HomeSevSec h3 {
  font-size: 35px;
  font-weight: 400;
  line-height: 46px;
  text-align: left;
  color: var(--clr-8);
}
.HomeSevSec p {
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: -0.01em;
  text-align: left;
  color: var(--clr-5);
} */
.ServeBgImg {
 
  border-radius: 45px;
  object-fit: cover;
  height: 400px;
  
}
.HomeServCardRow {
  padding: 44px 0 0 0;
}

.LinkBtn {
  font-size: 17px;
  font-weight: 600;
  line-height: 24.84px;
  text-align: center;
  color: var(--clr-8) !important;
  padding: 10px 45px;
  background: var(--clr-1);
  border-radius: 15px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  width: max-content;
  min-width: 250px;
}
.LinkBtn:hover {
  color: var(--clr-1) !important;
  background: var(--clr-3);
  -moz-transition: all 0.5s ease-in;
  /* WebKit */
  -webkit-transition: all 0.5s ease-in;
  /* Opera */
  -o-transition: all 0.5s ease-in;
  /* Standard */
  transition: all 0.5s ease-in;
}

.owl-nav {
  color: white;
  display: block;
  align-items: center;
  justify-content: center;
  align-content: center;
  display: none;
  
}


.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
    display: none !important;
}
.HomeAboutSec {
  background: var(--clr-1);
  padding: 77px 0 83px 0;
}
.common_top_padding {
    padding-top:60px;
}
.common_bottom_padding {
    padding-bottom:60px;
}

.HomeAboutSec h6 {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  color: var(--clr-3);
}
.HomeAboutSec h2 {
  font-size: 35px;
  font-weight: 400;
  line-height: 45px;
  text-align: left;
  padding-top: 10px;
  padding-bottom: 22px;
  color: var(--clr-8);
}
.HomeAboutSec p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
  padding-bottom: 50px;
  color: var(--clr-5);
}
.HomeAboutSec a {
  font-size: 14px;
  font-weight: 400;
  line-height: 20.45px;
  text-align: center;
  color: var(--clr-1);
  background: var(--clr-3);
  padding: 18px 42px;
  border-radius: 5px;
}
.HomeAboutSecImage {
  max-width: 100%;
  padding-left: 50px;
  /*border-radius: 10px;*/
}
.HomeAboutSec .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.Hometestimonial {
  padding: 56px 0 84px 0;
}
.Hometestimonial h2 {
  padding-bottom: 77px;
  font-size: 35px;
  font-weight: 400;
  line-height: 46px;
  text-align: center;
  color: var(--clr-1);
}
.TestmonialItem {
  background: var(--clr-1);
  padding: 50px 48px 30px 130px;
  border-radius: 10px;
}
.Hometestimonial .owl-carousel .owl-item:nth-child(even) .TestmonialItem {
  background: var(--clr-3);
}
.TestmonialItem .TestmonialCont p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: justify;
  color: var(--clr-5);
  padding-bottom: 44px;
}
.Hometestimonial .owl-item:nth-child(even) .TestmonialCont p {
  color: var(--clr-1);
}
.TestmonialItem .TestmonialCont h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  text-align: right;
  color: var(--clr-2);
  padding-bottom: 10px;
}
.TestmonialItem .TestmonialCont h6 {
  font-size: 15px;
  font-weight: 500;
  line-height: 18.75px;
  text-align: right;
  color: var(--clr-5);
}
.Hometestimonial .container-fluid {
  padding-left: 5%;
}

.Hometestimonial .owl-carousel button.owl-dot {
  border: 1px solid #fff;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin: 10px;
}
.Hometestimonial .owl-carousel button.owl-dot.active {
  background: var(--clr-1);
}
.Hometestimonial .owl-carousel .owl-dots {
  display: block;
  align-items: center;
  justify-content: center;
  align-content: center;
  display: flex;
  margin-top: 90px;
}
.Hometestimonial .owl-carousel .owl-nav {
  display: none;
}
.Profilequarts {
  padding: 17.38px 15px;
  background: var(--clr-3);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(32px, -50%);
}
.Hometestimonial .owl-carousel .owl-item:nth-child(even) .Profilequarts {
  background: var(--clr-1);
}
.ProfileSec {
  position: absolute;
  left: -71px;
  top: 50%;
  transform: translate(0%, -50%);
}
.MainSerSec {
  background: var(--clr-11);
  padding: 83px 0 77px 0;
}
.MainSerSec .DetImg {
  border-radius: 20px;
  max-width: 100%;
}
.MainSerSec h2 {
  font-size: 35px;
  font-weight: 400;
  line-height: 45px;
  text-align: left;
  padding-bottom: 28px;
  color: var(--clr-8);
}
.MainSerSec p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  text-align: justify;
  padding-bottom: 32px;
  color: var(--clr-5);
}
.MainSerSec .readMoreBtn {
  font-size: 14px;
  font-weight: 400;
  line-height: 20.45px;
  text-align: center;

  text-decoration: none;
  color: var(--clr-1);
  padding: 18px 42px;
  background: var(--clr-3);
  border-radius: 5px;
}
.MainSerSec .ContentSec {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.homeContact {
  padding: 137px 0 71px 0;
  background: var(--clr-1);
}
.homeContact .contents {
  background: var(--clr-7);
  padding: 86px 80px 0 95px;
  border-radius: 40px;
}
.homeContact .contents h2 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 50px;
  text-align: left;
  color: var(--clr-1);
}
.contactBtnDiv {
  margin-top: 42px;
  margin-bottom: 93px;
}
.homeContact .contents .contactBtn {
  gap: 0px;
  border-radius: 30px;
  border: 2px solid var(--clr-3);
  background: transparent;
  padding: 18px 42px;
  color: var(--clr-1);
}
.homeContact .contents .DetImg {
  position: absolute;
  bottom: 0;
}
footer {
  padding: 68px 0 52px 0;
}
footer h2 {
    font-size: 20px;
    font-weight: 500;
    line-height: 60px;
    text-align: left;
    color: var(--clr-1);
    padding-bottom: 0px;
}
footer h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 33px;
  text-align: left;
  color: var(--clr-1);
  padding-bottom: 20px;
  padding-top: 51px;
}
footer h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  text-align: left;
  padding-top: 10px;
  padding-bottom: 15px;
  color: var(--clr-1);
}
footer h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  padding-top: 35px;
  padding-bottom: 10px;
  color: var(--clr-1);
}
footer p {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  text-align: left;
  color: var(--clr-12);
}
footer a {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  text-align: left;
  color: var(--clr-12);
  text-decoration: none;
}
footer a:hover {
  color: var(--clr-3);
}
footer ul {
  list-style: none;
  padding: 0;
}
footer .socialMediaLinks {
  display: flex;
}
footer .socialMediaLinks a {
  margin-right: 8px;
  border: 1px solid var(--clr-1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .socialMediaLinks a img {
  width: auto;
}

.FooterTail {
  background: var(--clr-8);
  padding: 13px 0 17px 0;
}
.FooterTail .col-12 {
  display: flex;
  justify-content: space-between;
}
.FooterTail h6 {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: var(--clr-1);
}
.FooterTail h6 span a{
  color: var(--clr-3);
}
.BannerImageSec {
  position: relative;
}

.BannerImageSec h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-45%, 0%);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 45px;
  text-align: left;
  color: var(--clr-1);
}

.AboutDrSec {
  background: var(--clr-1);
  padding: 75px 0 140px 0;
}
.AboutDrSec h6 {
  padding-bottom: 8px;
  color: var(--clr-3);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
}
.AboutDrSec h2 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 45px;
  text-align: left;
  color: var(--clr-8);
  padding-bottom: 20px;
}
.AboutDrSec p {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
  color: var(--clr-14);
}

/* Accordion */
.accordion {
  margin-top: 62px !important;
}
.accordion .accordion-item {
  border: none;
  border-bottom: 1px solid var(--clr-15);
  margin-right: 90px;
}

.accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid var(--clr-3);
}

.accordion button {
  position: relative;
  display: block;
  width: 100%;
  color: var(--clr-2) !important;

  border: none;
  background: none;
  outline: none;
  padding: 15px 0 20px 0;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 32px;
  text-align: left;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: var(--clr-1);
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: var(--clr-3);
  border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
  padding: 15px 0 22px 31px;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--clr-3);
  border-radius: 22px;
  background: var(--clr-3);

  margin-right: 32px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
  color: var(--clr-1);
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
  color: var(--clr-1);
}

.accordion button[aria-expanded="true"] {
  color: var(--clr-1);
}
.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}
.accordion button[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: max-content;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
  padding: 20px 32px 20px 31px;
}

.AboutDrExpSec img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.AboutDrExpSec {
  position: relative;
}
.AboutDrExpSec .ExpDiv {
  max-width: 240px;
  border-radius: 15px;
  background: var(--clr-3);
  padding: 25px 18px 35px 15px;
  position: absolute;
  bottom: -50px;
  right: 12px;
}
.AboutDrExpSec .ExpDiv h3 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  text-align: left;
  color: var(--clr-1);
  margin-bottom: 5px;
  position: relative;
}
.AboutDrExpSec .ExpDiv h3 span {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
  position: absolute;
  top: -12px;
  color: var(--clr-1);
}
.AboutDrExpSec .ExpDiv h5 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  text-align: left;
  color: var(--clr-1);
  padding-bottom: 5px;
}
.AboutDrExpSec .ExpDiv p {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: var(--clr-1);
}

.AboutwhychooseSec {
  padding: 85px 0px 90px 0;
  background: var(--clr-11);
}
.ExpIconDiv {
  padding: 12.5px;
  background: var(--clr-3);
  border-radius: 50%;
  margin-right: 17px;
}
.ChooseDiv {
  display: flex;
  margin-top: 39px;
  align-items: flex-start;
}
.AboutwhychooseSec h6 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  padding: 10px 0;
  color: var(--clr-3);
}
.AboutwhychooseSec h2 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 50px;
  text-align: left;
  padding-bottom: 28px;
  color: var(--clr-8);
}
.AboutwhychooseSec p {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  color: var(--clr-14);
}
.AboutwhychooseSecCont .ChooseDivFirst {
  padding-top: 49px !important;
  margin-top: 0;
}
.ChooseDiv h5 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  text-align: left;
  color: var(--clr-8);
  padding-bottom: 12px;
}

.ChooseDiv p {
  width: 85%;
}
.AboutwhychooseImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.ServeListSec {
  background: var(--clr-1);
  padding: 75px 0 80px 0;
}

.ServeListSec:nth-child(odd) {
  background: var(--clr-11);
}
.ServeListSec:nth-child(even) .cont {
  padding-right: 48px;
}
.ServeListSec:nth-child(odd) .cont {
  padding-left: 48px;
}

.ServeListSec h6 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  color: var(--clr-3);
  padding-bottom: 8px;
  padding-top: 10px;
}
.ServeListSec h2 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 45px;
  text-align: left;
  color: var(--clr-8);
}
.ServeListSec p {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  color: var(--clr-14);
}
.ServeListSec .list {
  padding-top: 50px;
}
.ServeListSec .list ul {
  list-style: none;
  padding: 0;
}
.ServeListSec .list ul li {
  position: relative;
  padding: 15px 0 20px 0;
  margin-bottom: 8px;
}
.ServeListSec .list ul li a {
  padding-left: 20px;

  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 32px;
  text-align: left;
  color: var(--clr-8);
}
.ServeListSec .list ul li span {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  text-align: left;
  color: var(--clr-3);
  position: absolute;
  top: -15px;
  left: 0;
}

#main-image,
#main-image2,
#main-image3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  max-height: 450px;
}

.ServeListSec .list ul li .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
  color: var(--clr-8);
}
.ServeListSec .list ul li .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
  color: var(--clr-8);
}
.ServeListSec .list ul li .icon {
  display: inline-block;
  position: absolute;
  top: 15px;
  right: 0;
  left: 90%;
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 22px;
  background: transparent;
  margin-right: 32px;
}
.ServeListSec .list ul li:hover .icon::before,
.ServeListSec .list ul li:hover .icon::after {
  color: var(--clr-3);
}
.ServeListSec .list ul li:hover a {
  color: var(--clr-3);
}

.DetailPageSec {
  background: var(--clr-1);
  padding: 75px;
}

.ServLinkList {
  background: var(--clr-11);
  margin-right: 60px;
  padding: 44px 30px 50px 30px;
  margin-bottom: 40px;
}
.ServLinkList ul {
  padding: 0;
}
.ServLinkList ul li {
  padding: 14px 13px 14px 20px;
  list-style: none;
}
.ServLinkList ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ServLinkList ul li h6 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 23.38px;
  text-align: left;
  color: var(--bg-1);
}
.ServLinkList ul li span img {
  padding: 13.57px 12.5px;
}
.ServLinkList ul li.active {
  background: var(--clr-3);
}

.ServLinkList ul li.active span {
  background: var(--clr-1);
  border-radius: 50%;
}
.ServLinkList ul li:hover {
  background: var(--clr-3);
}

.ServLinkList ul li:hover span {
  background: var(--clr-1);
  border-radius: 50%;
}

.AppointmentSec {
  position: relative;
  margin-right: 60px;
  margin-bottom: 33px;
}
.AppointmentSecBg {
  width: 100%;
}
.Blackoverlay {
  /* margin-right: 60px; */
  position: absolute;
  top: 0;
  left: 0;
  right: 0px;
  background: var(--bg-2);
  /* width: 100%; */
  height: 100%;
}
.AppointmentSecCont {
  /* margin: auto 32px; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.AppointmentSecCont h2 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  color: var(--clr-1);
  margin-bottom: 37px !important;
}
.AppointmentSecCont a {
  padding: 15px 30px;
  background: var(--clr-3);
  transition: transform 0.3s;
}

.AppointmentSecCont a:hover {
  color:#fff;
}
.detCont h6 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  color: var(--clr-3);
  padding-bottom: 10px;
}
.detCont h2 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 45px;
  text-align: left;
  color: var(--clr-8);
  padding-bottom: 20px;
}
.detCont p {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: justify;
  color: var(--clr-14);
}
.detCont img {
  width: 100%;
  object-fit: cover;
  margin-top: 45px;
  margin-bottom: 33px;
}
.detCont h3 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 50px;
  text-align: left;
  padding-top: 30px; 
  padding-bottom: 5px;
}
.detCont li {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: justify;
  color: var(--clr-14);
  padding-bottom: 16px;
}
.contactSec {
  background: var(--clr-1);
  padding: 78px 0 73px 0;
}
.DetCardRow {
  display: flex;
  justify-content: space-between;
}
.CallUsCard,
.AddCard,
.MailCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 57px 39px;
  background: var(--clr-11);

  flex: 0 1 28%;
}

.CallUsCard .IconDiv,
.AddCard .IconDiv,
.MailCard .IconDiv {
  background: var(--clr-3);
  border-radius: 50%;
  padding: 33.5px;
  margin-bottom: 30px;
}
.DetCardRow h2 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  color: var(--clr-8);
  margin-bottom: 8px;
}
.DetCardRow p {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 27px;
  text-align: center;
  color: var(--clr-16);
}
.DetCardRow p a:hover {
  color: var(--clr-3);
}
.contactSec form {
  width: 70%;
  margin: auto;
}

.contactSec form h2 { 
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 45px;
  text-align: center;
  color: var(--clr-8);
  margin-bottom: 20px !important;
  margin-top: 100px!important;
}
.contactSec form p {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  text-align: center;
  color: var(--clr-14);

  width: 60%;
  margin: auto !important;
  margin-bottom: 50px !important;
}
.contactSec form input ,select, textarea{
background: var(--clr-11);
padding: 17px 26px;
border:none;
margin-bottom: 19px;
width: 100%;
}
.contactSec form textarea{
  min-height: 180px;
}
.contactSec form button{
 background: var(--clr-3);
 color: var(--clr-1);
 padding: 15px 25px;
 border-radius: 5px;
 margin-top: 50px;
 border: none;
 text-align: center;
}
.locationSec iframe{
  width: 100%;
  min-height: 486px;
}
@media (max-width: 1400px) {
  .nav-list li {
    padding: 0 15px;
  }
  .button-wrap {
    padding: 10px 20px;
  }
  /* .nav-wrap {
      padding: 10px 0px;
  } */
}

@media (max-width: 1200px) {
  .nav-list li {
    padding: 0 7px;
  }
  .button-wrap {
    padding: 8px 20px 8px 20px;
    margin-top:15px;
  }
  /* .nav-wrap {
    padding: 10px 0px;
} */
}

@media (max-width: 992px) {
  .header {
    padding: 10px 0;
  }
  .hamburger {
    display: block;
  }
  .nav-wrap {
    position: fixed;
    top: 0;
    right: -100%;
    transform: translateX(100%);
    background-color: #ffffff;
    transition: all 0.5s linear;
    max-width: 300px;
    width: 100%;
    height: 100%;
    box-shadow: 2px -5px 5px 3px #ccc;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
  }
  .nav-wrap.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    right: 0;
    z-index: 9;
  }
  .nav-list {
    flex-direction: column;
    align-items: unset;
    opacity: 0;
    visibility: hidden;
    transition-delay: 0.5s;
    transition-duration: 1s;
    transition-property: all;
  }
  .nav-wrap.is-open .nav-list {
    opacity: 1;
    visibility: visible;
  }

  .nav-list li a {
    color: #311432;
    text-align: left;
    display: inline-block;
    padding:8px 0px;
  }
  .nav-list li a::after {
    background-color: #311432;
  }
  .nav-list li.with-submenu {
    display: block;
  }
  .nav-list li.with-submenu::after {
    border-color: #311432;
    right: 10px;
    top: 12px;
  }
  .nav-list li.with-submenu:hover::after {
    transform: rotate(45deg);
    margin-top: 0;
  }
  .nav-list li.with-submenu.is-open::after {
    transform: rotate(225deg);
    margin-top: 5px;
  }
  .nav-list li.with-submenu .submenu {
    position: static;
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-radius: 0;
    border-top: 1px solid #ccc;
    display: none;
    transition: auto;
    margin: 10px 0;
  }
  .nav-list li.with-submenu .submenu li {
    padding: 7px 10px;
  }
  .nav-list li.with-submenu .submenu li:hover a {
    background-color: transparent;
  }
  .nav-list li.with-submenu .submenu li a {
    display: inline-block;
    padding: 2px 0;
  }
  .nav-list li.with-submenu .submenu li a::after {
    display: block;
  }
  .nav-wrap {
    /*border-radius: 47px 0px 0px 47px;*/
  }
  .button-wrap {
    margin: 10px 0px 0px 0px;
  }
  .nav-wrap {
    padding: 0 20px;
  }
  .LinkBtn {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    min-width: 210px;
    padding: 10px 30px;
  }
  .HomeSevSec h3 {
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
  }
  .HomeSevSec p {
    font-size: 16px;
    line-height: 25px;
  }
  .HomeAboutSecImageDiv {
    margin-top: 25px;
    text-align: center;
  }
  .HomeAboutSecImage {
    padding: 0;
  }
  .DetImgDiv {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }
  .homeContact .contents .DetImg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .ServLinkList {
    margin-right: 0px;
  }
  








  .AppointmentSec {
    margin-right: 0px;
  }
  .detCont h2 {
    font-size: 25px;
    line-height: 35px;
  }
  .detCont h6 {
    font-size: 15px;
    line-height: 20px;
  }
  .DetCardRow {
    flex-wrap: wrap;
    justify-content: space-around;
}
.CallUsCard, .AddCard, .MailCard {
  flex: 0 1 45%;
  margin-bottom: 20px;
 
}
.contactSec form p {
  width: 90%;
}
.contactSec form {
  width: 82%;
  margin: auto;
}
}

@media (max-width: 767px) {
  .BannerSec h1 {
    font-size: 35px;
    line-height: 45px;
    padding: 35px 0 25px 0;
  }
  .HomeServCard {
    margin-bottom: 20px !important;
  }
  .homeContact .contents .DetImg {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .CallUsCard, .AddCard, .MailCard {
    flex: 0 1 95%;
    margin-bottom: 20px;
}
.contactSec form p {
  width: 100%;
}
.contactSec form {
  width: 100%;
  margin: auto;
}

}
@media (max-width: 575px) {
  .ProfileSec {
    position: absolute;
    left: 50%;
    top: 95px;
    transform: translate(-50%, -50%);
  }
  .TestmonialItem {
    padding: 190px 30px 30px 30px;
  }
  .AboutDrSec {
    padding: 50px 0 140px 0;
  }
  .accordion .accordion-item {
    margin-right: 0px;
  }
  .AboutDrSec h2 {
    font-size: 25px;
    line-height: 35px;
  }
  .AboutDrSec p {
    font-size: 15px;
    line-height: 25px;
  }
  .accordion {
    margin-top: 30px !important;
  }
  .accordion .accordion-content p {
    font-size: 15px;
    line-height: 25px;
  }
  .AboutwhychooseSec h2 {
    font-size: 30px;
    line-height: 40px;
    padding-bottom: 20px;
  }
  .AboutwhychooseSec p {
    font-size: 15px;
    line-height: 25px;
  }
  footer h2 {
    font-size: 25px;
    line-height: 35px;
  }
  .FooterTail .col-12 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .ServeListSec h2 {
    font-size: 25px;
    line-height: 35px;
  }
  .ServeListSec {
    background: var(--clr-1);
    padding: 50px 0 40px 0;
  }
  .ServeListSec p {
    font-size: 15px;
    line-height: 25px;
  }
  .ServeListSec:nth-child(odd) .cont {
    padding-left: 14px;
  }
  .BannerImageSec img {
    min-height: 200px;
    object-fit: cover;
  }
  .BannerImageSec h2 {
    font-size: 25px;
    line-height: 35px;
  }
  .DetailPageSec {
    padding: 45px 14px 45px 14px !important;
  }
  .ServLinkList {
    padding: 30px 15px 35px 15px;
    margin-bottom: 25px;
  }
  .AppointmentSecCont h2 {
    font-size: 16px;
    line-height: 20px;
  }
  .CallUsCard .IconDiv, .AddCard .IconDiv, .MailCard .IconDiv {
    padding: 25.5px;
  }
  .contactSec form h2 {
    font-size: 25px;
    line-height: 35px;
  }
  .contactSec form h2 {
    margin-top: 50px !important;
  }
  .top-header-main .items:first-child {
    border-right: 0px solid var(--clr-10);
}
}
@media (max-width: 475px) {
  .HomeSevSec h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
  }
  .HomeSevSec p {
    font-size: 15px;
    line-height: 25px;
  }
  .LinkBtn {
    font-size: 14px;
    font-weight: 600;
    line-height: 20.84px;
  }
  .Hometestimonial h2 {
    padding-bottom: 50px;
    font-size: 25px;
    line-height: 35px;
  }
  .MainSerSec h2 {
    font-size: 25px;
    line-height: 35px;
  }
  .homeContact .contents {
    background: var(--clr-7);
    padding: 55px 30px 0 30px;
    border-radius: 40px;
  }
}

@media (max-width: 425px) {
  .top-header-main .items {
    padding: 0 5px;
  }
  .top-header-main {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}




.gallery-container {
  width: 100%;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  display: block;
}
