*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1212px;
  margin: 0 auto;
  padding: 0 16px;
}

body {
  overflow-x: hidden;
  background-color: #f1f1f1;
}

img {
  vertical-align: bottom;
  display: inline-block;
}

a,
button {
  text-decoration: none;
  transition: all 0.5s ease;
}

ul {
  list-style: none;
}

header {
  position: relative;
}

section {
  padding: 100px 0;
}

.top_navbar {
  background-color: #22bd58;
  padding: 10px 0;
}
.top_navbar .time {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top_navbar .time #current-time {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.header_nav {
  background-color: #ffffff;
}
.header_nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header {
  display: flex;
  align-items: center;
  gap: 60px;
}

.header_nav {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  text-transform: capitalize;
}
.header_nav:hover {
  color: #22bd58;
}

.header_btn {
  background-image: linear-gradient(45deg, #22bd58, #22bd58);
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header_btn:hover {
  box-shadow: -2px -2px 24px 15px rgba(158, 244, 181, 0.5137254902);
}

.hamburger {
  display: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000000;
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 10px 0;
  transition: all 0.5s ease-in-out;
  height: 0;
}

.mobile-nav a {
  padding: 10px;
  width: 100%;
  text-align: center;
}

.top_footer {
  padding: 90px 0;
  background-color: #ffffff;
}
.top_footer .container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social_footer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social_footer a {
  padding: 10px;
  border-radius: 100%;
  background-image: linear-gradient(45deg, #22bd58, #22bd58);
}
.social_footer a:hover {
  box-shadow: -2px -2px 24px 15px rgba(158, 244, 181, 0.5137254902);
}

.desc {
  font-size: 16px;
}

.bottom_footer {
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  background-color: #22bd58;
}

.hero {
  padding: 150px 0;
  background-image: url("./assets/hero_bg.webp");
  background-size: 100% 100%;
}
.hero .container {
  display: flex;
  align-items: center;
  gap: 120px;
}
.hero .container .left,
.hero .container .right {
  width: 100%;
}
.hero .container .right {
  max-width: 380px;
}
.hero .desc {
  margin: 20px 0 50px;
}

.heading {
  font-size: 70px;
  line-height: 1.1;
  color: #174d1b;
  text-transform: capitalize;
  text-wrap: balance;
}

.desc {
  font-size: 18px;
}

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

.hero_btn {
  font-size: 18px;
  padding: 20px 24px;
  background-color: #22bd58;
  color: #ffffff;
  border-radius: 10px;
}
.hero_btn:hover {
  background-color: #000000;
}

.hero_social {
  padding: 15px;
  border-radius: 100%;
  background-color: #22bd58;
}
.hero_social:hover {
  background-color: #000000;
}

.call_btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background-color: #ffffff;
}

.call_texts {
  display: flex;
  flex-direction: column;
}
.call_texts span:nth-child(1) {
  font-size: 18px;
  color: #22bd58;
}
.call_texts span:nth-child(2) {
  font-size: 30px;
  color: #000000;
  font-weight: 700;
}

form {
  padding: 40px;
  background-color: #ffffff;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
form input {
  padding: 15px 20px;
  border: none;
  background-color: #9ef4b5;
  outline: none;
}
form input::-moz-placeholder {
  color: #000000;
}
form input::placeholder {
  color: #000000;
}
form button {
  padding: 15px 20px;
  background-color: #22bd58;
  border: none;
  cursor: pointer;
  color: #ffffff;
}
form button:hover {
  background-color: #000000;
}

.contact_heading {
  font-size: 36px;
  font-weight: 900;
  color: #174d1b;
  display: flex;
  gap: 10px;
  align-items: center;
}
.contact_heading::before {
  content: "";
  width: 17px;
  height: 23px;
  background-color: #22bd58;
}

.doctor {
  text-align: center;
}

.desc {
  margin-top: 10px;
}

.doctor_list {
  margin-top: 20px;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.doctor_item {
  width: calc(33.3333333333% - 40px);
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
}

.doc_degi {
  font-size: 20px;
  padding: 10px 20px;
  background-color: #22bd58;
  color: #ffffff;
  display: inline-block;
  border-radius: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.doc_name {
  text-transform: capitalize;
  font-size: 48px;
  padding-bottom: 10px;
  display: inline-block;
  border-bottom: 2px solid #22bd58;
}

.time {
  margin-top: 10px;
}

.doc_info {
  text-align: center;
  font-size: 30px;
  padding: 10px;
  background-color: #22bd58;
  color: #ffffff;
  margin-top: 50px;
  text-transform: capitalize;
}

.service {
  background-color: rgba(186, 244, 205, 0.3882352941);
  text-align: center;
}

.service_ul {
  margin-top: 70px;
  display: flex;
  gap: 50px;
}

.service_li {
  width: 100%;
  border: 2px solid #9ef4b5;
  padding: 75px 28px 50px;
  border-radius: 10px;
  position: relative;
}
.service_li img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service_heading {
  font-size: 28px;
  color: #174d1b;
  font-weight: 700;
}

.service_btn {
  font-size: 18px;
  color: #ffffff;
  padding: 10px 20px;
  background-color: #22bd58;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  border-radius: 10px;
}
.service_btn:hover {
  background-color: #000000;
}

.about {
  text-align: center;
}

.subheading {
  font-size: 20px;
  font-weight: 700;
}

.about_content {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  text-align: start;
  align-items: center;
}
.about_content .left,
.about_content .about_list {
  width: 100%;
}
.about_content .left img {
  width: 100%;
}

.about_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: disc;
  margin-left: 40px;
}

.about_item {
  font-size: 20px;
}

.swiper-slide img {
  width: 100%;
  display: block;
}

.swiper-slide {
  width: 100%;
}

.swiper,
.swiper-wrapper {
  width: 100%;
}

.gallery {
  background-color: rgba(186, 244, 205, 0.3882352941);
  text-align: center;
}
.gallery .swiper {
  margin-top: 30px;
}

.paras {
  padding: 50px 0;
}
.paras .heading {
  text-align: center;
}
.paras .desc {
  text-align: justify;
}
.paras .desc a {
  color: #174d1b;
  font-weight: 700;
}
.paras .desc a:hover {
  color: #22bd58;
}

.map {
  width: 100%;
  height: 500px;
}/*# sourceMappingURL=style.css.map */