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

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: #8d6e51;
  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: #50a7af;
}

.header_btn {
  background-image: linear-gradient(45deg, #8d6e51, #c4a181);
  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(141, 110, 81, 0.4588235294);
}

.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, #8d6e51, #c4a181);
}
.social_footer a:hover {
  box-shadow: -2px -2px 24px 15px rgba(141, 110, 81, 0.4588235294);
}

.desc {
  font-size: 16px;
}

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

.hero {
  padding: 180px 0;
  background-image: url("./assets/hero_bg.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.hero .container {
  display: flex;
  gap: 50px;
  align-items: center;
}
.hero .hero_left,
.hero .hero_right {
  width: 100%;
}

.hero_heading {
  font-size: 90px;
  line-height: 0.98;
  font-weight: 600;
}
.hero_heading span {
  color: #50a7af;
}

.hero_doc {
  margin: 30px 0;
  font-size: 30px;
  font-weight: 500;
}

.hero_ntn {
  padding: 10px 30px !important;
  font-size: 18px;
  border-radius: 30px !important;
  background: linear-gradient(45deg, #8d6e51, #c4a181);
  color: #ffffff;
  border: 2px solid #ffffff;
}
.hero_ntn:hover {
  box-shadow: -2px -2px 24px 15px rgba(141, 110, 81, 0.4588235294);
}

.hero_right form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero_right form input,
.hero_right form textarea {
  padding: 17px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  border: none;
  outline: none;
}
.hero_right form button {
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border-radius: 10px;
  font-size: 18px;
  background-image: linear-gradient(45deg, #8d6e51, #c4a181);
  color: #ffffff;
  border: 1px solid #ffffff;
}
.hero_right form button:hover {
  box-shadow: -2px -2px 24px 15px rgba(141, 110, 81, 0.4588235294);
}

.heading {
  font-size: 70px;
  font-weight: 600;
  line-height: 1.1;
}
.heading span {
  color: #50a7af;
}

.desc {
  font-size: 20px;
  font-weight: 500;
}

.service {
  text-align: center;
}
.service .heading {
  color: #ffffff;
}
.service .container {
  max-width: 1010px;
}

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

.service_item {
  width: 100%;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 30px;
}
.service_item > * + * {
  margin-top: 10px;
}
.service_item img {
  box-shadow: -2px -2px 24px 15px rgba(141, 110, 81, 0.4588235294);
  border-radius: 20px;
}
.service_item .service_name {
  font-size: 26px;
  font-weight: 500;
}

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

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

.doctor_item {
  width: 100%;
  border: 4px solid #8d6e51;
  padding: 70px 17px 30px;
  border-radius: 30px;
  position: relative;
}
.doctor_item .doc_icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.doc_name {
  font-size: 34px;
  font-weight: 600;
  text-transform: capitalize;
  padding-bottom: 34px;
}

.trust_section {
  text-align: center;
  background-image: url("./assets/trust_bg.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.trust_section .heading span {
  color: #ffffff;
}

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

.trust_item {
  width: 50%;
  padding: 10px 50px;
  font-size: 38px;
  font-weight: 600;
}
.trust_item span {
  color: #ffffff;
}
.trust_item:nth-child(1) {
  border-bottom: 2px solid #000000;
}
.trust_item:nth-child(2) {
  border-bottom: 2px solid #000000;
  border-left: 2px solid #000000;
}
.trust_item:nth-child(4) {
  border-left: 2px solid #000000;
}

.loc {
  background-color: #ffffff;
}
.loc .container {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.loc .container .left,
.loc .container .right {
  width: 100%;
}
.loc .container .right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.loc .container .left img {
  width: 100%;
}

.map {
  width: 100%;
  height: 240px;
  border-radius: 10px;
}

address {
  font-size: 22px;
  font-style: normal;
}

.gallery {
  text-align: center;
}

.swiper {
  margin-top: 50px;
}

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

article {
  padding: 50px 0;
  background-color: #ffffff;
  border-bottom: 2px solid #50a7af;
}
article .heading {
  text-align: center;
}
article .desc {
  margin-top: 20px;
  text-align: justify;
}
article .desc a {
  color: #50a7af;
}
article .desc a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */