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

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: #f1e203;
  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: #000000;
}

.time img {
  filter: invert(1);
}

.header_nav {
  background-color: #ffffff;
  padding: 15px 0;
}
.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: #508908;
}

.header_btn {
  background-image: linear-gradient(45deg, #508908, #508908);
  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(79, 137, 8, 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, #508908, #508908);
}
.social_footer a:hover {
  box-shadow: -2px -2px 24px 15px rgba(79, 137, 8, 0.3137254902);
}

.desc {
  font-size: 16px;
}

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

.hero {
  padding-top: 70px;
  padding-bottom: 0;
  text-align: center;
}
.hero .container {
  position: relative;
}

.hero_social {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero_social img {
  transition: all 0.5s ease-in-out;
}
.hero_social img:hover {
  transform: rotate(360deg);
}

.book_btn {
  position: absolute;
  padding: 55px 25px;
  background-color: #f1e203;
  border-radius: 100%;
  font-size: 18px;
  font-weight: 900;
  color: #000000;
  right: 20px;
}
.book_btn:hover {
  transform: scale(1.1);
}

.hero_img {
  width: 80%;
  max-width: 730px;
}

.hero_content {
  padding: 50px 180px;
  background-color: #508908;
  border-radius: 30px 30px 0 0;
  color: #ffffff;
}

.heading {
  font-size: 60px;
  line-height: 1.1;
  text-wrap: balance;
  text-transform: capitalize;
}

.desc {
  margin-top: 10px;
  font-size: 18px;
}

.contact {
  padding: 40px 0;
  background-color: #f1e203;
}
.contact .container {
  padding: 0 40px;
}

form {
  display: flex;
  gap: 20px;
}
form button {
  width: 100%;
  padding: 30px 20px;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  background-color: #508908;
  border: none;
  color: #ffffff;
}
form button:hover {
  box-shadow: -2px -2px 24px 15px rgba(79, 137, 8, 0.3137254902);
}
form input {
  width: 100%;
  padding: 30px 20px;
  font-size: 18px;
  background-color: #f1e203;
  border: 2px solid #000000;
  border-radius: 10px;
  outline: none;
}
form input::-moz-placeholder {
  color: #000000;
}
form input::placeholder {
  color: #000000;
}

.doctor {
  text-align: center;
}

.doc_content {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.doc_content .left,
.doc_content .left img,
.doc_content .right {
  width: 100%;
}
.doc_content .right {
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.doc_degi {
  font-size: 16px;
  padding: 10px;
  background-color: #f1e203;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
}

.doc_name {
  font-size: 36px;
  text-transform: capitalize;
}
.doc_name span {
  font-size: 18px;
}

.doc_time {
  font-size: 20px;
}

.service {
  background-color: #508908;
  color: #ffffff;
  text-align: center;
}

.service_list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.service_item {
  width: calc(33.3333333333% - 23px);
  padding: 20px;
  background-color: #ffffff;
}

.service_name {
  color: #508908;
  font-size: 30px;
}

.service_desc {
  font-size: 16px;
  color: #8f8f8f;
  margin-bottom: 30px;
}

.service_anchor {
  padding: 10px 18px;
  background-color: #f1e203;
  color: #000000;
  font-size: 20px;
}
.service_anchor:hover {
  background-color: #508908;
  color: #ffffff;
}

.gallery {
  text-align: center;
}

.swiper {
  margin-top: 30px;
}

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

.location {
  background-color: #508908;
}
.location .heading {
  text-align: center;
  color: #ffffff;
}

.map {
  margin-top: 20px;
  width: 100%;
  height: 380px;
}

address {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 22px;
  background-color: #ffffff;
  padding: 40px 70px;
  border-radius: 20px;
}

.paras {
  padding: 50px 0;
}
.paras .heading {
  text-align: center;
}
.paras .desc {
  text-align: justify;
}
.paras .desc a {
  color: #508908;
  font-weight: 700;
}
.paras .desc a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */