@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

:root {
  --primary-color: #054d9e;
  --secondary-color: #e6037d;
  --prime-color: rgb(202, 201, 201);
  --accent-color: #4CA1AF;
  --text-color: #fff;
  --background-color: #f9f9f9;

  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Merriweather', serif;
  --heading-font-weight: 600;
  --body-font-weight: 400;
  --font-size-base: 16px;
  --line-height-base: 1.5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--body-font-weight);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  overflow-x: hidden;
}

ul {
  list-style-type: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

button,
.btn {
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* header styling starts*/
/*topheader styling starts */
.topheader {
  padding-top: 0px;
  padding-bottom: 0px;
  border-bottom: 1px solid #eee;
  background: var(--primary-color);
}

.topheaderdetails {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
}

.topheaderdetails .topheadercontact {}

.topheaderdetails .topheadercontact ul {}

.topheaderdetails .topheadercontact ul li {
  list-style: none;
  font-size: 1em;
  color: #fff;
  letter-spacing: 1px;
  padding-right: 15px;
  display: inline-flex;
}

.topheaderdetails .topheadercontact ul li a {
  display: inline-flex;
  align-items: center;
}

.topheaderdetails .topheadercontact ul li a svg {
  width: 25px;
}

.topheaderdetails .topheadercontact ul li a span {
  font-size: 14px;
  font-weight: 500;
  padding-left: 8px;
  font-family: var(--font-secondary);
  color: #fff;
}

.topheaderdetails .topheadersocial-links {}

.topheaderdetails .topheadersocial-links ul {}

.topheaderdetails .topheadersocial-links ul li {
  list-style: none;
  display: inline-block;
  font-size: 1em;
  color: #fff;
  letter-spacing: 1px;
}

.topheaderdetails .topheadersocial-links ul li a {}

.topheaderdetails .topheadersocial-links ul li a svg {
  width: 30px;
}

/*topheader styling ends */

/* social icons section style start */

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

.social-list li {}

.social-list li a {
  background: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .3s ease;
  color: #fff;
}

.social-list li a.facebook {
  background: #0866ff;
}

.social-list li a.instagram {
  background: #fe0b84;
}

.social-list li a.twitter {
  background: #000000;
}

.social-list li a.linkedin {
  background: #0077b5;
}

.social-list li a.youtube {
  background: #ff0000;
}

.social-list li a i {}

.social-list li a:hover {
  transform: translateY(-5px);
}

/* social icons section style start */

/*bottomheader styling starts */
.bottomheader {
  padding: 10px 0;
}

.bottomheader .logo {
  display: flex;
  width: 15%;
}
.bottomheader .logo img {
  width: 100%;
}
.navlinks {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.navlinks ul {
  gap: unset;
}

.navlinks ul li {
  position: relative;
}

.navlinks ul li a {
  color: #000;
  font-weight: 400;
  font-size: 16px;
  transition: 0.3s;
  text-transform: capitalize;
  padding: 10px 10px;
  font-family: var(--font-primary);
}

.navlinks ul li a:hover {
  color: var(--secondary-color);
}


.dropdown-menu {
  position: absolute;
  padding: 0px 0px;
  top: 100%;
  left: 0;
  width: 200px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 10;
  border-top: 2px solid var(--primary-color);
}

.dropdown-menu a {
  display: block;
  padding: 10px 10px;
  color: var(--primary-color);
  font-weight: 200;
}

.navlinks ul li .dropdown-menu a:hover {
  color: #fff;
  background: var(--primary-color);
}

.dropdown-box:hover .dropdown-menu {
  display: block;
}

.dropdown-box i {font-size: 14px;}

.appoint {
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 15px;
  text-transform: capitalize;
  font-family: var(--font-secondary);
  transition: all .3s ease;
}

.appoint:hover {
  background-color: var(--secondary-color);
  color: #fff;
}


/*bottomheader styling ends */

/* mobile btn style start */
.mobilemenubtn {
    display: none;
}


.mobilemenubtn .mob-menu-open {
    position: relative;
    z-index: 9;
    top: 0;
    padding: 6px 5px 4px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    /* float: right; */
    right: 20px;
    right: 0;
}

.mobilemenubtn .mob-menu-open span.bar {
    background: #000000;
    height: 4px;
    width: 30px;
    display: block;
    margin-bottom: 7px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* mobile btn style end */

/*banner-section styling starts*/

/* .banner-section
{
    padding: 20px 0px;
    background-color: var(--background-color);
}
 
 .banner-content
 {
  padding-left: 30px;
 }
.banner-content h1
{
  color: var(--primary-color);
}
.banner-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.banner-content p {
  font-size: 1rem;
  margin-bottom: 30px;
   
} */

.bannersection {}

.bannersection .bannerimg {}

.bannersection .bannerimg img {
  width: 100%;
}

/*about section styling starts*/
.about-section {
  padding: 60px 0;
  background: #f8f6f5;
  font-family: "Inter", sans-serif;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Column */
.about-left {
  position: relative;
}

.doctor-img img {
  width: 100%;
  border-radius: 12px;
}

/* .video-box {
  position: absolute;
  margin-top: 20px;
  width: 60%;
  right: 0;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.play-icon {
  width: 80px;
  height: 45px;
  background: var(--primary-color);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.video-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
  color: var(--primary-color);
}

.video-text p {
  margin: 0;
  font-size: 14px;
  color: #555;
} */

/* Right Column */
.about-grid .about-right {
  display: flex;
  flex-direction: column;
}

.section-subtitle {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: capitalize;
  font-family: var(--font-primary);
  font-size: 18px;
  background: #ffebf6;
  padding: 5px 20px;
  width: max-content;
  border-radius: 50px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.about-right p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
  text-align: justify;
}
.about-right .btnlinks {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-right .btnlinks a {
    padding: 10px 30px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
}

.about-right .btnlinks a.appointment {
    color: #fff;
    display: inline-block;
    border-radius: 100px;
    position: relative;
    text-transform: capitalize;
    text-decoration: none;
    padding: 10px 20px 10px 50px;
    font-size: 16px;
    margin-left: 7px;
    background: var(--primary-color);
    transition: all .3s ease;
}
.about-right .btnlinks a.appointment:hover {
  background: var(--secondary-color);
}
.about-right .btnlinks a.appointment:hover .icon {
  border-color: var(--secondary-color);
}
.about-right .btnlinks a.appointment .icon {
    position: absolute;
    width: 46px;
    top: -1px;
    left: -2px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    transition: all .3s ease;
}
.about-right .btnlinks a.appointment:hover .icon svg {
  fill: var(--secondary-color);
}
.about-right .btnlinks a.appointment .icon svg {
    fill: var(--primary-color);
    transition: all .3s ease;
    width: 28px;
}

.about-right .btnlinks a.appointment .icon svg path {}

/* Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/*about sectionn styling ends*/

/* headingbox style start */

.headingbox {
    text-align: center;
    margin: 0 0 30px;
}

.headingbox h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0 auto 15px;
    text-transform: capitalize;
    font-family: var(--font-primary);
    font-size: 18px;
    background: #ffebf6;
    padding: 5px 20px;
    width: max-content;
    border-radius: 50px;
    border: 1px solid #ffdff1;
}

.headingbox h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.headingbox h2:before {
  content: '';
  display: inline-block;
  width: 10%;
  height: 2px;
  background-color: var(--secondary-color);
  position: relative;
  right: 10px;
  bottom: 5px;
}
.headingbox h2:after {
  content: '';
  display: inline-block;
  width: 10%;
  height: 2px;
  background-color: var(--secondary-color);
  position: relative;
  left: 10px;
  bottom: 5px;
}

/* headingbox style end */

/*service sectionn styling starts*/

.servicesection {
    padding: 50px 0;
    background: #ffeff7;
}
.servicesection.servicepage .servicebox {
    margin: 10px 0;
}
.servicesection .headingbox h4 {
    background: #ffeaf6;
}
.servicesection .servicebox {
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    margin: 0 10px;
}

.servicesection .servicebox .seviceimg {
    overflow: hidden;
}

.servicesection .servicebox .seviceimg a {}

.servicesection .servicebox .seviceimg a img {
    width: 100%;
    transition: all .3s ease;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.servicesection .servicebox .seviceimg:hover a img {
  transform: scale(1.2);
}

.servicesection .servicebox .serviceinfobox {
    padding: 15px 0px 20px;
}

.servicesection .servicebox .serviceinfobox .serviceinfo {
    display: flex;
    flex-direction: column;
}

.servicesection .servicebox .serviceinfobox .serviceinfo h3 {
    margin-bottom: 10px;
}

.servicesection .servicebox .serviceinfobox .serviceinfo h3 a {
    font-family: var(--font-secondary);
    font-weight: 700;
    color: #222;
    font-size: 18px;
    transition: all .3s ease;
}

.servicesection.maternityservice {
    background: #fff;
}

.servicesection .servicebox .serviceinfobox .serviceinfo h3 a:hover {
  color: var(--primary-color);
}

.servicesection .servicebox .serviceinfobox .serviceinfo p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
    font-family: var(--font-primary);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
}

.servicesection .servicebox .serviceinfobox .serviceinfo .btnlinks {
    background: #ffe8f4;
    padding: 4px 15px;
    color: var(--secondary-color);
    text-transform: capitalize;
    border-radius: 20px;
    width: max-content;
    margin: 5px 0 0px;
    font-weight: 600;
    border: 1px solid #ffdcee;
    transition: all .3s ease;
    font-size: 14px;
}
.servicesection .servicebox .serviceinfobox .serviceinfo .btnlinks:hover {
  background: var(--secondary-color);
  color: #fff;
}
.servicesection .servicebox .serviceinfobox .serviceinfo .btnlinks i {
  transition: all .3s ease;
}
.servicesection .servicebox .serviceinfobox .serviceinfo .btnlinks:hover i {
  padding-left: 10px;
}

/*service sectionn styling ends*/

/* facilities section styling starts*/
.facilities-sections {
  padding: 40px 0px;
  background-color: peachpuff;
}

.offering-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 50px;
  flex-wrap: wrap;
  background-color: var(--primary-color);
}

.offering-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  width: 300px;
  text-align: center;
  box-shadow:
    0 5px 10px rgba(0, 0, 0, 0.05),
    /* Light outer shadow */
    0 10px 20px rgba(0, 0, 0, 0.08),
    /* Medium outer shadow */
    0 15px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.offering-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-circle {
  background-color: #ff4500;
  /* Inner circle color */
  border: 5px solid var(--background-color);
  /* Outer border color */
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.icon-circle img {
  width: 45px;
  height: 45px;
  filter: brightness(0) invert(1);
  /* Makes icons white */
}

.offering-card:hover .icon-circle {
  border-color: var(--accent-color);
  /* Change outer circle color on hover */
  transform: scale(1.1);
}

h3 {
  color: #033b5c;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #ff4500;
  border-radius: 30px;
  color: #ff4500;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.read-more:hover {
  background-color: #ff4500;
  color: #fff;
}

.arrow {
  margin-right: 5px;
}

/*====== choose us start here =======*/
.chooseus{
    position: relative;
    z-index: 1;
    padding: 50px 0;
    background: url('../asset/images/choosebg.webp');
}
.chooseus:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d4e8ffcf;
    z-index: -1;
}
.chooseus .maintitle{}
.chooseus .maintitle span{}
.chooseus .maintitle h3{}
.chooseleft{
    position: relative;
    z-index: 1;
    height: 100%;
}
.chooseleft img{width: 100%;border-radius: 10px;height: 100%;}
.chooseleft .choosebox{
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: var(--primary-color);
    padding: 10px 0;
    border-radius: 5px;
    text-align: center;
    width: 200px;
}
.chooseleft .choosebox span{
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    padding: 0 0 10px;
    display: inline-block;
}
.chooseleft .choosebox p{
    font-size: 16px;
    color: #dddddd;
    margin: 0;
}

.chooseright{}
.chooseright span{
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-family: var(--font-primary);
    font-size: 18px;
    background: #ffebf6;
    padding: 5px 20px;
    width: max-content;
    border-radius: 50px;
}
.chooseright h3{
    padding: 20px 0 15px;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.chooseright .chooselist{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
    margin: 20px 0 0;
}
.chooseright .chooselist:after,
.chooseright .chooselist:before{
    content: "";
    position: absolute;
    background: #ffffff1f;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.chooseright .chooselist:after{
    height: 100%;
    width: 1px;
}
.chooseright .chooselist:before{
    width: 100%;
    height: 1px;
}
.chooseright .chooselist .list{
    flex-basis: 48%;
    text-align: center;
    background: var(--primary-color);
    border-radius: 10px;
    padding: 20px 10px;
}
.chooseright .chooselist .list i{
    width: 35px;
    height: 35px;
    font-size: 24px;
    background: var(--secondary-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin: 0 0 10px;
}
.chooseright .chooselist .list h4{
    font-size: 18px;
    color: #fff;
    padding: 0 0 10px;
    font-weight: 600;
    margin: 0;
}
.chooseright .chooselist .list p{
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
}


/*====== choose us end here =======*/

/* facilities section ends*/
/* eperience section styling starts*/
.countersection {
  background: #01456a url('../asset/images/counterbgimg.png') no-repeat center/cover;
  /* Replace with your image */
  padding: 50px 0;
  color: white;
  text-align: center;
}

.countersectioncontainer {
  display: flex;
  justify-content: space-around;
  max-width: 1100px;
  margin: auto;
}

.countersectioncard {
  flex: 1;
}

.countersectioncard .counter {
  font-size: 2.5rem;
  font-weight: bold;
}

.countersectioncard .counter::after {
  content: "+";
  margin-left: 4px;
  color: inherit;
  font-weight: bold;
}

.countersectioncard p {
  font-size: 25px;
  margin-top: 5px;
  color: white;
  font-weight: bold;

}

/* eperience section stling ends*/

/*expert section styling starts */
.expert-section {
  padding: 40px 0px;
}

.expert-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 20px 20px;
  background: #f8f9fa;
}

.card-content {
  background: white;
  border-radius: 25px;
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  width: 420px;
  height: 500px;
  padding: 10px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.card-content img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  border-radius: 20px;
}

.card-content h3 {
  color: #0f2c4c;
  margin: 25px 0 10px;
  font-size: 1.6rem;
}

.card-content p {
  color: red;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Animation keyframes */
@keyframes slideInLeft {
  from {
    transform: translateX(-200px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(200px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Active animation classes */
.animate-left {
  animation: slideInLeft 0.8s ease forwards;
}

.animate-right {
  animation: slideInRight 0.8s ease forwards;
}


/*expert section styling ends*/

/*footer styling start*/

.footer {

}
.footer .footertop {
  background: #ffe6f3;
  color: #fff;
  padding: 40px 0;
}

.footer-container {
}

.footer-column h3 {
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-column .footerlogo img {
  width: 80%;
}

.footer-column .info p {
  color: #000000;
  max-width: 300px;
}

.footer-column a {
  display: block;
  color: #000000;
  margin-bottom: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  font-weight: 500;
  width: max-content;
}
.footer-column a.footerlogo {
  width: unset;
}
.footer-column a:hover {
  color: var(--secondary-color);
}

.social-icons a {
  font-size: 14px;
  width: unset;
}

.contact-column {
  padding: 10px;
  background-color: #ffffff;
  height: 400px;
  border-bottom: 2px solid var(--secondary-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25),
    0 8px 40px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.contact-column:hover {
  transform: translateY(-5px);
  /* little lift on hover */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-column h3 {
  padding: 5px;
  margin: 0;
}

.contact-column p {
  padding: 5px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #000000;
}

.wrong-box {
  width: 100%;
  height: 200px;
  background: #f5f5f5;
  /* fallback background */
  border-radius: 5px;
  overflow: hidden;
}
.footerbottombox {
  background-color: var(--secondary-color);
}
.footer-bottom {
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--text-color);
  margin: 0;
}

.footer-bottom p a {
  color: #fff;
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ffffff;
  /* highlight on hover */
}

.footer-social i {
  font-size: 16px;
}

.footer-column h3 i {
    display: none;
    font-size: 16px;
}

.footermenubox {
  transition: all .3s ease;
}

/* footer styling end */

/* home appointment section style start */

.widget-bookappointment{
    padding: 50px 0;
    background: #fff;
}    
.widget-bookappointment .leftbox{
}    
.widget-bookappointment .leftbox h3{
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--primary-color);
    text-transform: capitalize;
    margin: 0;
}    
.widget-bookappointment .leftbox h3 span{
    color: var(--secondary-color);
    font-family: var(--font-secondary);
    font-weight: 700;
}    
.widget-bookappointment .rightbox{}    
.widget-bookappointment .rightbox a{
    display: block;
    background: var(--primary-color);
    padding: 15px;
    border-radius: 10px;
    position: relative;
    padding-left: 56px;
    box-shadow: 0 5px 20px 0 rgb(56 56 56 / 63%);
}    
.widget-bookappointment .rightbox a .iconbox{
    position: absolute;
    width: 7px;
    height: 50px;
    left: 0;
    background: #2d6aae;
    top: 22px;
    border-radius: 0 5px 5px 0;
}    
.widget-bookappointment .rightbox a .texthead{
    display: block;
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    line-height: normal;
    font-family: var(--font-secondary);
}    
.widget-bookappointment .rightbox a .subtexthead{
    display: block;
    line-height: normal;
    color: #fff;
    font-weight: 600;
    font-family: var(--font-secondary);
}    
.widget-bookappointment .rightbox a i{
    position: absolute;
    right: 21px;
    top: 0;
    font-size: 94px;
    color: #ffffff29;
}    

/* home appointment section style end */

/* widget tow section style start */

.widget-two{
    padding: 50px 0;
}
.widget-two .box_col{
    padding: 0;
    background: #ffc6e5;
}
.wt-a{
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: .3s;
    padding: 30px 30px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.wt-a:hover{
    box-shadow: 0 10px 10px 0 rgb(0 0 0 / 10%);
}
.widget-two .box_col:nth-child(2) .wt-a i {
    color: #fff;
}
.widget-two .box_col:nth-child(2){background: #ff78c1;}

 
.widget-two .box_col:nth-child(2) .wt-a h3{
    color: #fff ;
}
.widget-two .box_col:nth-child(2) .wt-a h3:after{
    background: #fff;
}
.widget-two .box_col:nth-child(2) .wt-a p{
    color: #fff;
}
.widget-two .box_col:nth-child(2) .wt-a .readbtn{
    border: none;
    transition: .3s ease-in-out;
}
.widget-two .box_col:nth-child(2) .wt-a .readbtn:hover{
}
.wt-a i{
    font-size: 3em;
    color: var(--secondary-color);
}
.wt-a h3{
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    padding: 30px 0;
    display: inline-block;
    z-index: 0;
    line-height: 1.1;
    transition: .4s ease-in-out;
    letter-spacing: 1px;
    position: relative;
    font-family: var(--font-secondary);
    text-transform: uppercase;
}
.wt-a h3:after{
    content: "";
    width: 70%;
    height: 1px;
    background: var(--secondary-color);
    position: absolute;
    bottom: 13px;
    left: 50%;
    transform: translateX(-50%);
}
.wt-a p{
    font-size: 15px;
    color: #000000;
    font-weight: 300;
}
.wt-a .readbtn{
    border: none;
    padding: 8px 15px;
    font-size: 12px;
    display: inline-block;
    text-transform: uppercase;
    margin-top: 20px;
    color: var(--secondary-color);
    letter-spacing: 1px;
    background: #fff;
    transition: .3s ease-in-out;
    font-weight: 700;
    font-family: var(--font-secondary);
    border-radius: 20px;
}
.wt-a .readbtn:hover{
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff !important;
}

/* widget tow section style end */

/* doctor section style start */

.doctor-page{
    padding-bottom: 40px;
}
.doctor-page h3{
    text-align: CENTER;
    font-weight: bold;
    font-family: 'QuasimodaW03';
    margin-bottom: 10px;
}
.doctor-page p{
    text-align: CENTER;
    padding: 0 20%;
    font-family: 'Quasimoda';
    line-height: normal;
    font-weight: 600;
    /* font-size: 18px; */
}

.doctorbox{
    padding: 5px;
    float:left;
}
.doctorbox .innerbox{
    padding: 15px;
    text-align: CENTER;
    border: 2px solid #eee;
    border-radius: 5px;
}
.doctorbox .innerbox figure{
    margin-bottom: 0;
}
.doctorbox .innerbox figure img{
    border-radius: 20px 20px;
    width: 100%;
}
.doctorbox .innerbox h4{
    display: block;
    padding-top: 10px;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 0 0 5px;
}
.doctorbox .innerbox span{
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0;
    display: block;
    color: #31393a;
}

/* doctor section style end */

/* map section style start */

.mapsection {}

.mapsection .mapbox {
    padding: 0;
    margin: 0;
}

.mapsection .mapbox iframe {
    width: 100%;
    height: 400px;
}

/* map section style end */

/* breadcrumb style start */

.breadcrumb-page{
    background: #054d9e;
}
.breadcrumbbox{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    flex-direction: column;
    gap: 10px;
}
.breadcrumbbox h3{
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--secondary-font);
    color: #fff;
    font-size: 26px;
    margin: 0;
}
.breadcrumbbox ul{
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 20px;
    border-radius: 50px;
    background: rgb(255 255 255 / 10%);
    flex-wrap: wrap;
}
.breadcrumbbox ul li{
    font-size: 14px;
    font-weight: 400;
    display: flex;
    gap: 5px;
    align-items: center;
    color: #fff;
    letter-spacing: .5px;
    font-weight: 600;
}
.breadcrumbbox ul li:not(:last-child):after{
    content: "/";
    color: #dbdbdb;
}
.breadcrumbbox ul li a{color: #dbdbdb;font-weight: 400;}


/* breadcrumb style end */

/* service details section style start */

.service-details {
    padding: 50px 0px;
}

.service-details .service-heading {}

.service-details .service-heading h3 {}

.service-details .service-heading h3:before,
.service-details .service-heading h3:after {}

.service-details .service-heading h3:before {}

.service-details .service-heading h3:after {}

.service-details .service-details-box {}

.service-details .service-details-box p {
    margin: 0 0 10px;
    color: #373737;
    font-weight: 400;
    text-align: justify;
    font-family: var(--secondry-font);
    font-size: 16px;
}

.service-details .service-details-box p a {
    display: inline;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: underline;
}

.service-details .service-details-box h1 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    font-size: 1.8rem;
    display: inline-block;
    background: var(--primary-color);
    padding: 5px 20px;
    border-radius: 2px;
    color: #fff !important;
}

.service-details .service-details-box h1:before {
    content: "";
    height: 100%;
    border-left: 3px solid var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: -30px;
}

.service-details .service-details-box h1:after {
    content: "";
    height: 100%;
    border-left: 3px solid var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 30px;
}

.service-details .service-details-box ul {

margin: 0 20px;

list-style: disc;

display: block;
}

.service-details .service-details-box ul li {
    margin: 0 0 10px;
    color: #373737;
    font-weight: 400;
    text-align: justify;
    font-family: var(--secondry-font);
    font-size: 16px;
}

.service-details .service-detail-box {}

.service-details .service-details-box .description {}

.service-details .service-details-box .description h4 {
    font-size: 22px;
    font-weight: 800;
    font-family: var(--primary-font);
    color: var(--primary-color);
    margin: 0 0 10px;
    line-height: normal;
}


.service-details .service-details-box img {
    width: 100%;
    border-radius: 10px;
    margin: 0 0 10px;
}


.service-details .service-sidebar {
    border-radius: 30px;
}

.service-details .service-sidebar .service-sidebar-box {}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content {
    border-radius: 30px;
    padding: 10px 0 20px;
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul {
    position: relative;
    background: #fff2f5;
    display: block;
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul li {
    position: relative;
    border: 1px solid #dedede;
    z-index: 9;
    border-bottom: 0;
    background: #ffc6d5;
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #222222;
    line-height: 30px;
    padding: 10px 25px;
    display: block;
    padding-left: 38px;
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul li:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background-color: var(--primary-color);
    content: "";
    opacity: 0;
    visibility: hidden;
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul li:hover:before,
.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul li.active:before {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul li:hover a,
.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul li.active a {
    color: #fff;
}

.service-sidebar-box .service-sidebar-content ul li a:before {
    position: absolute;
    left: 20px;
    top: 10px;
    font-size: 12px;
    line-height: 30px;
    color: #222222;
    font-weight: 900;
    content: "\f0da";
    font-family: 'FontAwesome';
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-sidebar-box .service-sidebar-content ul li:hover a:before,
.service-sidebar-box .service-sidebar-content ul li.active a:before {
    color: #fff;
}

.service-sidebar-box .service-sidebar-content ul li a:after {
    position: absolute;
    left: -1px;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: var(--secondary-color);
    z-index: -1;
    transition: transform 0.4s ease,
    -webkit-transform 0.4s ease;
    transform: scale(0, 1);
    transform-origin: right top;
}

.service-sidebar-box .service-sidebar-content ul li:hover a:after,
.service-sidebar-box .service-sidebar-content ul li.active a:after {
    transform-origin: left bottom;
    transform: scale(1, 1);
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul li:last-child {
    border-bottom: 1px solid #dedede;
}

.contactsidebar {
    background-size: cover;
    background-position: center;
    padding: 25px;
    position: relative;
    border-radius: 10px;
}

.contactsidebar:before {
    content: '';
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    background-color: var(--secondary-color);
    opacity: 0.6;
    transition: all .3s ease;
}

.contactsidebar .contactsidebarbox {
    position: relative;
    padding: 30px;
    text-align: center;
}

.contactsidebar .contactsidebarbox h4 {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 32px;
    color: #fff;
    text-align: center;
}

.contactsidebar .contactsidebarbox p {
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    font-family: var(--primary-font);
    margin: 0 0 10px;
}

.contactsidebar .contactsidebarbox .contactbtn {
    color: #fff;
    background: var(--primary-color);
    padding: 10px 30px;
    text-align: center;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

/* service details section style end */

/* facilities section style start */

.facilities {
  padding: 50px 0;
}

.facilities .facilitiesbox {
  text-align: center;
  background: #fff;
  padding: 30px 0px;
  transition: .3s ease-in-out;
  margin-bottom: 20px;
  border-radius: 15px;
}
.facilities .facilitiesbox:hover {
  background: #dfeeff;
}
.facilities .facilitiesbox figure {
  margin: 0;
}

.facilities .facilitiesbox figure a {
  
}

.facilities .facilitiesbox figure a img {
  width: 80px;
}

.facilities .facilitiesbox .title {
  display: inline-block;
  padding: 15px 0;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.facilities .facilitiesbox .title:after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 25%;
  height: 2px;
  background: #000;
}
/* facilities section style end */

/* blogs page style start */

.blogsection {
    position: relative;
    padding: 50px 0px;
}

.blogsection .blogsectionbox {
    border-right: 1px solid #e8e8e8;
    padding-right: 20px;
}

.blogsection .blogsectionbox .blogshead {
    margin: 0 0 20px;
}

.blogsection .blogsectionbox .blogshead h2.maintitle {
    position: relative;
    font-size: 48px;
    font-weight: 600;
    font-family: var(--primary-font);
}

.blogsection .blogsectionbox .blogsouterbox {}

.blogsection .blogsectionbox .blogsouterbox .blogsbox {
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #e4e4e4;
    padding: 5px;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogsimg {
    position: relative;
    overflow: hidden;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogsimg a {}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogsimg a img {
    width: 100%;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogsimg a .blogsimginner {
    position: absolute;
    right: 0;
    top: 0px;
    transition: 200ms ease-in-out;
    background: var(--primary-color);
    padding: 10px 10px;
    text-align: center;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox:hover .blogsimg a .blogsimginner {
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogsimg a .blogsimginner .date {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogscontent {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogscontent .blogstitle {
    font-size: 18px;
    font-family: var(--primary-font);
    font-weight: 600;
    color: #000;
    text-align: center;
    line-height: normal;
    margin: 0;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogscontent .blogstitle a {
    transition: all .3s ease;
    font-family: var(--font-secondary);
    line-height: normal;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogscontent .blogstitle a:hover {
    color: var(--secondary-color);
}
.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogscontent .blogsdescription {
  
}
.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogscontent .blogsdescription p {
    text-align: justify;
    font-size: 14px;
    color: #000;
    font-weight: 400;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
    margin: 0;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogscontent a.viewmore {
    border-radius: 5px;
    color: var(--primary-color);
    transition: all .3s ease;
    text-align: center;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogscontent a.viewmore i {
    transition: all .3s ease;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogscontent a.viewmore:hover i {
    padding-left: 5px;
}

.blogsection.blogspage {
    background: #fff;
}

.blogsection.blogspage .blogs-row .blogsbox .blogsinner h3 {
    font-size: 18px;
    font-weight: 600;
}

.blogsection .blogs-row .blogsbox .blogsinner p {}

.blogsection.blogspage .blogs-row .blogsbox .blogsinner {
    padding: 20px 10px;
}

.blogsection.blogspage .blogs-row .blogsbox {
    margin: 15px 0;
}

.blog-details {
    padding: 50px 0px;
}

.blog-details .blog-detailsbox {}

.blog-details .blog-detailsbox .blog-image {
    text-align: center;
    margin: 0 0 20px;
}

.blog-details .blog-detailsbox .blog-image img {
    width: 70%;
    border-radius: 15px;
    height: 400px;
    object-fit: contain;
}

.blog-details .blog-detailsbox .service-details-box {}

.blog-details .blog-detailsbox .service-details-box p {
    color: #373737;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 10px;
    text-align: justify;
    font-family: var(--secondry-font);
}
.blog-details .blog-detailsbox .service-details-box ul {
    margin: 0 20px;
    list-style: disc;
}
.blog-details .blog-detailsbox .service-details-box ul li {
    margin: 0 0 10px;
    color: #373737;
    font-weight: 400;
    text-align: justify;
    font-family: var(--secondry-font);
    font-size: 16px;
}
.blog-details .blog-detailsbox .service-details-box h3{
    font-size: 22px;
    font-weight: 600;
    font-family: var(--primary-font);
    color: #000;
    margin: 0 0 10px;
    line-height: normal;
}
.blogs-sidebox {
    box-shadow: 0px 0px 50px 3px rgba(232,232,232,0.7);
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #ffb9cc;
}

.blogs-sidebox h4 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    margin: 0 0 10px;
    text-align: center;
}

.blogs-sidebox .blogs-boxx {
    background: #d6003978;
    padding: 10px;
    border-radius: 10px;
}

.blogs-sidebox .blogs-boxx a {
    display: flex;
    gap: 0px;
    flex-direction: column;
}

.blogs-sidebox .blogs-boxx a .blogs-img {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blogs-sidebox .blogs-boxx a .blogs-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.blogs-sidebox .blogs-boxx a .blogs-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.blogs-sidebox .blogs-boxx a h5 {
    font-size: 16px;
    font-weight: 600;
    transition: all .3s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    color: #fff;
}
.blogs-sidebox .blogs-boxx a:hover .blogs-info h5 {
    color: var(--primary-color);
}

.blogs-sidebox .blogs-boxx a .blogs-info p {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
}

.blog-details .blog-detailsbox .service-details-box h1 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
    position: relative;
    font-size: 1.8rem;
    display: inline-block;
    background: var(--primary-color);
    padding: 10px 20px;
    border-radius: 2px;
    color: #fff !important;
}
.blog-details .blog-detailsbox .service-details-box h1:before {
    content: "";
    height: 100%;
    border-left: 3px solid var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: -30px;
}
.blog-details .blog-detailsbox .service-details-box h1:after {
    content: "";
    height: 100%;
    border-left: 3px solid var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 30px;
    right: -10px;
}

.blog-details .blog-detailsbox .service-details-box h4 {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--primary-font);
    color: #000;
    margin: 0 0 10px;
    line-height: normal;
}

.blog-details .blog-detailsbox .service-details-box h2 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
}

/* blogs page style end */

/* contact page style start */

.contactpage{
    padding: 50px 0;
    position: relative;
}

.contactpage .cont-info{
    background: #ffffff;
    display: flow-root;
    padding: 20px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid #31393a;
    box-shadow: 0 5px 20px 0 rgb(185 185 185 / 14%);
    min-height: 120px;
}
.contactpage .cont-info .icon{
    float: left;
    padding-right: 15px;
    width: 55px;
}
.contactpage .cont-info .icon svg{
    width: 40px;
    fill: var(--primary-color);
}
.contactpage .cont-info .txt{
    float: left;
    width: calc(100% - 55px);
}
.contactpage .cont-info .txt span{
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 0;
    display: inline-block;
    color: #000;
    font-family: var(--font-secondary);
}
.contactpage .cont-info .txt p{
    font-weight: 400;
    color: #000000;
    font-size: 14px;
    font-family: var(--font-primary);
    margin: 0;
}
.contactpage .cont-left, .contactpage .cont-right{
    padding-top: 40px;
}
.contactpage .cont-left{}
.contactpage .cont-left span{
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    display: block;
}
.contactpage .cont-left h3{
    padding: 0px 0 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary-color);
    display: inline-block;
    position: relative;
    white-space: nowrap;
}
.contactpage .cont-left h3:after,
.contactpage .cont-left h3:before{
    content: "";
    width: 80%;
    display: inline-block;
    position: absolute;
    bottom: 25px;
    left: 0;
    height: 1px;
    background: #ededed;
    z-index: 1;
}
.contactpage .cont-left h3:after{
    background: var(--primary-color);
    width: 35%;
    height: 2px;
}
.contactpage .cont-left h3:before{}
.contactpage .cont-left form{}
.contactpage .cont-left form .fields{
    padding-bottom: 10px;
}
.contactpage .cont-left form .fields :is(input, textarea){
    border-radius: 10px;
    padding: 10px 15px;
    border-width:2px;
}
.contactpage .cont-left form .fields :is(input, textarea)::placeholder{
    color: var(--third-color);
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
}
.contactpage .cont-left form .fields:is(input, textarea):focus{
    box-shadow: none;
    border-color: var(--secondary-color);
}
.contactpage .cont-left form .fields-btn{}
.contactpage .cont-left form .fields-btn input[type='submit']{
    padding: 12px 25px;
    border: none;
    background: var(--secondary-color);
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: .3s ease-in-out;
    text-transform: uppercase;
    transition: .3s ease-in-out;
    white-space: nowrap;
    box-shadow: 0 5px 20px 0 rgb(252 32 30 / 18%);
    letter-spacing: 1px;
    border-radius: 5px;
}
.contactpage .cont-left form .fields-btn input[type='submit']:hover{
    background: var(--primary-color);
}
.contactpage .cont-right{}
.cont-right .map{}
.cont-right .map iframe{
    display: block;
    width: 100%;
    height: 460px;
    border-radius: 15px;
}



/* contact page style end */

/* appointment page style start */
.appointmentpage {
  padding: 50px 0 50px;
}
.appointment{
}
.appoint_img{}
.appoint_img img{
    width: 100%;
}
.appoint_wrapper{
    padding: 6%;
    background: #ffebf6;
    border-radius: 25px 25px 0 0;
    border: 5px solid #e7e2e229;
    border-bottom: 0;
}
.appoint_wrapper h4{
  background: #ffddef;
}
.appoint_wrapper h2{
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    text-align: CENTER;
    margin: 0;
    color: #000;
}
.appoint_wrapper p{text-align: CENTER;
    font-size: 16px;
    margin-bottom: 20px;
    color: #4b5e5b;
    font-weight: 300;}
.appoint_wrapper h2 span{
    color: #668d85;
    font-family: 'Quasimoda';
    font-weight: bold;
}
.appoint_wrapper form{
}
.appoint_wrapper label{
    font-size: 15px;
    color: #000;
    margin: 0;
    padding-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: var(--font-secondary);
}
.appoint_wrapper form .fields{
    padding-bottom: 15px;
}
.appoint_wrapper :is(input, textarea, select){
    padding: 10px;
    margin: 0;
    border: none;
    padding: 10px 10px;
    border-radius:0;
    background: #ffffff !important;
    /* color: #fff; */
    border-radius: 5px;
    font-family: var(--font-primary);
    font-weight: 500;
    border: 1px solid #eee;
}
.form-control:focus {
    border: 1px solid #ffafda;
}
.appoint_wrapper :is(input, textarea)::placeholder{
    font-weight: 300;
}
.appoint_wrapper :is(input, textarea, select):focus{
    box-shadow: none;
     
}
.appoint_wrapper input[type='submit']{
    border: none;
    background: var(--secondary-color)!important;
    padding: 15px 30px;
    transition: .5s;
    color: #fff!important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}
.appoint_wrapper input[type='submit']:hover{
    background: var(--primary-color);
}

/* appointment page style end */

/* mobilesidenav style start */

.mobilesidenav {
    position: fixed;
    top: 0px;
    left: -100%;
    padding-bottom: 15px;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 99;
    overflow: auto;
    -webkit-box-shadow: 0 0 35px -10px rgba(0, 0, 0, 25%);
    box-shadow: 0 0 35px -10px rgba(0, 0, 0, 25%);
    background-repeat: no-repeat;
    transition: all .3s ease;
}

.mobilesidenav.show {
    left: 0;
}

.mobilesidenav .mobilesidev {}

.mobilesidenav .mobilesidev .mobilesidehead {
    background: #ffe6ed;
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 10px 10px;
}

.mobilesidenav .mobilesidev .mobilesidehead .mobilesidelogo {
    width: 60%;
}

.mobilesidenav .mobilesidev .mobilesidehead .mobilesidelogo img {
    width: 100%;
}

.mobilesidenav .mobilesidev .mobilesidehead .close-btn {padding-right: 0px;}

.mobilesidenav .mobilesidev .mobilesidehead .close-btn i {
    font-size: 22px;
}

.mobilesidenav .mobilesidev .mobilemenu {}

.mobilesidenav .mobilesidev .mobilemenu ul {display: flex;flex-direction: column;padding-left: 0;margin-bottom: 0;list-style: none;margin: 0px 0px;margin-right: 0px;gap: 0;}

.mobilesidenav .mobilesidev .mobilemenu ul li {
}
.mobilesidenav .mobilesidev .mobilemenu ul li.mobiledropdown {
    position: relative;
}

.mobilesidenav .mobilesidev .mobilemenu ul li .moibledropmenu {background: #ffdbe5;padding: 0px 0px;}
.mobilesidenav .mobilesidev .mobilemenu ul li .moibledropmenu ul {margin: 0;}

.mobilesidenav .mobilesidev .mobilemenu ul li .moibledropmenu ul li {

}

.mobilesidenav .mobilesidev .mobilemenu ul li .moibledropmenu ul li a {text-transform: capitalize;padding: 10px 30px;}

.mobilesidenav .mobilesidev .mobilemenu ul li a {
    font-size: 16px;
    border-bottom: 1px solid #afafaf;
    padding: 10px 15px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--secondry-font);
}
.mobilesidenav .mobilesidev .mobilemenu ul li:last-child a {
  border: unset;
}
.mobilesidenav .mobilesidev .mobilemenu ul li a:hover {
    color: #000;
}
.mobilesidenav .mobilesidev .mobilemenu .mobilebtns {
    padding: 0px 10px;
}

.mobilesidenav .mobilesidev .mobilemenu .mobilebtns ul {
    margin-bottom: 0;
}

.mobilesidenav .mobilesidev .mobilemenu .mobilebtns ul li {
    margin: 5px 0;
}

.mobilesidenav .mobilesidev .mobilemenu .mobilebtns ul li a {
    background: var(--primary-color);
    color: #fff;
    font-family: var(--primary-font);
    text-transform: uppercase;
    padding: 12px 25px;
    display: block;
    border-radius: 5px;
    font-size: 16px;
    transition: all .3s ease;
    text-align: center;
}
.mobilesidenav .mobilesidev .mobilemenu .mobilebtns ul li a:hover {
    background: var(--secondary-color);
}

.mobilesidenav .mobilesidev .mobilemenu ul li .moibledropmenu ul li .mobilesubmenu {
    background: var(--secondary-color);
}

.mobilesidenav .mobilesidev .mobilemenu ul li .moibledropmenu ul li .mobilesubmenu ul li a {
    color: #fff;
    padding: 10px 50px;
}

/* mobilesidenav style end */

/* gallery section style start */

.gallerysection {
    margin: 20px 0;
}

.gallerysection a {
    margin: 0 0 20px;
    position: relative;
    overflow: hidden;
}

.gallerysection a .gallerybox {
    margin: 0 0 20px;
}

.gallerysection a .gallerybox .galleryimg {}

.gallerysection a .gallerybox .galleryimg img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.gallerysection a .gallerybox .overlay-box {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0, 0);
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0,0);
    -ms-transform: scale(0,0);
    -o-transform: scale(0,0);
    transition: all 500ms ease;
}

.gallerysection a .gallerybox .overlay-box .fancybox {}

.gallerysection a .gallerybox .overlay-box .fancybox i {
    color: var(--primary-color);
    font-size: 16px;
    width: 55px;
    height: 55px;
    line-height: 55px;
    background: #fff;
    border-radius: 50%;
}

.gallerysection a:hover .gallerybox .overlay-box {
    background: #ff4b7b7a;
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1,1);
    -ms-transform: scale(1,1);
    -o-transform: scale(1,1);
    transition: all 500ms ease;
}

/* gallery section style start */

