@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

:root {
  --primary-color: #0077b6;
  --secondary-color: #4caf50;
  --third-color: #00045f;
  --skyblue-color: #9db4e0;
  --black-color: #000;
  --white-color: #fff;
  --title-color: #161921;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
}

ul {
  list-style: none;
}

body {
  font-size: 16px;
  line-height: 28px;
  font-family: "Inter", sans-serif;
  font-weight: normal;
  color: var(--black-color);
}

h1 {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Inter", sans-serif;
}

h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Inter", sans-serif;
}

h3 {
  font-size: 30px;
  font-family: "Inter", sans-serif;
}

h4 {
  font-size: 25px;
  line-height: 28px;
  font-family: "Inter", sans-serif;
}

h5 {
  font-size: 22px;
  font-family: "Inter", sans-serif;
}

h6 {
  font-size: 20px;
  font-family: "Inter", sans-serif;
}
p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
.container {
  width: 1240px;
  margin: 0 auto;
}
/* .nav-container {
    width: 1400px;
    max-width: 90%;
    padding: 0px 74px;
    margin: 0 auto;
  } */
.img-responsive {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.flex {
  display: flex;
}
.row {
  display: flex;
  flex-direction: row;
}
.column {
  display: flex;
  flex-direction: column;
}
.space-between {
  justify-content: space-between;
}
.flex-space-between {
  justify-content: space-between;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.flex-start {
  align-items: flex-start;
}
.flex-end {
  align-items: flex-end;
}
.flex-wrap {
  flex-wrap: wrap;
}
.place-end {
  place-content: flex-end;
}
.text-center {
  text-align: center;
}
.grid {
  display: grid;
}
.grid-1-06 {
  grid-template-columns: 1fr 0.64fr;
}
.grid-2 {
  grid-template-columns: 1fr 1fr;
}
.grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.grid-1-13-1 {
  grid-template-columns: 1fr 1.3fr 1fr;
}
.overflow-hidden {
  overflow: hidden;
}
button {
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  border-radius: 5px;
}
input,
textarea {
  padding: 15px 20px;
  background: transparent;
  border-radius: 5px;
  font-size: 18px;
  font-family: "Inter" !important;
}
input::placeholder,
textarea::placeholder {
  font-family: "Inter" !important;
}
/* GAPS */
.gap-10 {
  gap: 10px;
}
.gap-15 {
  gap: 15px;
}
.gap-20 {
  gap: 20px;
}
.gap-25 {
  gap: 25px;
}
.gap-30 {
  gap: 30px;
}
.gap-40 {
  gap: 40px;
}
.gap-45 {
  gap: 45px;
}
.gap-60 {
  gap: 60px;
}
.gap-80 {
  gap: 80px;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-10 {
  padding-top: 10px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pt-20 {
  padding-top: 20px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pt-35 {
  padding-top: 35px;
}
.pt-40 {
  padding-top: 40px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pb-45 {
  padding-bottom: 45px;
}
.pt-60 {
  padding-top: 60px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pt-80 {
  padding-top: 80px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pl-80 {
  padding-left: 80px;
}
.pr-80 {
  padding-right: 80px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pb-300 {
  padding-bottom: 300px;
}
.py-60 {
  padding: 60px 0px;
}
.py-80 {
  padding: 80px 0px;
}
/* MARGINS */
.m-0-auto {
  margin: 0 auto;
}
.mt-20 {
  margin-top: 20px;
}
.mt-25 {
  margin-top: 25px;
}
.mt-35 {
  margin-top: 35px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mt-45 {
  margin-top: 45px;
}
.mt-60 {
  margin-top: 60px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mt-170 {
  margin-top: 170px;
}
.mt--120 {
  margin-top: -120px;
}
.mt--150 {
  margin-top: -150px;
}
.mt--185 {
  margin-top: -185px;
}
/* BACKGROUND-COLORS */
.radial-gradient {
  background-image: radial-gradient(#1f3050, #0f1a2e);
}
.secondary-bg {
  background: var(--secondary-color);
}
.lightblue-bg {
  background: #dee6f5;
}
.lightgrey-bg {
  background: #fafafa;
}
.p-txt {
  color: var(--primary-color);
}
/* POSITION */
.po-relative {
  position: relative;
}
/* RADIUS */
.bdr-radius-0 {
  border-radius: 0px !important;
}
.bdr-radius-5 {
  border-radius: 5px;
}
.bdr-radius-5-0-0-5 {
  border-radius: 5px 0px 0px 5px;
}
.bdr-radius-0-5-5-0 {
  border-radius: 0px 5px 5px 0px;
}
/* FONT-SIZE */
.f-16 {
  font-size: 16px !important;
}
/* WIDTHS */
.w-15 {
  width: 15px;
}
.w-60-h-48 {
  height: 48px;
  width: 60px;
}
.w-52-h-52 {
  height: 52px !important;
  width: 52px !important;
}
.w-h-60 {
  height: 60px;
  width: 60px;
}
.w-h-100 {
  height: 100px;
  width: 100px;
}
.w-100 {
  width: 100% !important;
}
.h-100 {
  height: 100% !important;
}
/* HOVER-EFFECT */
.hvr-link {
  position: relative;
}
.hvr-link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.hvr-link:hover::before {
  right: auto;
  left: 0;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.white-hvr-link {
  position: relative;
}
.white-hvr-link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--white-color);
  transition: all 0.5s ease-in-out;
}
.white-hvr-link:hover::before {
  right: auto;
  left: 0;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
/* HOVER-FLOAT */
.hvr-float {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.hvr-float:hover,
.hvr-float:focus,
.hvr-float:active {
  transform: translateY(-8px);
}
.image-effect {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.image-effect img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease-in-out;
}

.image-effect:hover img {
  transform: scale(1.04);
}
/* BUTTONS */

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 6px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: fit-content;
  transition: all 0.5s ease-in-out;
}
.primary-btn {
  border: 1px solid var(--secondary-color);
  color: var(--white-color);
  /* border: 1px solid var(--primary-color); */
  transition: all 0.5s ease-in-out;
}
.primary-btn::after {
  content: "";
  position: absolute;
  height: 110%;
  width: 160%;
  border: 1px solid var(--secondary-color);
  background: var(--secondary-color);
  transform: skewX(45deg);
  top: 0;
  left: -20%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}
.primary-btn:hover {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.primary-btn:hover::after {
  left: 130%;
  transition: all 0.5s ease-in-out;
}
.secondary-btn {
  border: 1px solid;
  color: var(--white-color);
  border: 1px solid var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.secondary-btn::after {
  content: "";
  position: absolute;
  height: 110%;
  width: 160%;
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
  transform: skewX(45deg);
  top: 0;
  left: -20%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}
.secondary-btn:hover {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.secondary-btn:hover::after {
  left: 130%;
  transition: all 0.5s ease-in-out;
}
.secondary-white-btn {
  border: 1px solid;
  color: var(--white-color);
  border: 1px solid var(--secondary-color);
  transition: all 0.5s ease-in-out;
}
.secondary-white-btn::after {
  content: "";
  position: absolute;
  height: 110%;
  width: 160%;
  border: 1px solid var(--secondary-color);
  background: var(--secondary-color);
  transform: skewX(45deg);
  top: 0;
  left: -20%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}
.secondary-white-btn:hover {
  background: var(--white-color);
  border: 1px solid var(--white-color);
  color: var(--secondary-color);
  transition: all 0.5s ease-in-out;
}
.secondary-white-btn:hover::after {
  left: 130%;
  transition: all 0.5s ease-in-out;
}
.white-btn {
  border: 1px solid;
  color: var(--black-color);
  border: 1px solid var(--white-color);
  transition: all 0.5s ease-in-out;
}
.white-btn::after {
  content: "";
  position: absolute;
  height: 110%;
  width: 160%;
  border: 1px solid var(--white-color);
  background: var(--white-color);
  transform: skewX(45deg);
  top: 0;
  left: -20%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}
.white-btn:hover {
  border: 1px solid var(--white-color);
  color: var(--white-color);
  transition: all 0.5s ease-in-out;
}
.white-btn:hover::after {
  left: 130%;
  transition: all 0.5s ease-in-out;
}

.outlinebtn {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.outlinebtn::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 200%;
  background: var(--primary-color);
  top: 0;
  left: -250%;
  z-index: -1;
  transform: skewX(45deg);
  transition: all 0.5s ease-in-out;
}
.outlinebtn:hover {
  color: var(--white-color);
  transition: all 0.5s ease-in-out;
}
.outlinebtn:hover::after {
  left: -50%;
  transition: all 0.5s ease-in-out;
}
.outlinebtn2 {
  background: var(--white-color);
  color: var(--black-color);
}
.outlinebtn2::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 200%;
  background: var(--secondary-color);
  top: 0;
  left: -250%;
  z-index: -1;
  transform: skewX(45deg);
  transition: all 0.5s ease-in-out;
}
.outlinebtn2:hover::after {
  left: -50%;
  transition: all 0.5s ease-in-out;
}

.outlinebtn2:hover {
  color: var(--white-color);
}

.outlinebtn3 {
  background: var(--white-color);
  color: var(--black-color);
}
.outlinebtn3::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 200%;
  background: var(--black-color);
  top: 0;
  left: -250%;
  z-index: -1;
  transform: skewX(45deg);
  transition: all 0.5s ease-in-out;
}
.outlinebtn3:hover::after {
  left: -50%;
  transition: all 0.5s ease-in-out;
}

.outlinebtn3:hover {
  color: var(--white-color);
}

/* top Header  Start*/
.topnav {
  background: var(--primary-color);
  padding: 5px 20px;
}

.topnav .topgrid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topnav .hedcon ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topnav .hedcon ul li a {
  color: var(--white-color);
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
}

.headsocial ul {
  display: flex;
  align-items: end;
  gap: 10px;
}

.headsocial ul a {
  color: var(--primary-color);
  width: 27px;
  height: 27px;
  background: var(--white-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* TOp Header End */

/* bottomk header Start*/
.mainnav {
  background: #ffffff;
  box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1);
  padding: 10px 0px;
}
.mainnavflex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logowrapper img {
  width: 200px;
}

.navmenu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-list li a {
  font-size: 18px;
  font-weight: 500;
}
.nav-list li a i {
  margin-left: 10px;
}

.nav-contentsdiff {
  transition: all 0.5s ease-in-out;
}
.nav-contentsdiff a {
  display: flex;
  align-items: center;
  color: var(--black-color);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}
.active {
  color: var(--primary-color) !important;
}
.nav-contentsdiff:hover a {
  color: var(--primary-color);
}
.nav-contentsdiff .dropdownmenu {
  position: absolute;
  padding: 25px;
  margin-top: 60px;
  text-align: left;
  min-width: -moz-fit-content;
  min-width: fit-content;
  border-radius: 5px;
  background: var(--white-color);
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.08);
  list-style: none;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.nav-contentsdiff .dropdownmenu li {
  transition: all 0.5s ease-in-out;
  padding-bottom: 15px;
}
.nav-contentsdiff .dropdownmenu li a {
  font-size: 16px;
  color: var(--black-color);
  border: none;
  padding: 0;
  transition: all 0.5s ease-in-out;
}
.nav-contentsdiff .dropdownmenu li a .flag {
  background: #f1f1f1;
  padding: 4px;
  border-radius: 3px;
}
.nav-contentsdiff .dropdownmenu li:hover a {
  color: var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.nav-contentsdiff .dropdownmenu li:nth-last-child(1) {
  padding-bottom: 0px;
}
.nav-contentsdiff:hover a .drop {
  filter: invert(0) brightness(1);
  transition: all 0.5s ease-in-out;
}
.nav-contentsdiff:hover .dropdownmenu {
  margin-top: 10px;
  opacity: 1;
  z-index: 99;
  visibility: visible;
  transition: all 0.5s ease-in-out;
}
.nav-contentsdiff .submenu {
  position: absolute;
  left: 100%;
  padding: 15px;
  border-radius: 5px;
  background: var(--white-color);
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.08);
  width: max-content;
  margin-top: -50px;
  list-style: none;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}
.nav-contentsdiff li:hover > .submenu {
  opacity: 1; /* Show on hover */
  visibility: visible; /* Show on hover */
}
/* Additional styles for submenu items */
.nav-contentsdiff .submenu li {
  padding: 10px 0;
}
.nav-contentsdiff .submenu li a {
  font-size: 16px;
  color: var(--black-color) !important;
}
.nav-contentsdiff .submenu li:hover a {
  color: var(--primary-color) !important;
}
.angle-right {
  font-size: 14px;
}
/* bottomk header End*/

/* Banner Start */
.bannersection {
  padding: 120px 0px 0px 0px;
}
.bannergrid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
}
.bannersmalltitle {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bannersmalltitle img {
  width: 30px;
}
.bannersmalltitle p {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
}
.leftbanner {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  padding-right: 80px;
  padding-bottom: 40px;
}
.leftbanner h1 {
  color: var(--white-color);
  margin: 10px 0px 15px 0px;
}

.bannercontent p {
  font-size: 18px;
  color: var(--white-color);
}

.bannerbtn {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.rightbanner {
  display: flex;
  align-items: end;
}

.sticky {
  position: sticky;
  top: 0px;
  z-index: 9999;
}
/* Banner End */

/* About Us Start */

.aboutgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.aboutgrid .leftabout img {
  border-radius: 8px;
}

.aboutgrid .rightabout h2 {
  margin-bottom: 20px;
}

.aboutgrid .rightabout p {
  margin-bottom: 20px;
}
.aboutgrid .rightabout p:last-child {
  margin-bottom: 0px;
}

.smalltitle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.smalltitle img {
  width: 25px;
}
.smalltitle p {
  color: var(--secondary-color);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0px !important;
}
/* About Us End */

/* Service start */

.servicesection {
  position: relative;
  z-index: 1;
  margin-bottom: -7px;
}

.servicesection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bluebg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: -1;
}
.sectiontitlewrapp {
  width: 800px;
  margin: auto;
  text-align: center;
}

.titlewrapp {
  margin-bottom: 20px;
}

.propswrapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.propswrapp img {
  width: 30px;
}

.propswrapp span {
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
}

.servicegrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.servicegrid .servicebox {
  background: var(--white-color);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.servicegrid .servicebox img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
}

.servicegrid .servicebox .servicecontent {
  padding: 20px;
}
.servicegrid .servicebox .servicecontent h5 {
  margin-bottom: 15px;
}
.servicegrid .servicebox .servicecontent a {
  margin-top: 20px;
}

.btncenter {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
/* Service End */

/* Form Section Start */
.formsection {
  position: relative;
  z-index: 1;
}

.formsection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #05c18e;
  opacity: 0.9;
  z-index: -1;
}

.formsection .formgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.formwrap {
  padding: 50px;
  background: var(--white-color);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.formwrap input,
.formwrap textarea,
.formwrap select
{
  border-radius: 5px;
  width: 100%;
  border: 1px solid #eaeaea;
  padding: 15px 30px 15px 30px;
  margin-bottom: 20px;
  color: #7a7a7a;
}

.formwrap input::placeholder,
.formwrap textarea::placeholder {
  font-size: 15px;
  color: #7a7a7a;
}

.formwrap a {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sechduledetail {
  padding: 50px 0px;
}

.sechduledetail .smalltitle p {
  color: var(--white-color);
}
.sechduledetail h2 {
  font-size: 45px;
  margin-bottom: 20px;
  margin-top: 15px;
  color: var(--white-color);
}
.sechduledetail .connum {
  color: var(--white-color);
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}
.sechduledetail p {
  color: var(--white-color);
  margin-bottom: 10px;
}

.sechduledetail .timeitems {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--white-color);
}

.sechduledetail .timeitems .timeitemswrapp {
  width: 460px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 10px 0px;
}

.sechduledetail .timeitems p {
  color: var(--white-color);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Form Section End */

/* Doctor section start */

.doctorwrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.doctorwrapper .doctorbox {
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}

.doctorwrapper .doctorbox img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom: 5px solid var(--secondary-color);
}

.doctorwrapper .doctorbox .doctorsocial {
  display: flex;
  gap: 10px;
  align-items: center;
 margin-top: 5px;
}

.doctorwrapper .doctorbox .doctorsocial a {
  color: var(--white-color);
  width: 27px;
  height: 27px;
  background: var(--secondary-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctorwrapper .doctorbox .doctordetail {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  padding: 20px;
}
.doctordetail p 
{
	text-align: center;
}

/* Doctor section End */

/* stiry section start */

.video-module {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 8px;
  background: var(--white-color);
  overflow: hidden;
}
.video-module a {
  display: block;
}
.video-module .details {
  padding: 20px;
}
.video-module .img-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 100%;
}
.video-module .img-wrapper .img-responsive {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.video-module .img-wrapper .play-icon {
  height: 50px;
  width: 50px;
  position: absolute;
  z-index: 1;
}
.video-module.overlayed .img-wrapper::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: #000000;
  opacity: 0.45;
}
.video-module:hover .img-responsive {
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}

.patientstorysection .swiper {
  padding-bottom: 50px;
  overflow: hidden;
  width: calc(100% + 30px);
  margin: 0 -15px;
  position: relative;
}

.video-swiper {
  margin-top: 30px !important;
}

.video-swiper .swiper-slide {
  padding: 15px;
}
.video-swiper .video-module {
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
.video-swiper .swiper-pagination {
  bottom: 0;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.swiper-pagination-bullet {
  background: #bcbcbc;
  opacity: 1;
  height: 12px;
  width: 12px;
  transition: all 0.5s ease-in-out;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  height: 35px;
  width: 35px;
  border: 1px solid var(--secondary-color);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  background: var(--secondary-color);
  border-radius: 100%;
}

.video-swiper a {
  color: var(--black-color);
}
/* Story section End */

/* Testimonials Section Start */
.testimonialsection {
  background: #eaf0ff;
  overflow: hidden;
  position: relative;
}
.heroimg {
  position: absolute;
  width: 500px;
  bottom: 0px;
  right: 14px;
  z-index: 2;
}

.prop {
  position: absolute;
  top: 55px;
  left: 253px;
  width: 80px;
  opacity: 0.5;
  z-index: 2;
  animation: upDown 3s infinite ease-in-out;
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* Move up */
  }
  100% {
    transform: translateY(0); /* Back to original */
  }
}
.eyeprop {
  position: absolute;
  bottom: 13px;
  left: 58px;
  width: 380px;
  z-index: 2;
  animation: zoomInOut 3s infinite ease-in-out;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); /* Zoom in */
  }
  100% {
    transform: scale(1); /* Zoom out */
  }
}
.testimonialsection .swiper {
  padding-bottom: 75px;
  overflow: hidden;
  width: calc(100% + 30px);
  /* margin: 0 -15px; */
  position: relative;
}

.testimonialdetail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 550px;
  margin: auto;
}

.testimonialdetail img {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  border: 5px solid var(--secondary-color);
}

.testimonialdetail p {
  text-align: center;
}

.testi-swiper {
  margin-top: 40px;
}

/* Testimonials Section End */

/* Blogs Start */
.bloggrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.bloggrid .blogbox {
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}

.bloggrid .blogbox img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
}

.bloggrid .blogbox .blogcontent {
  padding: 20px;
}

.bloggrid .blogbox .blogcontent h6 {
  margin-bottom: 10px;
}
.bloggrid .blogbox .blogcontent a {
  margin-top: 20px;
}

.bloggrid .blogbox .blogcontent .date {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.bloggrid .blogbox .blogcontent .date p {
  font-size: 14px;
  color: #848282;
}
.bloggrid .blogbox .blogcontent .date i {
  font-size: 15px;
  color: var(--primary-color);
}
/* Blogs End */

/* Footer Start */

.footermid {
  padding: 250px 0px 60px 0px;
}

.footergrid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 30px;
}

.footergrid .footlogo img {
  width: 220px;
  margin-bottom: 10px;
}

.footergrid .footlogo p {
  color: var(--white-color);
  margin-bottom: 10px;
}

.footergrid .footersocial ul li a {
  color: var(--white-color);
  display: flex;
  gap: 10px;
  align-items: center;
}

.footergrid .footersocial ul {
  display: flex;
  align-items: end;
  gap: 10px;
}

.footergrid .footersocial ul a {
  color: var(--primary-color);
  width: 27px;
  height: 27px;
  background: var(--secondary-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quiclink {
  padding-left: 60px;
}
.quiclink h5 {
  margin-bottom: 20px;
  color: var(--white-color);
}
.quiclink ul li a {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--white-color);
  margin-bottom: 10px;
}

.quiclink ul li a i {
  margin-right: 10px;
  font: 14px;
}

.quiclink.footcon ul li a {
  display: flex;
  align-items: start;
}
.quiclink.footcon ul li a i {
  margin-right: 15px;
  margin-top: 3px;
  font-size: 16px;
	margin-top: 7px;
}
.quiclink.footcon {
  padding-left: 0px;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: var(--secondary-color);
  padding: 6px 0px;
  color: var(--white-color);
  font-size: 14px;
}

.copyright a {
  color: var(--white-color);
  font-size: 14px;
}

.footertopwrapp {
  padding: 40px 40px 0px 40px;
  background: var(--secondary-color);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  position: relative;
  z-index: 1;
}

.footertopwrapp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/pattern.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
  z-index: -1;
  mix-blend-mode: multiply;
  border-radius: 12px;
}

.footertopwrapp .lapcontent {
  color: var(--white-color);
  padding-right: 132px;
  padding-bottom: 40px;
}

.footertopwrapp .lapcontent h2 {
  margin-bottom: 20px;
}
.footertopwrapp .lapcontent a {
  margin-top: 20px;
}
.footertopwrapp .lapimg {
  display: flex;
  align-items: end;
  justify-content: end;
}
.footertopwrapp .lapimg img {
  width: 355px;
  margin-top: -140px;
}

.footertop {
  margin-bottom: -175px;
  margin-top: 60px;
}

/* Footer End */

.mobile-view {
  display: none;
  background: var(--white-color);
  /* box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.08); */
  /* position: fixed; */
  /* padding: 5px 0px; */
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  transition: all 0.5s ease-in-out;
}
.mobile-menu {
  display: none;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 99;
  align-items: center;
  padding: 5px 0px;
}
.slidein-menu {
  display: none;
}

/* About Start  */
/* .pagebanner {
  padding: 120px 0px;
} */

.bannerimg {
  background: url("../images/eyebanne.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pagebannercontent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pagebannercontent h1 {
  color: var(--white-color);
}

#breadcrumbs span {
  color: var(--white-color);
}
#breadcrumbs span a {
  color: var(--white-color);
}

/* .ourmissionwrapp {
  padding: 40px;
  border-radius: 10px;
  background: var(--white-color);
  width: 50%;
  margin-right: auto;
  text-align: center;
} */

.ourmissionwrapp {
  padding: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1); /* semi-transparent */
  backdrop-filter: blur(10px); /* glass effect */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* subtle shadow */
  width: 50%;
  margin-right: auto;
  text-align: center;
  /* border: 1px solid rgba(255, 255, 255, 0.3);  */
  border: 1px solid rgba(255, 255, 255, 0.3); /* frosted border */
  columns: var(--white-color);
}

.sectiontitlewrapp2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white-color);
}

.sectiontitlewrapp2 span {
  background: var(--white-color);
}

.ourmissionwrapp p {
  color: var(--white-color);
}

.mbltopnav {
  display: none;
}

/* About End */

/* RESET */
/*PAGINATION STYLING HERE*/
.pagged {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pagged a {
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 100%;
  background: #ebebeb;
  color: #1c1c1c;
  font-size: 20px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  position: relative;
}
.pagged a:hover {
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, #0076b4, #0076b4);
}
.page-numbers.current {
  color: #fff;
  display: inline-block;
  border-radius: 100%;
}
.pagged span {
  padding: 10px 20px !important;
  background: linear-gradient(180deg, #0076b4, #0076b4);
  color: #fff;
  display: none;
}
.next.page-numbers {
  padding: 15px 20px !important;
  /* background: linear-gradient(180deg, #FC2C2C, #E50000); */
  background: #ebebeb;
  color: #1c1c1c;
  font-size: 16px;
  float: none;
}
.prev.page-numbers {
  padding: 15px 20px !important;
  /* background: linear-gradient(180deg, #FC2C2C, #E50000); */
  background: #ebebeb;
  color: #1c1c1c;
  font-size: 16px;
  float: none;
}
/*PAGINATION STYLING HERE*/

/* Contact Start */
.contactboxgrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.contactboxgrid .contactbox {
  padding: 30px;
  border-radius: 10px;
  color: var(--black-color);
  background: var(--white-color);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  border-bottom: 5px solid var(--secondary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contactboxgrid .contactbox i {
  height: 60px;
  width: 60px;
  color: var(--white-color);
  border-radius: 50%;
  background: var(--secondary-color);
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.contactboxgrid .contactbox p {
  text-align: center;
}

.contactbox.emailaddress {
  background: var(--secondary-color);
  border-bottom: 5px solid var(--secondary-color);
  color: var(--white-color);
}

.contactbox.emailaddress i {
  background: var(--white-color);
  color: var(--secondary-color);
}

.contactgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contactleft p {
  margin: 20px 0px;
}

.map iframe {
  border-radius: 12px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}

.contactright .formwrap {
  border-radius: 10px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
.contactright .formwrap h3 {
  margin-bottom: 20px;
}

.contactpage {
  position: relative;
  z-index: 1;
}

.contactpage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/contactbg.svg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: -1;
}
/* Contact End */

/* Single Start */
.singlegrid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.rightsingle .formwrap {
  padding: 30px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: sticky;
  top: 110px;
}
.rightsingle .formwrap h4 {
  margin-bottom: 20px;
}
.leftsingle .img-responsive {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 10px;
}
.leftsingle h2 {
  margin: 20px 0px;
}

.leftsingle p {
  margin-bottom: 20px;
}

.menus_2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prvnext {
  margin-top: 20px;
}
.prv,
.nxt {
  font-size: 20px;
  color: var(--secondary-color);
}

.relatedpost {
  position: relative;
  z-index: 1;
}

.relatedpost::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/contactbg.svg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: -1;
}

/* Single End */

/* Extra */
.servicesection.servicepage {
  background: var(--white-color);
}
.servicesection.servicepage::before {
  background-image: none;
}

.pagged {
  margin-top: 40px;
}

.servicegrid.servicepage {
  margin-top: 0px;
}

.bloggrid.blogpage {
  margin-top: 0px;
}

.footerstickymenu {
  display: none;
}
.copyright-mbl {
  display: none;
}

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

.rightsingle  .inputgrid 
{
	display: grid;
	grid-template-columns: 1fr;
	gap: 0px;
}

.formbottomgrid 
{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 30px;
	
	margin-bottom: 20px;
}

.formbottomwrapp 
{
	padding: 10px 15px;
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px solid #000000;
	color: #000000;
	border-radius: 6px;
}

.formbottomwrapp img 
{
	height: 30px;
	width: 30px;
}

.cashbtn 
{
	display: flex;
	align-items: center;
	justify-content: center;
}
/* Extra */

@media (max-width: 1300px) {
  .container {
    width: 95%;
  }
}
@media (max-width: 1200px) {
}
@media (max-width: 1024px) {
  .mblnavbar {
    background: var(--white-color);
    box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0px;
    z-index: 9999;
  }
  .topnavoff {
    display: none;
  }

  .topnav {
    padding: 5px 0px;
  }

  .mainnav {
    display: none;
  }
  .desktopmenu {
    display: none;
  }
  .mobile-view {
    display: block;
  }
  .mobile-menu {
    display: block;
  }
  .slidein-menu {
    display: block;
  }
  .logo-wrap img {
    width: 150px;
  }

  .slidein-logo img {
    width: 170px;
  }
  .ham-btn {
    height: 30px;
    width: 30px;
    right: 5px;
    top: 4px;
    position: relative;
    cursor: pointer;
  }
  .ham-btn span {
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background: var(--primary-color);
    display: block;
  }
  .ham-btn span:nth-child(1) {
    top: 2px;
    width: 80%;
    right: -5px;
  }
  .ham-btn span:nth-child(2) {
    top: 11px;
    right: -5px;
  }
  .ham-btn span:nth-child(3) {
    bottom: 7px;
    right: -5px;
    width: 135%;
  }
  .slidein-menu {
    position: fixed;
    width: 400px;
    height: 100%;
    background: var(--white-color);
    top: 0;
    left: -120%;
    padding: 20px 40px;
    box-sizing: border-box;
    transition: all 0.5s ease-in-out;
    z-index: 99;
  }
  .slidein-menu.open {
    left: 0;
    transition: all 0.5s ease-in-out;
  }
  nav {
    min-height: auto;
  }
  .ham-btn.cross span {
    background: var(--primary-color);
  }
  .ham-btn.cross span:nth-child(2) {
    display: none;
  }
  .ham-btn.cross span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
    right: 0;
    width: 100%;
  }
  .ham-btn.cross span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: auto;
    top: 10px;
    right: 0;
    width: 100%;
  }
  .nav-bdr-btm {
    margin-top: 20px;
    width: 100%;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    height: 2px;
  }
  .slidein-menu .m-nav-bar .m-menu-list li:first-child {
    padding-top: 0;
  }
  .slidein-menu .m-nav-bar {
    margin-top: 20px;
  }
  .slidein-menu .m-nav-bar .m-menu-list li {
    position: relative;
    padding-top: 12px;
  }
  .m-menu-list li a {
    color: var(--black-color);
    display: block;
    line-height: 2;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.5s ease-in-out;
  }
  .m-menu-list li a:hover {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    width: fit-content;
    transition: all 0.5s ease-in-out;
  }
  .sidebar-menu {
    color: var(--black-color);
    transition: all 0.5s ease-in-out;
  }
  .sidebar-menu:hover .expand i {
    color: var(--primary-color);
    transition: all 0.5s ease-in-out;
  }
  .sub-menu {
    display: none;
    color: var(--black-color);
  }
  .sub-menu ul li {
    padding-top: 5px !important;
  }
  .sub-menu ul li a {
    font-size: 16px;
    margin-left: 15px;
  }
  .sub-sub-menu {
    display: none;
  }
  .expand i {
    color: var(--black-color);
  }
  .expand1 {
    line-height: 3;
    font-weight: 500;
  }

  .flex-space-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 24px;
    line-height: 28px;
    font-family: "Inter", sans-serif;
  }

  h5 {
    font-size: 20px;
    font-family: "Inter", sans-serif;
  }

  h6 {
    font-size: 20px;
  }

  .py-80 {
    padding: 40px 0px;
  }

  .container {
    width: 100%;
    padding: 0px 20px;
  }

  .aboutgrid {
    gap: 30px;
  }

  .servicegrid {
    margin-top: 30px;
  }

  .doctorwrapper {
    margin-top: 30px;
  }

  .sechduledetail h2 {
    font-size: 35px;
  }

  .sechduledetail .connum {
    font-size: 20px;
  }

  .video-swiper {
    margin-top: 20px !important;
  }

  .bloggrid {
    margin-top: 30px;
  }

  .pt-80 {
    padding-top: 40px;
  }

  .mbltopnav {
    display: block;
  }
  /* 
  .mbltopnav.topnavnone {
    display: none;
  } */

  .heroimg {
    width: 280px;
  }

  .eyeprop {
    width: 240px;
  }
}

@media (max-width: 950px) {
  .servicegrid {
    grid-template-columns: 1fr 1fr;
  }

  .doctorwrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .bloggrid {
    grid-template-columns: 1fr 1fr;
  }

  .footergrid {
    grid-template-columns: 1fr 1fr;
  }

  .quiclink {
    padding-left: 0px;
  }

  .heroimg {
    display: none;
  }

  .eyeprop {
    width: 200px;
  }

  .prop {
    left: 700px;
  }
}

@media (max-width: 850px) {
  .bannergrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .leftbanner {
    padding-right: 0px;
    padding-bottom: 0px;
  }

  .sectiontitlewrapp {
    width: 100%;
  }

  .aboutgrid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .doctorwrapper {
    grid-template-columns: 1fr 1fr;
  }

  .formsection .formgrid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sechduledetail {
    padding: 0px 0px;
  }

  .item-1 {
    order: 1;
  }
  .item-2 {
    order: -1;
  }

  .footertopwrapp .lapcontent {
    padding-right: 0px;
    padding-bottom: 40px;
  }

  .contactgrid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contactboxgrid {
    grid-template-columns: 1fr 1fr;
  }

  .rightsingle .formwrap {
    position: static;
  }

  .singlegrid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
	
	.formbottomgrid 
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	
	margin-bottom: 20px;
}
	
	.cashbtn 
	{
		margin-bottom: 30px;
	}
}

@media (max-width: 650px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
    line-height: 28px;
    font-family: "Inter", sans-serif;
  }

  h5 {
    font-size: 20px;
    font-family: "Inter", sans-serif;
  }

  h6 {
    font-size: 18px;
  }

  .servicegrid {
    grid-template-columns: 1fr;
  }

  .bloggrid {
    grid-template-columns: 1fr;
  }

  .footertopwrapp {
    grid-template-columns: 1fr;
  }

  .footertopwrapp .lapimg img {
    margin-top: 0px;
  }

  .footergrid {
    grid-template-columns: 1fr;
  }

  .topnav .topgrid .headsocial {
    display: none;
  }

  .topnav .topgrid {
    justify-content: center;
  }

  .footertop {
    margin-bottom: -175px;
    margin-top: 0px;
  }

  .footermid {
    padding: 220px 0px 30px 0px;
  }

  .bannersection {
    padding: 80px 0px 0px 0px;
  }

  .ourmissionwrapp {
    width: 100%;
  }
  .contactboxgrid {
    grid-template-columns: 1fr;
  }

  .prv,
  .nxt {
    font-size: 16px;
  }

  .footerstickymenu {
    display: block;
    background: var(--secondary-color);
    padding: 10px 0px;
    position: sticky;
    bottom: 0px;
    z-index: 9999;
  }

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

  .menubox {
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    gap: 5px;

    align-items: center;
    justify-content: center;
  }

  .menubox img {
    width: 40px;
    height: 40px;
  }
  .menubox p {
    font: 17px;
    font-weight: 600;
  }

  .copyright {
    display: block;
    flex-direction: column;
    font-size: 13px;
    text-align: center;
  }

  /* .copyright-mbl {
  } */
	
	.bannerbtn .outlinebtn2
	{
		display: none;
	}
	
.inputgrid 
{
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
	
		.formbottomgrid 
{
	grid-template-columns:1fr;
}
}

@media (max-width: 550px) {
  .doctorwrapper {
    grid-template-columns: 1fr;
  }

  .prop {
    display: none;
  }

  .eyeprop {
    display: none;
  }

  .testimonialdetail {
    width: 370px;
    margin-left: 20px;
  }
  .sechduledetail .timeitems .timeitemswrapp {
    width: 100%;
  }

  .formwrap {
    padding: 30px;
  }

  .footertopwrapp .lapcontent {
    padding-right: 0px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bannercontent p {
    font-size: 16px;
    color: var(--white-color);
  }

  .sechduledetail h2 {
    font-size: 30px;
  }

  .footertopwrapp .lapimg img {
    width: 300px;
  }
  .menubox img {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

@media (max-width: 425px) {
  .footertopwrapp .lapimg img {
    width: 250px;
  }

  .topnav .hedcon ul li a {
    font-size: 13px;
  }

  .sechduledetail .timeitems p {
    font-size: 16px;
  }

  .testimonialdetail {
    width: 370px;
    margin-left: 0px;
  }
}
