/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: #9e0136;
  --first-color-alt: hsl(358, 54%, 46%);
  --first-color-light: hsl(358, 50%, 58%);
  --title-color: hsl(34, 8%, 16%);
  --text-color: hsl(34, 8%, 40%);
  --white-color: hsl(34, 64%, 98%);
  --gray-color: hsl(34, 8%, 85%);
  --body-color: #f8f7f3;
  --body-color-alt: hsl(34, 70%, 88%);
  --container-color: hsl(34, 32%, 98%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --second-font: "Lora", serif;
  --biggest-font-size: 2rem;
  --bigger-font-size: 1.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (width >=1150px) {
  :root {
    --biggest-font-size: 3.5rem;
    --bigger-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body,
input,
button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
}

input,
button {
  border: none;
  outline: none;
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--second-font);
}

ul {
  list-style: none;
  padding-left: 0;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
/* .container {
  max-width: 1120px;
  margin-inline: 1rem;
} */

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding: 70px 0;
}

.section__title {
  text-align: center;
  font-size: var(--bigger-font-size);
  margin-bottom: 1rem;
}

.section__title span {
  color: var(--first-color);
}

.section__subtitle {
  display: block;
  text-align: center;
  font: var(--font-semi-bold) var(--small-font-size) var(--second-font);
  color: var(--first-color);
  margin-bottom: .5rem;
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: transparent;
  z-index: var(--z-fixed);
  transition: box-shadow .4s;
  padding: 8px 0;
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav_logo {
  max-width: 160px;
}

.nav_toggle {
  width: 32px;
  height: 32px;
  background-color: var(--first-color);
  color: var(--white-color);
  border-radius: .5rem;
  display: grid;
  place-items: center;
  font-size: 16px;
  cursor: pointer;
}

.nav_link {
  color: #fff;
  font-weight: 500;
  transition: color .4s;
  font-size: 14px;
}

.nav_link:hover {
  color: var(--first-color);
}

.header .main_btn {
  display: flex;
  gap: 8px;
}

.header .main_btn i {
  font-size: 20px;
}


/* Navigation for mobile devices */
@media screen and (width <=1150px) {
  .nav_menu {
    position: fixed;
    top: -120%;
    left: 0;
    width: 100%;
    background-color: var(--body-color);
    box-shadow: 0 8px 16px hsla(0, 0%, 0%, .15);
    padding-block: 4rem;
    border-radius: 0 0 50px 50px;
    transition: top .4s;
  }

  .nav_list {
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
  }

  .nav_close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    display: inline-flex;
    font-size: 1.5rem;
    color: var(--title-color);
    cursor: pointer;
  }

}



/* Show menu */
.show-menu {
  top: 0;
}

.scroll-header {
  background: #fff;
  box-shadow: 0 4px 16px hsla(0, 0%, 0%, .1);
}

.scroll-header .nav_link {
  color: #000;
}

.main_btn {
  display: inline-block;
  background: var(--first-color);
  color: var(--white-color);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: var(--font-semi-bold);
  border-radius: 50px;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: .5px;
}

.main_btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* .call_btn {
  background: #000;
} */

.whatsapp_btn {
  background: #25D366;
  color: #fff;
}
.whatsapp_btn:hover {
  background: #20bd5a;
  color: #fff;
}


/* Change header styles */


/* Active link */

.page_banner {
  position: relative;
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../img/page_banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page_banner .container {
  width: 100%;
  /* max-width: 1200px; */
  margin: auto;
  padding: 0 20px;
}

.banner_content {
  color: #fff;
}

.banner_content h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 15px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

.breadcrumb span {
  margin: 0 5px;
}

.breadcrumb a:hover {
  opacity: 1;
}


/*=============== HOME SECTION ===============*/
.home {
  background: url(../img/hero-banner-2.webp);
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  padding-top: var(--header-height);
  position: relative;
}

.home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  /* Adjust opacity here */
  z-index: 1;
}

.home_content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  /* max-width: 50%; */
}

.home_content h1 {
  font-size: 48px;
  font-weight: var(--font-semi-bold);
  color: #fff;
}

.home_content p {
  font-size: 16px;
  font-weight: var(--font-regular);
  color: #fff;
  line-height: 1.8;
}

.booking_form {
  max-width: 600px;
  margin: 2rem auto 0;
  padding: 2.5rem;
  border-radius: 1.5rem;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);

  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking_form .grid_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form_group input,
.form_group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: .75rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: var(--normal-font-size);
  transition: all .3s ease;
}

.form_group input:focus,
.form_group textarea:focus {
  box-shadow: none;
  outline: none;
}


.form_group input::placeholder,
.form_group textarea::placeholder {
  font-size: 12px;
  color: #fff;
}

/*=============== BUTTON ===============*/



/* ABOUT SECTION */
.about_section {
  background: #fff;
}

.about_section .grid_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about_section .about_image .flex_col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.about_section .about_image {
  display: flex;
  gap: 20px;
  max-width: 100%;
  overflow: hidden;
}

.about_section .about_image img {
  object-fit: cover;
}

.about_section .item {
  text-align: center;
  width: 150px;
  background-color: #f6f6f6;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all .3s;
}

.about_section .item.active {
  background: linear-gradient(135deg, #01458E, #0266C8);
  color: #fff;
}

.about_section .item.active .icon img {
  filter: invert(100%) brightness(200%);
}

.about_section .item .icon {
  width: 40px;
  height: 40px;
  margin: 0px auto 10px;
}

.about_section .item .icon img {
  border-radius: 0;
}

.about_section .item h2 {
  font-size: 28px;
  margin-bottom: 0;
}

.about_section .item p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}


.main_heading {
  font-size: 40px;
  font-weight: var(--font-semi-bold);
  color: #000;
  margin-bottom: 16px;
}

.about_section .about_content h6 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--primary-color);
  background: #E5E0F6;
  padding: 4px 12px;
  width: fit-content;
  margin-bottom: 16px;
}



/* services */

.services {
  background: #f7fafc;
}

.services .grid_row {
  display: grid;
  grid-template-columns: 30% 65%;
  gap: 50px;
  /* align-items: center; */
}

.services .content h6 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--primary-color);
  background: #E5E0F6;
  padding: 4px 12px;
  width: fit-content;
  margin-bottom: 16px;
}



/* .services .content{
  color: #fff;
} */
/* .services .content .main-btn{
  background: #fff !important;
  color: var(--primary-color) !important;
} */
.services .service_boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.services .service_item {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  border: .5px solid var(--first-color);
}

.services .service_icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #01458E, #0266C8);
  padding: 16px;
  border-radius: 50px;
}

.services .service_icon img {
  width: 100%;
  height: 100%;
  filter: invert(100%) brightness(200%);
}

.services .service_name {
  font-weight: 600;
}

.services .service_desc {

  font-size: 14px;
}


.services .read_more {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 70px;
  height: 70px;
  background: #E8F1FA;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.services .read_more i {
  background-color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transform: rotate(-45deg);
  color: #000;
}

.services .readmore_btn {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #000;
  font-weight: 500;
}





.treatments {
  background: #fff;
}

.treatments .eventSwiper {
  padding: 80px 10px;
}

.treatments .swiper-slide {
  box-shadow: var(--primary-shadow);
  /* height: 450px; */
  border-radius: 10px;
  overflow: hidden;
  border: .5px solid var(--first-color);
  background: #fff;
}

.treatments .treatment_details {
  padding: 10px;

}

.treatments .treatment_name {
  font-size: 18px;
  margin: 8px 0;
  font-weight: 600;
}

.treatments .treatment_desc {
  font-size: 14px;
  font-weight: 400;
  height: 100px;
}

.treatments .treatment_image {
  width: 100%;
  height: 100%;
}

.treatments .treatment_image img {
  width: 100%;
  height: 100%;
}

.treatments .swiper-wrappper {
  position: relative;
}

.treatments .swiper-button-next {
  position: absolute;
  top: 30px;
  right: 10px;
  background-color: var(--first-color);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.169);
  padding: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  color: #fff;
}

.treatments .swiper-button-prev {
  background-color: var(--first-color);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.169);
  padding: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  position: absolute;
  top: 30px;
  left: 90%;
  color: #fff;
}

.treatments .swiper-button-next:after,
.treatments .swiper-button-prev:after {
  font-size: 20px !important;
  font-weight: 900 !important;
}


.treatments.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
  width: 10px !important;
  height: 10px;
  border-radius: 10px;
  background-color: var(--first-color);
}

.treatments.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 20px;
  height: 4px;
  border-radius: 10px;
}



/*=============== certificate SECTION ===============*/
.certificate_section {
  background: #f2f2f2;
  padding: 80px 0;
}

.certificate_section .grid_row {
  display: grid;
  grid-template-columns: 40% 55%;
  gap: 50px;
}

.certificate_section .flex_row {
  display: flex;
  align-items: center;
  gap: 20px;
}



/*=============== CONTACT SECTION ===============*/

.how_it_work {
  background: #f2f2f2;
}

.how_it_work .grid_row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card Item */
.how_it_work .item {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  /* text-align: center; */
  transition: 0.3s ease;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
  margin-bottom: 0;
  max-height: 280px;
}

.how_it_work .item.m-top {
  margin-top: 80px;
}

/* Hover Effect */
.how_it_work .item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Icon Style */
.how_it_work .icon {
  /* width: 70px;
  height: 70px; */
  margin: 0 0 20px;
  border-radius: 16px;
  /* background: #9e0136; */
  display: flex;
  align-items: center;
  /* justify-content: center; */
}

.how_it_work .icon i {
  font-size: 48px;
  color: var(--first-color);
}

/* Heading */
.how_it_work h6 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a202c;
}

/* Paragraph */
.how_it_work p {
  font-size: 15px;
  color: #718096;
  line-height: 1.6;
}






.review_sec {
  background: #f2f2f2;
}

.review_sec__no-text {
  text-align: center;
  color: #6c757d;
  font-size: 15px;
  padding: 40px 0 50px;
  margin: 0;
}

.review_sec .reviewSwiper {
  padding: 50px 0;
}

.review_sec .reviewSwiper[data-single="1"] .swiper-slide {
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.review_sec .review_card {
  /* background: #ffffff; */
  border: 1px solid #0D343521;
  padding: 35px 30px;
  border-radius: 20px;
  /* box-shadow: 0 15px 40px rgba(0,0,0,0.05); */
  transition: 0.3s ease;
  height: 250px;

}

.review_sec .review_card:hover {
  transform: translateY(-8px);
}

.review_sec h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}

.review_sec span {
  display: block;
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 8px;
}

.review_sec .stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 8px;
}

.review_sec p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}




.doctor_profile {
  background: #fff;
}

.profile_wrapper {
  display: flex;
  gap: 60px;
}

.profile_image {
  flex: 1;
}

.profile_image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.profile_content {
  flex: 1;
}

.top_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.profile_content h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 5px;
}

.designation {
  color: var(--first-color);
  font-size: 18px;
  font-weight: 500;
}

.social_icons a {
  width: 40px;
  height: 40px;
  background: #eee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 8px;
  color: #555;
  transition: 0.3s;
}

.social_icons a:hover {
  background: var(--first-color);
  color: #fff;
}

.description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Skills */
.skill {
  margin-bottom: 12px;
}

.skill_title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 600;
}

.progress_bar {
  width: 100%;
  height: 6px;
  background: #e5e5e5;
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: var(--first-color);
  border-radius: 5px;
  transition: width 1.5s ease;
}



.equipments {
  padding: 70px 0;
  /* background: #f7f9fb; */
}

.equipments__no-text {
  text-align: center;
  color: #6c757d;
  font-size: 15px;
  padding: 40px 0 50px;
  margin: 0;
}

.equipment_card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.equipments .equipments_slider {
  padding-bottom: 50px;
}

.equipment_card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.equipment_card h3 {
  padding: 18px;
  font-size: 16px;
  text-transform: capitalize;
}

.equipment_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
















.gallery {
  background: #f2f2f2;
}

.gallery .grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery .box {
  border-radius: 5px;
  overflow: hidden;
}

/*=============== FOOTER ===============*/

/* footer */
.footer {
  background: #22272b;
  color: #fff;
  padding-top: 100px;
  padding-bottom: 0;
}

.footer .footer_grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 30px;
  padding-bottom: 50px;
}

.footer .footer_logo {
  max-width: 160px;
  margin-bottom: 40px;
}

.footer .social_media_links {
  display: flex;
  gap: 12px;
}

.footer .social_media_links li {
  margin-bottom: 10px;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .social_media_links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--first-color);
  font-size: 20px;
}

.footer .footer_title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer .footer_links_flex {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.footer .footer_links_flex a {
  color: #fff;
  font-weight: 300;
}

.footer .footer_links .footer_link {
  margin-bottom: 16px;
}

.footer .footer_links .footer_link a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.footer .footer_links .footer_link a i {
  font-size: 10px;
  color: #fff;
}

.footer .contact_details .item {
  display: flex;
  align-items: start;
  gap: 8px;
}

/* .footer .contact_details .icon {
  
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  border-radius: 5px;
} */

.footer .contact_details .icon i {
  color: #fff;
}

.footer .copyright {
  display: flex;
  padding: 16px 0;
  border-top: .3px solid #ffffff81;
}

.footer .copyright p {
  margin-bottom: 0;
  font-size: 14px;
}

.footer_timing_card {
  background: linear-gradient(145deg, #1f2630, #141a22);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
}


/* Heading */
.footer_timing_card h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #fff;
}

/* Time Blocks */
.footer_timing_card .time_block {
  margin-bottom: 30px;
}

.footer_timing_card .day {
  display: block;
  font-size: 12px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.6);
}

.footer_timing_card p {
  font-size: 14px;
  font-weight: 600;
}

.footer_timing_card .off {
  font-weight: 700;
}




/*=============== SCROLL BAR ===============*/


/*=============== SCROLL UP ===============*/


/* Show Scroll Up */


/*=============== BREAKPOINTS ===============*/
/* For small devices <> */


/* For medium devices <> */


/* For large devices <> */

@media screen and (width >=1150px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(3.5rem + 2rem);
  }

  .nav_toggle,
  .nav_close {
    display: none;
  }

  .nav_list {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 2rem;
    margin-bottom: 0;
  }

}


@media screen and (max-width:1199px) {
  .nav_logo{
    max-width: 120px;
  }
  .booking_form {
    padding: 20px;
  }

  form input,
  form textarea,
  form select {
    width: 100%;
    box-sizing: border-box;

  }

  input[type="date"] {
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    height: 55px;
  }

  .booking_form .grid_row {
    grid-template-columns: 1fr;
  }
  .home_content{
    padding-top: 20px;
  }
  .about_section .grid_row{
    gap: 20px;
  }
  .treatments .swiper-button-prev{
    left: 87%;
  }
  .how_it_work .grid_row{
    gap: 16px;
  }
  .how_it_work .item{
    padding: 24px 16px;
  }
  .how_it_work h6{
    font-size: 16px;
  }
  .review_sec .review_card{
    height: 300px;
  }

  .footer .footer_grid{
    grid-template-columns: repeat(3,1fr);
  }


}


@media screen and (max-width:991px){
  .home_content{
    padding-top: 100px;
    grid-template-columns: 1fr;
  }
  .booking_form .grid_row {
    grid-template-columns: 1fr 1fr;
  }
  .about_section .grid_row{
    grid-template-columns: 1fr;
  }
  .about_section .about_image{
    order: 2;
  }
  .certificate_section .grid_row{
    grid-template-columns: 1fr;
  }
  .treatments .swiper-button-prev{
    left: 82%;
  }
  .how_it_work .grid_row{
    grid-template-columns: 1fr 1fr;
  }
  .how_it_work .item.m-top{
    margin-top: 0;
  }
  .profile_wrapper{
    flex-direction: column;
    gap: 20px;
  }
  .profile_wrapper .profile_image{
    order: 2;
  }
  .gallery .grid{
    grid-template-columns: repeat(3,1fr);
  }
  .footer .footer_grid{
    grid-template-columns: 1fr 1fr;
  }
  
}

@media screen and (max-width:600px){

  .nav_link{
    color: #000;
  }
  .header .main_btn{
    width: fit-content;
    margin: 10px auto;
  }


  .home{
    height: auto;
  }
  .home_content{
    gap: 20px;
  }
  .home_content h1{
    font-size: 32px;
  }
  .booking_form .grid_row {
    grid-template-columns: 1fr ;
  }
  .main_heading{
    font-size: 32px;
  }
  .treatments .swiper-button-prev{
    left: 68%;
  }
  .how_it_work .grid_row{
    grid-template-columns: 1fr;
  }
  .gallery .grid{
    grid-template-columns: 1fr 1fr;
  }
  .footer .footer_grid{
    grid-template-columns: 1fr;
  }
}


/* For 2K resolutions <> */