*,
*::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: #ffffff;
}

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

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

ul {
  list-style: none;
}

header {
  position: relative;
}

.top_navbar {
  background-color: #a9cc6e;
  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;
}
.top_navbar .container {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.top_navbar .socials {
  display: flex;
  gap: 20px;
  align-items: center;
}
.top_navbar .socials img {
  transition: all 0.5s ease-in-out;
}
.top_navbar .socials img:hover {
  transform: scale(1.1);
}

.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: #00a556;
}

.header_btn {
  background-image: linear-gradient(45deg, #00a556, #a9cc6e);
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header_btn:hover {
  box-shadow: -2px -2px 24px 15px rgba(0, 165, 86, 0.3137254902);
}

.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, #00a556, #a9cc6e);
}
.social_footer a:hover {
  box-shadow: -2px -2px 24px 15px rgba(0, 165, 86, 0.3137254902);
}

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

.desc {
  font-size: 18px;
}

.hero {
  padding: 190px 0;
  background-image: url("./assets/hero_bg.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.hero .container {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  text-align: center;
  color: #ffffff;
}
.hero .hero_heading {
  font-size: 100px;
  line-height: 0.9;
}

.form {
  padding-bottom: 100px;
}
.form form {
  background-color: #00a556;
  padding: 66px;
  display: flex;
  gap: 40px;
  border-radius: 10px;
  margin-top: -10%;
}
.form form input {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #ffffff;
  padding: 10px 0;
  font-size: 16px;
  color: #ffffff;
  outline: none;
}
.form form input::-moz-placeholder {
  color: #ffffff;
}
.form form input::placeholder {
  color: #ffffff;
}
.form form button {
  padding: 16px;
  background-color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.form form button:hover {
  background-color: #a9cc6e;
}

.service {
  padding-bottom: 100px;
}
.service .service_list {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}
.service .service_item {
  width: calc(25% - 40px);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.service .service_item img {
  padding: 20px;
  background-color: #00a556;
  border-radius: 50px;
  transition: all 0.5s ease-in-out;
}
.service .service_item img:hover {
  transform: rotate(360deg);
}
.service .service_item .service_heading {
  font-size: 24px;
  font-weight: bold;
}
.service .service_item .service_desc {
  font-size: 16px;
}

.heading {
  font-size: 70px;
  line-height: 1.1;
}

.about {
  padding: 100px 0;
  background-color: #00a556;
  color: #ffffff;
}
.about h2 {
  text-align: center;
}
.about .about_content {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.about .about_left,
.about .about_right,
.about .about_left img {
  width: 100%;
}
.about .about_list {
  margin-top: 30px;
}
.about .about_list > * + * {
  margin-top: 20px;
}
.about .about_list .about_item {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 28px;
  font-weight: 500;
}

.doctor {
  padding: 100px 0;
}
.doctor .heading,
.doctor .desc {
  text-align: center;
}

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

.doctor_item {
  width: calc(33.3333333333% - 45px);
  position: relative;
  border: 3px solid #00a556;
  border-radius: 10px;
  padding: 45px 34px 34px;
  text-align: center;
}

.doc_name {
  font-size: 26px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}
.doc_name::after {
  content: "";
  width: 100px;
  height: 2px;
  background-color: #00a556;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.doc_degi {
  position: absolute;
  top: 0;
  left: 50%;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 20px;
  background-color: #00a556;
  border-radius: 10px;
  color: #ffffff;
  transform: translate(-50%, -50%);
  text-wrap: nowrap;
}

.gallery {
  padding: 100px 0;
  color: #ffffff;
  background-color: #00a556;
  text-align: center;
}
.gallery .swiper {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}
.gallery .swiper-slide img {
  width: 100%;
}

.map_section {
  padding: 100px 0;
}
.map_section .container {
  display: flex;
  gap: 20px;
}
.map_section .map_left {
  width: 480px;
}
.map_section .map_right {
  width: 100%;
}

address {
  padding: 36px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  background-color: #00a556;
  align-items: center;
  color: #ffffff;
  text-align: center;
  margin-top: 30px;
  gap: 20px;
}
address img {
  width: 62px;
}
address span {
  font-size: 18px;
  font-weight: 500;
}

.map {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  min-height: 300px;
}

.paras {
  padding: 100px 0;
  background-color: #00a556;
  color: #ffffff;
}
.paras .heading {
  text-align: center;
  text-wrap: balance;
}
.paras .desc {
  text-align: justify;
  margin-top: 10px;
}
.paras .desc a {
  text-decoration: underline;
  color: #ffffff;
  font-weight: 700;
}
.paras .desc a:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */