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

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: #ffffff;
  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: #630e23;
}

.header_nav {
  background-color: #630e23;
  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: #ffffff;
  text-transform: capitalize;
}
.header_nav:hover {
  color: #f7c4d1;
}

.header_btn {
  background: #ffffff;
  font-size: 18px;
  font-weight: 600;
  color: #630e23;
  padding: 10px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header_btn:hover {
  border-radius: 30px;
}

.hamburger {
  display: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  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: #630e23;
  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: #ffffff;
}
.social_footer a:hover {
  box-shadow: -2px -2px 24px 15px rgba(99, 14, 35, 0.5333333333);
}

.desc {
  font-size: 16px;
}

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

.hero {
  padding: 130px 0 230px;
  text-align: center;
  background-image: url("./assets/hero_bg.webp");
  color: #ffffff;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.hero .container {
  max-width: 850px;
}
.hero .social_container {
  display: flex;
  gap: 20px;
  align-items: center;
}
.hero .social_container span {
  width: 100%;
  border-bottom: 4px solid #ffffff;
}

.hero_heading {
  font-size: 76px;
  line-height: 1.02;
  font-weight: 700;
  margin-top: 40px;
}

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

.hero_btn {
  padding: 20px 30px;
  border-radius: 30px;
  background-color: #ffffff;
  color: #630e23;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  margin-top: 65px;
}
.hero_btn:hover {
  box-shadow: -2px -2px 24px 15px rgba(99, 14, 35, 0.5333333333);
}

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

.cta_btn {
  padding: 20px 30px;
  border-radius: 5px;
  background-color: #ffffff;
  color: #630e23;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  text-wrap: nowrap;
}
.cta_btn:hover {
  border-radius: 40px;
}

.about {
  padding-top: 100px;
  background-image: url("./assets/about_bg.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: #ffffff;
}

.about_content {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.about_top {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 30px;
}
.about_top span {
  flex: 1;
  border: 2px solid #ffffff;
}

.heading {
  font-size: 60px;
  line-height: 1.02;
  text-transform: capitalize;
  margin: 20px 0 30px;
}

.about_list {
  width: 100%;
  background-color: #630e23;
  padding: 60px;
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 18px;
  list-style: square;
}

.about_item {
  width: calc(25% - 25px);
}

.doctor {
  padding: 100px 0;
  background-color: #ffffff;
}
.doctor .heading {
  width: 100%;
  border-bottom: 2px solid #630e23;
  padding-bottom: 20px;
}

.doctor_list {
  margin-top: 70px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.doctor_item {
  width: calc(33.3333333333% - 15px);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #000000;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}

.doc_degi {
  font-size: 20px;
  padding-bottom: 10px;
  position: relative;
}
.doc_degi::after {
  content: "";
  width: 87px;
  height: 2px;
  background-color: #000000;
  position: absolute;
  left: 0;
  bottom: 0;
}

.doc_name {
  font-size: 26px;
  font-weight: 700;
  text-transform: capitalize;
}
.doc_name span {
  font-size: 12px;
}

.doc_timeline {
  font-size: 16px;
}

.contact {
  padding: 100px 0;
}
.contact .container {
  max-width: 1010px;
  display: flex;
  gap: 20px;
}
.contact .container .left,
.contact .container .right {
  background-color: #ffffff;
  width: 100%;
  padding: 40px;
}

.contact_heading {
  font-size: 36px;
  font-weight: 800;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #630e23;
  margin-bottom: 20px;
}
.contact_heading span {
  width: 20px;
  height: 20px;
  background-color: #630e23;
}

form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
form button {
  padding: 30px;
  font-size: 16px;
  color: #ffffff;
  background-color: #630e23;
  text-align: start;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

input {
  width: 100%;
  font-size: 16px;
  padding: 30px;
  background-color: #d7d7d7;
  border: none;
  outline: none;
  border-radius: 6px;
}

address {
  padding: 12px 20px;
  border-radius: 6px;
  background-color: #d7d7d7;
  font-size: 16px;
  text-align: center;
  font-style: normal;
}

.map {
  margin-top: 30px;
  width: 100%;
  height: 300px;
  border-radius: 10px;
}

.gallery {
  padding: 100px 0;
  background-color: #ffffff;
}

.heading_content {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.gallery_top {
  display: flex;
  gap: 20px;
  align-items: center;
}
.gallery_top span:nth-child(1),
.gallery_top span:nth-child(3) {
  flex: 1;
  border-bottom: 2px solid #630e23;
}
.gallery_top span:nth-child(2) {
  font-size: 30px;
  padding: 10px;
  background-color: #630e23;
  color: #ffffff;
}

.gallery_list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery_item {
  width: calc(25% - 15px);
}
.gallery_item img {
  width: 100%;
}

.paras {
  padding: 100px 0;
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
}
.paras .desc {
  text-align: justify;
}
.paras .desc a {
  color: #ffffff;
  font-weight: 700;
}
.paras .desc a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */