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

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: #0c1059;
  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: #ce1d09;
}

.header_btn {
  background-image: linear-gradient(45deg, #ca1c02, #ff5e46);
  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(0, 0, 0, 0.4039215686);
}

.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;
}
.top_footer .container .left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.top_footer .container .right {
  width: 100%;
  border-radius: 20px;
  border: 5px solid #ce1d09;
  overflow: hidden;
}
.top_footer .container .right address {
  background-color: #ce1d09;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #ffffff;
}

.social_footer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social_footer a {
  padding: 10px;
  border-radius: 100%;
  background-image: linear-gradient(45deg, #ca1c02, #ff5e46);
}
.social_footer a:hover {
  box-shadow: -2px -2px 24px 15px rgba(0, 0, 0, 0.4039215686);
}

.desc {
  font-size: 16px;
}

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

.hero {
  padding: 110px 0 300px;
  text-align: center;
  background-image: url("./assets/hero_bg.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.hero_heading {
  font-size: 100px;
  line-height: 1.02;
  font-weight: 500;
}
.hero_heading span {
  color: #ce1d09;
}

.hero_desc {
  font-size: 30px;
  max-width: 665px;
  font-weight: 500;
}

.hero_btn {
  font-size: 18px;
  padding: 10px 30px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(45deg, #ca1c02, #ff5e46);
  width: -moz-fit-content;
  width: fit-content;
  gap: 10px;
  border: 2px solid #ffffff !important;
  color: #ffffff;
}
.hero_btn:hover {
  box-shadow: -2px -2px 24px 15px rgba(0, 0, 0, 0.4039215686);
}

.trust {
  text-align: center;
}
.trust .heading {
  color: #ffffff;
}
.trust .container {
  max-width: 1010px;
  position: relative;
  padding: 245px 0 90px;
}

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

.trust_lists {
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  padding: 60px;
  border-radius: 10px;
  flex-wrap: wrap;
  transform: translateY(-50%);
}

.trust_item {
  width: 50%;
  padding: 20px 10px;
  font-size: 38px;
  font-weight: 500;
}
.trust_item span {
  color: #ce1d09;
  font-weight: 600;
}
.trust_item:nth-child(1) {
  border-bottom: 2px solid #000000;
  border-right: 2px solid #000000;
}
.trust_item:nth-child(2) {
  border-bottom: 2px solid #000000;
}
.trust_item:nth-child(3) {
  border-right: 2px solid #000000;
}

.service {
  padding: 90px 0;
  background-color: #ffffff;
  text-align: center;
}
.service .container {
  max-width: 1010px;
}

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

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

.service_item {
  padding: 40px;
  border-radius: 30px;
  background-color: #ce1d09;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.service_item img {
  border-radius: 20px;
  box-shadow: -2px -2px 24px 15px rgba(0, 0, 0, 0.4039215686);
}

.service_name {
  color: #ffffff;
  font-weight: 500;
}

.doctor {
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}
.doctor span {
  margin-top: 30px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 10px;
  background-color: #ffffff;
  color: #000000;
  font-size: 24px;
}

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

.doctor_item {
  background-color: #ffffff;
  border-radius: 30px;
  width: calc(33.3333333333% - 15px);
  color: #000000;
  padding: 70px 17px 30px;
  position: relative;
}

.doc_name {
  font-size: 25px;
  padding-bottom: 10px;
  position: relative;
}
.doc_name::after {
  content: "";
  width: 60%;
  border-bottom: 3px solid #ce1d09;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.doc_timeline {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
}
.doc_timeline time {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

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

.contact {
  background-color: #ffffff;
}
.contact .container {
  display: flex;
  gap: 20px;
  align-items: end;
}
.contact .container .left,
.contact .container .right {
  width: 100%;
}
.contact .container .right img {
  width: 100%;
}
.contact .container .left {
  padding: 90px 0;
}
.contact .container .left form {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 20px;
}
.contact .container .left form input {
  border-radius: 20px;
  border: none;
  background-color: transparent;
  padding: 20px;
  font-size: 16px;
  outline: none;
  box-shadow: -9px 10px 21px 5px rgba(0, 0, 0, 0.25);
}
.contact .container .left form button {
  padding: 15px;
  font-size: 18px;
  color: #ffffff;
  background-image: linear-gradient(45deg, #ca1c02, #ff5e46);
  font-weight: 600;
  border-radius: 20px;
  border: 2px solid #ffffff;
}
.contact .container .left form button:hover {
  box-shadow: -2px -2px 24px 15px rgba(0, 0, 0, 0.4039215686);
}

button {
  cursor: pointer;
}

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

.swiper {
  margin-top: 50px;
}

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

.map {
  width: 100%;
  height: 250px;
  vertical-align: bottom;
}

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