@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200&family=Montserrat:wght@300&family=PT+Sans:ital@1&family=Poppins:wght@300;400&family=Source+Sans+Pro:wght@300&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", "Inter", sans-serif;
}
.stick {
  position: fixed;
  z-index: 1;

}
.stick-img {
  top: 78vh;
  left: 94vw;
  position: absolute;
  height: 50px;
}
@media screen and (max-width: 1024px) {
  .stick-img {
    top: 85vh;
    left: 84vw;
    height: 25px;

  }
  body{
    font-size: 12px;
  }
}
header {
  /* background-color: #B3E283; */

  /* background-color: #85EF47; */
  background-color: black;
  color: white;
  /* height: 9vh; */
  height: 20%;

}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  height: 100%;
  width: 90%;
}
nav a {
  text-decoration: none;
}
.logo {
  /* top: 5px; */
  /* padding-top: 18px; */
  /* width: 200px; */
  height: 7.55vh;
}
.nav-child {
  height: 100%;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.current-pg {
  background-color: rgb(255, 199, 56);
  color: black;
  display: flex;
  align-items: center;
}
.current-pg:hover {
  color: blue;
  border: 2px solid lightcyan;
}
.rest-pg {
  display: flex;
  align-items: center;
}
.rest-pg:hover {
  border: 3px solid lightcyan;
  background-color: rgb(255, 199, 56);
}
.rest-pg a {
  text-decoration: none;
  color: white;
}
.rest-pg a:hover {
  color: black;
}
.current-pg a {
  text-decoration: none;
  color: white;
}
.nav-child li {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-self: center;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .nav-child {
    /* display: none; */
    column-gap: 0;
    font-size: 11px;
  }
  nav {
    margin: 0;
    padding-top: 3px;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    /* row-gap: 10px; */
  }
}
/* HEADER END */
/* HERO START */
.hero {
  background-image: url(./assets/190501-Healthcare.jpg);
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-content {
  margin: auto;
  padding: 30px 0;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.hero-img {
  width: 50%;
  min-width: 280px;
  border-radius: 12px;
}
@keyframes myAnim {
  0% {
    animation-timing-function: ease-in;
    opacity: 1;
    transform: translateX(-48px);
  }

  24% {
    opacity: 1;
  }

  40% {
    animation-timing-function: ease-in;
    transform: translateX(-26px);
  }

  65% {
    animation-timing-function: ease-in;
    transform: translateX(-13px);
  }

  82% {
    animation-timing-function: ease-in;
    transform: translateX(-6.5px);
  }

  93% {
    animation-timing-function: ease-in;
    transform: translateX(-4px);
  }

  25%,
  55%,
  75%,
  87%,
  98% {
    animation-timing-function: ease-out;
    transform: translateX(0px);
  }

  100% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateX(0px);
  }
}
.hero-qualities {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 30px;
}
.quality-service {
  list-style: none;
  display: flex;
  column-gap: 10px;
  align-items: center;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  background-color: white;
  border-radius: 15px;
  padding: 10px;
  animation: myAnim 0.1s ease 0s 1 normal forwards;
}
.quality-service:hover {
  color: green;
}
.quality-img {
  border: 2px solid green;
  padding: 10px;
  border-radius: 50% 50%;
  max-height: 50px;
  max-width: 50px;
  height: 40%;
  width: 50%;
  min-height: 45px;
  min-width: 45px;
}

@media screen and (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    row-gap: 30px;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 100%;
  }
  .hero-qualities {
    flex: 0 1;
    flex-direction: row;
    column-gap: 20px;
    justify-content: center;
    align-items: center;
  }
  .quality-service {
    display: flex;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    align-items: center;
    height: 110px;
    width: 50%;
  }
}
.product {
  width: 80%;
  margin: 30px auto;
  justify-items: center;
  text-align: center;
}
.product-img {
  /* animation: myAnim 2s ease 0s 1 normal forwards; */
  animation: myAnim 0.3s ease 0s 1 normal forwards;

  width: 70vw;
  max-width: 600px;
}
.bill {
  width: 100%;
  text-align: center;
  border: 1px dotted black;
  border-bottom: none;

  background-color: gainsboro;
}
.expense {
  display: flex;
  justify-content: space-evenly;
}
.expense ul li {
  list-style: none;
  padding: 20px;
}
.line-form {
  border-top: 3px solid black;
}
.form-fill{
  display: flex;
  justify-content: center;
  background-color: gainsboro;
  border-left: 1px dotted black;
  border-right: 1px dotted black;
  border-bottom: 1px dotted black;
  padding-bottom: 10px;

}
.btn {
  /* border-radius: 12px;
  font-family: Arial;
  color: 00000000;
  font-size: 21px;
  background: #ffd900;
  padding: 10px 20px 10px 20px;
  border: solid #ffffff 0px;
  text-decoration: none; */
  text-decoration: none;
  color: black;
}
button {
  margin: auto;
  border-radius: 12px;
  font-family: Arial;
  color: 00000000;
  font-size: 21px;
  background: #ffd900;
  padding: 15px 25px 15px 25px;
  border: solid #ffffff 0px;
  text-decoration: none;
}
 button:hover{
  background: #3498db;
  background-image: -webkit-linear-gradient(top, #3498db, #3498db);
  background-image: -moz-linear-gradient(top, #3498db, #3498db);
  background-image: -ms-linear-gradient(top, #3498db, #3498db);
  background-image: -o-linear-gradient(top, #3498db, #3498db);
  background-image: linear-gradient(to bottom, #3498db, #3498db);
  text-decoration: none;
}
@media screen and (max-width: 640px) {
  button{
    /* border-radius: 8px; */
    font-size: 17px;
    font-weight: 500;
    padding: 13px 18px;
  }
}
.end {
  background-color: black;
}
footer {
  color: white;
  display: flex;
  flex-direction: column;
  width: 80%;
  flex-wrap: wrap;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  padding-top: 10px;

}
.footer-logo {
  height: 80px;
}
.adi-footer {
  width: 100%;
  align-items: center;
  display: flex;
}
.link-footer {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.links-footer li {
  list-style: none;
}
.privacy-policy li {
  list-style: none;
}
.footer-contact {
  display: block;
}
@media screen and (max-width: 640px) {
  footer {
    flex-direction: column;
    row-gap: 20px;
    margin: auto;
    width: 100%;
  }
  .footer-logo {
    margin: auto;
    height: 10vh;
  }
  .adi-footer {
    flex-direction: column;
    row-gap: 20px;
  }
  .link-footer {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }
  .links-footer li {
    list-style: none;
  }
}
/* Animations */
