@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&family=Sora:wght@400;700&display=swap");
:root {
  --primary: #0d6efd;
  --dark: #21252f;
  --body: #888;
  --box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  --c-brand: #4e57d4;
  --c-brand-rgb: 78, 87, 212;
  --transition: all 0.5s ease;
}
body {
  font-family: Sora, "sans-serif";
  line-height: 1.7;
  color: var(--body);
  background-color: #59a3d7;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
.display-4 {
  color: white;
  font-weight: 700;
}
a {
  color: var(--dark);
  text-decoration: none;
}
.section-padding {
  padding-top: 200px;
  padding-bottom: 100px;
}
.Imprssum h3 {
  font-size: 30px;
  font-weight: 500;
  color: white;
  margin-top: 50px;
}
/* navbar */
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0.3rem 6%;
  z-index: 3;

  background-color: rgba(173, 216, 230, 0.9);
  backdrop-filter: blur(5px);
}
/* header.shrink {
  height: 17vh;
  padding: 0 4%;
  transition: 0.2s ease;
} */

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .navbar {
  /* background-color: rgba(255, 255, 255, 0.2); */
  background: rgba(0, 0, 0, 0.3);

  /* backdrop-filter: blur(5px); */

  /* flex-wrap: wrap; */
  border-radius: 8vw 0 0 8vw;
  /* border-radius: 8vw; */
}

nav .navbar a {
  text-decoration: none;
  color: #eee;
  font-size: 1.2rem;
  font-weight: 500;
  margin-left: 0.9rem;
}
nav .navbar a:hover {
  color: lightcoral;
  /* margin-bottom: 5px; */
  transition: 0.2s ease;
}
nav .navbar a:active {
  color: #eee;
}
nav .toggle-btn {
  display: none;
}
nav .toggle-btn .material-icons {
  color: #eee;
  font-size: 1.5rem;
  cursor: pointer;
}
nav .toggle-btn .material-icons:hover {
  color: lightcoral;
}
nav .toggle-btn .material-icons:active {
  color: #eee;
}
nav .dropdown-navbar {
  display: none;
}
/* responsive break point */
@media (max-width: 992px) {
  header {
    padding: 0.3rem 2%;
  }
}
@media (max-width: 768px) {
  header {
    padding: 0.1rem 2%;
  }
  nav .toggle-btn {
    display: inline-flex;
  }
  nav .navbar {
    display: none;
  }
  #chk-box:checked ~ .toggle-btn #menu-icon {
    display: none;
  }
  #chk-box:checked ~ .toggle-btn #close-icon {
    display: block;
  }
  #close-icon {
    display: none;
  }
  nav .dropdown-navbar {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: 0;
    border-top: none;
    /* background: rgba(0, 0, 0, 0.3); */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;

    transition: 0.5s ease;
    /* background-color: rgba(255, 255, 255, 0.2); */
    background-color: rgba(173, 216, 230, 0.8);
    backdrop-filter: blur(5px);
    font-size: 1.2rem;
  }
  #chk-box:checked ~ .dropdown-navbar {
    height: 12.8rem;
    border-top: 1px solid #eee;
  }
  nav .dropdown-navbar a {
    text-decoration: none;
    color: #eee;
    margin: 0.5rem 0;
  }

  nav .dropdown-navbar a:hover {
    color: lightcoral;
  }
  nav .dropdown-navbar a:active {
    color: #eee;
  }
}

#chk-box {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  display: none;
}

.doctorr-name {
  color: #eee;
  font-weight: 700;
  margin-right: 50px;
}
.logoAndName {
  display: flex;
  align-items: center;
}
nav .logo {
  height: 150px;
  width: 150px;
}
footer .copyRight {
  text-align: center;
}
/* .scroll-to-top */

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}
