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

.top_navbar {
  padding: 10px;
  background-color: #158038;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}
@media (max-width: 768px) {
  .top_navbar {
    text-align: center;
  }
}

section {
  padding: 100px 0;
}
@media (max-width: 992px) {
  section {
    padding: 50px 0;
  }
}
section:nth-of-type(even) {
  background-color: #158038;
  color: #ffffff;
}

header {
  position: relative;
  width: 100%;
  z-index: 1000;
}
header .navbar {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header .navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  position: relative;
}
@media (max-width: 768px) {
  header .navbar .container {
    flex-direction: column;
    padding: 0.5rem;
  }
}
header .navbar nav {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 992px) {
  header .navbar nav {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  header .navbar nav {
    width: 100%;
    justify-content: space-around;
    padding: 0.5rem 0;
    order: 3;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}
header .navbar .nav_menu {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
header .navbar .nav_menu:hover {
  color: #158038;
}
@media (max-width: 768px) {
  header .navbar .nav_menu {
    font-size: 0.9rem;
  }
}
header .navbar .logo_anchor {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .navbar .logo_anchor img {
  height: 3rem;
  transition: all 0.3s ease-in-out;
}
header .navbar .logo_anchor img:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  header .navbar .logo_anchor img {
    height: 2.5rem;
    margin: 0.5rem 0;
  }
}
header .navbar .nav_btns {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  header .navbar .nav_btns {
    position: absolute;
    right: 1rem;
    top: 1rem;
    gap: 0.5rem;
  }
}
header .navbar .nav_bn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #158038;
  color: #ffffff;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 1px solid #158038;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}
header .navbar .nav_bn:hover {
  background: #5fbb5d;
  color: #ffffff;
}
@media (max-width: 768px) {
  header .navbar .nav_bn {
    display: none;
  }
}
header .navbar .nav_bn img {
  width: 1.5rem;
  height: 1.5rem;
  transition: all 0.3s ease-in-out;
}
header .navbar .nav_bn img:hover {
  transform: scale(1.1);
}

.hero {
  background: url("./assets/home_bg.webp") no-repeat;
  background-size: 100% 100%;
}

.content {
  padding: 130px 0 160px;
  max-width: 50%;
}
@media (max-width: 992px) {
  .content {
    padding: 50px 0 75px;
    max-width: 100%;
    text-align: center;
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
  }
}

.hero_heading {
  font-size: 100px;
  line-height: 1;
  font-weight: 500;
  color: #158038;
}
@media (max-width: 992px) {
  .hero_heading {
    font-size: 70px;
  }
}
@media (max-width: 551px) {
  .hero_heading {
    font-size: 45px;
    font-weight: 700;
  }
}

.hero_desc {
  margin: 32px 0 45px;
  font-size: 20px;
}
@media (max-width: 992px) {
  .hero_desc {
    font-size: 16px;
    margin: 20px 0;
  }
}

.hero_btn {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  padding: 20px 30px;
  border-radius: 10px;
  background-color: #158038;
}
.hero_btn:hover {
  background-color: #5fbb5d;
}
@media (max-width: 992px) {
  .hero_btn {
    font-size: 16px;
    padding: 10px 20px;
    max-width: 500px;
    display: block;
    margin: 0 auto;
  }
}

.about .container {
  display: flex;
  gap: 30px;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 992px) {
  .about .container {
    flex-direction: column;
  }
}

.heading {
  font-size: 70px;
  line-height: 1;
  font-weight: 600;
}
@media (max-width: 992px) {
  .heading {
    font-size: 54px;
  }
}
@media (max-width: 551px) {
  .heading {
    font-size: 40px;
  }
}

.desc {
  font-size: 20px;
}
@media (max-width: 992px) {
  .desc {
    font-size: 16px;
  }
}

.about_left,
.about_left img,
.about_right {
  width: 100%;
}

@media (max-width: 992px) {
  .about_left {
    max-width: 500px;
  }
}

.about_heading {
  padding: 50px;
  border-radius: 60px;
  background-color: #5fbb5d;
  width: calc(100% + 110px);
  position: relative;
  right: 110px;
  text-align: center;
}
.about_heading .heading {
  position: relative;
}
.about_heading .heading::after {
  content: "";
  width: 300px;
  height: 4px;
  background-color: #ffffff;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 551px) {
  .about_heading .heading::after {
    width: 150px;
  }
}
.about_heading .desc {
  margin-top: 50px;
}
@media (max-width: 992px) {
  .about_heading {
    width: 100%;
    right: 0;
    padding: 20px;
    border-radius: 10px;
  }
}

.about_list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 50px;
}
@media (max-width: 551px) {
  .about_list {
    margin-left: 0;
  }
}

.about_item {
  font-size: 28px;
  font-weight: 500;
  position: relative;
}
.about_item::after {
  content: url("./assets/list_style.webp");
  position: absolute;
  left: -45px;
}
@media (max-width: 551px) {
  .about_item::after {
    display: none;
  }
}
@media (max-width: 992px) {
  .about_item {
    font-size: 22px;
  }
}
@media (max-width: 551px) {
  .about_item {
    font-size: 18px;
    text-align: center;
  }
}

.service {
  text-align: center;
}

.service_list {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .service_list {
    margin-top: 30px;
    flex-direction: column;
  }
}

.service_item {
  padding: 36px;
  border-radius: 20px;
  background-color: #ffffff;
  text-align: start;
}
@media (max-width: 992px) {
  .service_item {
    text-align: center;
  }
}

.service_title {
  margin: 7px 0 14px;
  font-size: 24px;
  font-weight: 600;
}

.doctor {
  text-align: center;
}

.doc_list {
  display: flex;
  gap: 80px 40px;
  justify-content: center;
  margin-top: 70px;
}
@media (max-width: 992px) {
  .doc_list {
    flex-direction: column;
  }
}

.doc_item {
  width: 100%;
  padding: 40px 30px 40px;
  border-radius: 20px;
  background: #ffffff;
  color: #158038;
  position: relative;
}

.doc_degi {
  position: absolute;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 16px;
  background-color: #5fbb5d;
  color: #ffffff;
  border-radius: 20px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.doc_name {
  font-size: 26px;
  color: #ffffff;
  background-color: #158038;
  padding: 10px 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  border-radius: 10px;
  text-transform: uppercase;
}

.doc_day,
.doc_time {
  font-size: 20px;
  text-transform: uppercase;
}

.doc_day {
  position: relative;
  margin-bottom: 20px;
}
.doc_day::after {
  content: "";
  width: 70%;
  height: 2px;
  background-color: #158038;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.gallery {
  text-align: center;
}

.gallery_container {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 992px) {
  .gallery_container {
    margin-top: 30px;
  }
}
.gallery_container img {
  width: calc(20% - 18px);
}
@media (max-width: 992px) {
  .gallery_container img {
    width: calc(33.3333333333% - 15px);
  }
}
@media (max-width: 551px) {
  .gallery_container img {
    width: calc(50% - 10px);
  }
}

.contact {
  text-align: center;
}

.map {
  vertical-align: bottom;
  width: 100%;
  height: 380px;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .map {
    margin-top: 30px;
  }
}

address {
  padding: 37px 50px;
  background-color: #5fbb5d;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  text-align: start;
  font-size: 22px;
  font-weight: 500;
}
@media (max-width: 551px) {
  address {
    flex-direction: column;
    text-align: center;
    font-size: 16px;
    padding: 20px;
  }
}

.paras {
  padding: 100px 0;
}
@media (max-width: 992px) {
  .paras {
    padding: 50px 0;
  }
}
.paras .heading {
  text-align: center;
}
.paras .desc {
  text-align: justify;
  margin-top: 10px;
}
.paras .desc a {
  color: #158038;
  font-weight: 800;
}
.paras .desc a:hover {
  text-decoration: underline;
}

footer {
  padding: 100px 0;
  background-color: #158038;
}
@media (max-width: 992px) {
  footer {
    padding: 50px 0;
  }
}
footer .container {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 992px) {
  footer .container {
    flex-direction: column-reverse;
  }
}

.footer_left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer_socials {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 992px) {
  .footer_socials {
    justify-content: center;
  }
}
.footer_socials img {
  transition: all 0.5s ease-in-out;
}
.footer_socials img:hover {
  transform: rotate(360deg);
}

.footer_middle {
  width: 100%;
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 992px) {
  .footer_middle {
    text-align: center;
  }
}

.footer_right {
  min-width: 400px;
  color: #ffffff;
}
@media (max-width: 551px) {
  .footer_right {
    min-width: 0;
    width: 100%;
  }
}

.footer_heading {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}

form {
  margin-top: 20px;
}
form input {
  width: 100%;
  border: 2px solid #ffffff;
  border-radius: 10px;
  padding: 16px;
  font-size: 20px;
  outline: none;
  background-color: transparent;
  text-align: center;
  color: #ffffff;
}
form input::-moz-placeholder {
  color: #ffffff;
}
form input::placeholder {
  color: #ffffff;
}

.submit_btn {
  margin-top: 20px;
  width: 100%;
  font-size: 26px;
  padding: 12px;
  border-radius: 10px;
  background-color: #ffffff;
  color: #000000;
  border: none;
  font-weight: 700;
  cursor: pointer;
}
.submit_btn:hover {
  box-shadow: -2px -2px 24px 15px rgba(94, 187, 93, 0.5411764706);
}/*# sourceMappingURL=style.css.map */