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

img {
  vertical-align: bottom;
  display: inline-block;
}

a,
button {
  text-decoration: none;
  transition: all 0.5s ease;
}

ul {
  list-style: none;
}

header time {
  display: block;
  text-align: center;
  padding: 10px 0;
  text-transform: uppercase;
  border-bottom: 4px solid #ffffff;
}

.navbar {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 14px 0;
  position: relative;
  border-bottom: 4px solid #ffffff;
}
.navbar .nav_logo {
  position: absolute;
  left: 0;
  bottom: -5px;
  transform: translateY(50%);
  z-index: 100;
}

nav {
  display: flex;
  gap: 40px;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
}
nav .nav_menu {
  color: #000000;
}
nav .nav_menu:hover {
  color: #0005d7;
}
nav .nav_btn {
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 10px;
  background-color: #0005d7;
}
nav .nav_btn:hover {
  background-color: #ca1d29;
}

/* Hamburger menu styles */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 106;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000000;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.hero {
  padding: 60px 0 100px;
}
.hero .container {
  display: flex;
  align-items: center;
  gap: 80px;
}
.hero .hero_left,
.hero .hero_right,
.hero .hero_right img {
  width: 100%;
}

.hero_socials {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero_anchor {
  padding: 8px;
  border-radius: 10px;
  background-color: #ca1d29;
}
.hero_anchor img {
  transition: all 0.5s ease-in-out;
}
.hero_anchor img:hover {
  transform: rotate(360deg);
}

.sff {
  width: 100%;
  border-bottom: 2px dashed #ca1d29;
}

.hero_heading {
  font-size: 100px;
  line-height: 0.9;
  margin: 28px 0;
  font-weight: 500;
}

.hero_desc {
  font-size: 20px;
  margin-bottom: 60px;
}

.hero_btn {
  font-size: 20px;
  font-weight: 600;
  padding: 20px 30px;
  border-radius: 10px;
  background-color: #0005d7;
  color: #ffffff;
}
.hero_btn:hover {
  background-color: #ca1d29;
}

.doc {
  background: url("./assets/docotr_bg.webp") no-repeat;
  background-size: 100% 100%;
  padding: 90px 0;
}
.doc .doc_content {
  max-width: 475px;
  margin-left: auto;
  text-align: left;
  color: #ffffff;
}

.heading {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.1;
  text-wrap: balance;
}

.doctors-list {
  margin-top: 40px;
}
.doctors-list > * + * {
  margin-top: 40px;
}

.doctor-specialty {
  padding: 6px 10px;
  border-radius: 5px;
  color: #0005d7;
  background-color: #ffffff;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
}

.doctor-name {
  font-size: 28px;
  font-weight: 600;
}
.doctor-name span {
  font-size: 18px;
}

.doctor-schedule,
.doctor-time {
  font-size: 18px;
}

.about {
  padding: 100px 0;
}
.about .container {
  display: flex;
  gap: 25px;
  align-items: end;
}

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

.about_list {
  margin-top: 20px;
}
.about_list > * + * {
  margin-top: 20px;
}

.about_item {
  position: relative;
}
.about_item img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.about_text {
  margin-left: 47px;
  padding: 20px 20px 20px 70px;
  background-color: #ffffff;
  border-radius: 20px;
}

.about_heading {
  font-size: 24px;
  color: #0005d7;
  margin-bottom: 5px;
}

.about_desc {
  font-size: 16px;
}

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

.gallery_list {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery_img {
  width: calc(20% - 16px);
}
.gallery_img img {
  width: 100%;
}

.contact {
  padding: 90px 0;
  text-align: center;
}

.contact_middle {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.left,
.right {
  width: 100%;
}

.map {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.right > * + * {
  margin-top: 20px;
}
.right input {
  width: 100%;
  padding: 25px;
  text-align: center;
  border-radius: 20px;
  border: 2px solid #000000;
  font-size: 20px;
  outline: none;
  background-color: transparent;
}
.right button {
  width: 100%;
  padding: 22px;
  font-size: 26px;
  border-radius: 20px;
  border: none;
  color: #ffffff;
  background-color: #0005d7;
}
.right button:hover {
  background-color: #ca1d29;
}

address {
  margin-top: 60px;
  padding: 37px 60px;
  border-radius: 10px;
  background-color: #0005d7;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #ffffff;
}
address span {
  font-size: 22px;
  text-align: start;
}

article {
  padding: 100px 0;
  background-color: #0005d7;
  color: #ffffff;
}
article .heading {
  text-align: center;
}
article .desc {
  margin-top: 20px;
  text-align: justify;
}
article .desc a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
}
article .desc a:hover {
  -webkit-text-decoration: dashed;
          text-decoration: dashed;
}

footer {
  padding: 90px 0;
}
footer .container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer_socicals {
  display: flex;
  flex-direction: column;
  gap: 20px;
}/*# sourceMappingURL=style.css.map */