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

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: #d90d0e;
  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;
  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: #006dca;
}

.header_btn {
  background-image: linear-gradient(45deg, #c40001, #ff2425);
  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(217, 13, 13, 0.3647058824);
}

.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, #c40001, #ff2425);
}
.social_footer a:hover {
  box-shadow: -2px -2px 24px 15px rgba(217, 13, 13, 0.3647058824);
}

.desc {
  font-size: 16px;
}

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

.hero {
  padding: 160px 0 340px;
  background-image: url("./assets/hero_bg.webp");
  background-size: 100% 100%;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.hero_heading {
  font-size: 100px;
  line-height: 1.05;
  font-weight: 600;
}
.hero_heading span {
  color: #d90d0e;
}

.hero_desc {
  font-size: 30px;
  max-width: 665px;
  margin: 0 auto;
}

.doctor_list {
  display: flex;
  flex-wrap: wrap;
  gap: 70px 20px;
  transform: translateY(-50%);
}

.doctor_item {
  width: calc(25% - 15px);
  text-align: center;
  padding: 70px 16px 30px;
  border-radius: 30px;
  background-color: #ffffff;
  position: relative;
}

.doc_icon {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  box-shadow: -2px -2px 24px 15px rgba(217, 13, 13, 0.3647058824);
}

.doc_name {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.01;
  text-transform: capitalize;
  padding-bottom: 30px;
  position: relative;
}
.doc_name::after {
  content: "";
  width: 160px;
  height: 4px;
  background-color: #d90d0e;
  position: absolute;
  border-radius: 30px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.doc_name span {
  font-size: 14px;
}

.doc_timeline {
  margin-top: 10px;
  font-size: 20px;
}

.about {
  padding: 100px 0;
  background-color: #ffffff;
  text-align: center;
}
.about .container {
  max-width: 920px;
}

.heading {
  font-size: 70px;
  line-height: 1.02;
}
.heading span {
  color: #d90d0e;
}

.about_list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}

.about_item {
  width: 50%;
  font-size: 38px;
}
.about_item span {
  color: #d90d0e;
  font-weight: 600;
}
.about_item:nth-child(1) {
  border-bottom: 2px solid #d90d0e;
  border-right: 2px solid #d90d0e;
  padding: 0 50px 10px;
}
.about_item:nth-child(2) {
  border-bottom: 2px solid #d90d0e;
  padding: 0 50px 10px;
}
.about_item:nth-child(3) {
  border-right: 2px solid #d90d0e;
  padding: 10px 50px 0;
}
.about_item:nth-child(4) {
  padding: 10px 50px 0;
}

.service {
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}

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

.service_list {
  margin-top: 40px;
  display: flex;
  gap: 40px;
}
.service_list .service_item {
  width: 100%;
  border: 2px solid #ffffff;
  padding: 40px;
  border-radius: 20px;
}
.service_list .service_item img {
  margin-bottom: 30px;
  border-radius: 20px;
  box-shadow: -2px -2px 24px 15px rgba(217, 13, 13, 0.3647058824);
}

.service_name {
  font-size: 26px;
}

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

.swiper {
  margin-top: 30px;
}

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

.contact {
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}
.contact .container {
  display: flex;
  gap: 30px;
}
.contact .container .left,
.contact .container .right {
  width: 100%;
}

form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
form input {
  width: 100%;
  padding: 17px 20px;
  border-radius: 10px;
  border: none;
  outline: none;
}
form button {
  font-size: 18px;
  font-weight: 600;
  padding: 10px;
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid #ffffff;
  background-color: #d90d0e;
  color: #ffffff;
}
form button:hover {
  background-color: #ffffff;
  color: #000000;
}

address {
  font-size: 22px;
}

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

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