body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: sans-serif;
}
body nav {
  z-index: 100;
  width: 100%;
  background: #100E79;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body nav .dropdown {
  display: none;
  position: relative;
}
body nav .dropbtn {
  padding-right: 30px;
  padding: 16px;
  font-size: 30px;
  background-color: rgba(255, 255, 255, 0);
  border: none;
  cursor: pointer;
  margin-right: 30px;
}
body nav .dropdown-content {
  list-style-type: none;
  position: absolute;
  right: -20px;
  top: 30px;
  width: 300px;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
body nav .dropdown-content li {
  color: black;
  padding: 18px 16px;
  text-decoration: none;
}
body nav .dropdown-content li a {
  color: #100E79;
}
body nav .dropdown-content a:hover {
  background-color: #989494;
}
body nav .dropdown:hover .dropdown-content {
  display: block;
}
body nav .img {
  flex: 2;
  padding-top: 5px;
  padding-left: 50px;
}
body nav ul {
  display: flex;
  flex: 2;
  justify-content: space-evenly;
}
body nav ul li {
  list-style: none;
}
body nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 25px;
}
body nav ul li a:hover {
  border-bottom: 3px solid rgb(225, 76, 76);
  transition: 2s;
}
body nav form {
  display: flex;
  flex: 1.2;
  padding-right: 50px;
}
body nav form button {
  display: flex;
  align-items: center;
  width: auto;
  height: 50px;
  border-radius: 2px;
  outline: none;
  border: none;
  background: rgb(160, 201, 98);
  color: white;
  font-size: 15px;
}
body nav form button:hover {
  scale: 1.05;
  background: rgb(133, 230, 230);
  box-shadow: rgb(0, 0, 0);
  transition: 0.8s;
  color: #100E79;
  font-weight: bold;
  transition: transition(visibility 0s ease 0.2s, opacity 0.2s ease, transform 0.3s ease);
}
@media screen and (max-width: 768px) {
  body nav {
    display: grid;
    grid-template-columns: 2fr 1.5fr 0.5fr;
    grid-template-areas: "logo button menu";
    padding-right: 20px;
  }
  body nav form {
    grid-area: button;
    display: flex;
  }
  body nav form button {
    place-self: end;
    display: flex;
    margin-left: 30px;
    justify-content: end;
  }
  body nav form button h2 {
    font-size: 16px;
  }
  body nav .dropdown {
    display: block;
  }
  body nav .dropdown .fa-solid {
    color: white;
  }
  body nav ul {
    display: none;
  }
  body nav ul li .btn {
    display: block;
  }
  body nav ul li .btn button a {
    display: flex;
    align-items: center;
    width: auto;
    height: 50px;
    border-radius: 2px;
    outline: none;
    border: none;
    background-color: rgb(160, 201, 98);
    color: white;
    font-size: 15px;
  }
}

.appointment {
  font-family: sans-serif;
  display: flex;
  justify-content: space-between;
  padding: 30px 50px;
  background-image: url("../image/apm.jpg");
  height: 530px;
  width: 100%;
}
.appointment form {
  display: flex;
  flex-direction: column;
  background: rgba(32, 31, 31, 0.1058823529);
  padding: 0 40px;
  border-radius: 20px;
  gap: 7px;
  width: 400px;
}
.appointment form label {
  padding-top: 10px;
  color: #100E79;
  font-size: 20px;
}
.appointment form h2 {
  text-align: center;
  font-size: 39px;
  font-weight: bold;
  color: #100E79;
}
.appointment form .select {
  display: flex;
  justify-content: space-between;
}
.appointment form .select .col-md-6 {
  display: flex;
  flex-direction: column;
}
.appointment form .select .form-control {
  height: 35px;
}
.appointment form input {
  height: 35px;
  border: none;
  outline: none;
  padding-left: 10px;
  border-radius: 5px;
}
.appointment form input[type=date], .appointment form select {
  width: 190px;
  border: none;
  border-radius: 0px;
}
.appointment form .btn {
  width: 100%;
  padding-top: 20px;
}
.appointment form .btn button {
  padding: 14px 0;
  width: 100%;
  background-color: #100E79;
  border: none;
  color: white;
  font-weight: bold;
  font-size: 15px;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .appointment {
    height: auto;
  }
}
* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

html {
  scroll-behavior: smooth;
}

nav {
  position: fixed;
  top: 0;
}
nav button {
  padding: 10px;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: end;
  background-image: url("../image/check-home.png");
  background-size: 1300px 600px;
  height: 75vh;
  padding: 60px;
}
header .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  color: white;
  width: 900px;
  height: 250px;
  background: rgba(75, 74, 74, 0.4431372549);
}
header .title h1 {
  font-size: 60px;
}
header .title p {
  width: 600px;
  display: flex;
  padding-top: 20px;
}

.table {
  display: flex;
  flex-direction: column;
  padding: 50px 50px 0px 50px;
  align-items: center;
}
.table h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 60px;
  background: #100E79;
  width: 100%;
  padding: 5px 0;
  border-radius: 5px;
}
.table table {
  padding: 0 50px;
  margin-top: 10px;
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}
.table td,
.table th {
  width: auto;
  height: 50px;
  border: 1px solid black;
  padding: 10px;
}
.table td:hover,
.table th:hover {
  background: greenyellow;
}
.table td span,
.table th span {
  font-size: 30px;
}
.table td h3,
.table th h3 {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  color: red;
}
.table th:first-child,
.table td:first-child {
  width: 300px;
  background: #100E79;
  color: white;
  border-bottom: 2px solid white;
}
.table th:first-child:hover,
.table td:first-child:hover {
  background: teal;
}
.table tr:first-child {
  border-bottom: 1px solid rgb(174, 15, 15);
}
.table .tatble-content {
  padding: 0 40px;
}
.table .th {
  padding: 1px 50px;
}
.table td,
.table th {
  width: auto;
  height: 50px;
  border: 1px solid black;
  padding: 5px;
}
.table td .fa-sharp,
.table th .fa-sharp {
  color: rgb(174, 15, 15);
}
.table td span,
.table th span {
  font-size: 30px;
}
.table th:first-child,
.table td:first-child {
  width: 300px;
  background: #100E79;
  color: white;
  border-bottom: 2px solid white;
}
.table tr:first-child {
  border-bottom: 1px solid rgb(174, 15, 15);
}
.table tr:nth-child(even) {
  background: #706CAC;
}
.table .full {
  width: 100%;
}

table {
  padding: 0;
  margin: 0;
  width: 100%;
}
table td,
table th {
  width: auto;
  height: 50px;
  border: 1px solid black;
  padding: 10px;
}
table td span,
table th span {
  font-size: 30px;
}
table th:first-child,
table td:first-child {
  width: 300px;
  background: #100E79;
  color: white;
  border-bottom: 2px solid white;
}
table tr:first-child {
  border-bottom: 1px solid rgb(174, 15, 15);
}
table .tatble-content {
  padding: 0 40px;
}
table .th {
  padding: 1px 50px;
}
table td,
table th {
  width: auto;
  height: 50px;
  border: 1px solid black;
  padding: 5px;
}
table td .fa-sharp,
table th .fa-sharp {
  color: rgb(174, 15, 15);
}
table td span,
table th span {
  font-size: 30px;
}
table th:first-child,
table td:first-child {
  width: 300px;
  background: #100E79;
  color: white;
  border-bottom: 2px solid white;
}
table tr:first-child {
  border-bottom: 1px solid rgb(174, 15, 15);
}
table tr:nth-child(even) {
  background: #706CAC;
}

table tfoot tr {
  background: #100E79;
  border-collapse: collapse;
  color: white;
  border: none;
}
table tfoot tr th {
  width: 81.5px;
  border-collapse: collapse;
  border: none;
}
table tfoot tr th:nth-of-type(1) {
  width: 350px;
}
table tfoot th:nth-of-type(11) {
  width: 1px;
  display: flex;
  justify-content: start;
  align-items: center;
}
table tfoot tr:nth-of-type(2) th:nth-of-type(1) {
  background: #706CAC;
}

.appointment {
  margin: 80px 0;
}
.appointment form {
  padding-top: 30px;
}

footer {
  display: flex;
  justify-content: space-between;
  background: #100E79;
  color: white;
  padding: 30px 0;
}
footer p {
  padding: 10px;
}
footer .foot {
  display: flex;
  flex-direction: column;
  padding: 50px 0 0 50px;
}
footer .group-socail {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  justify-content: flex-start;
  flex-direction: row;
}
footer .foot3 {
  padding: 50px 0;
}
footer .foot3 .card {
  display: flex;
  flex-direction: column;
  justify-self: end;
  border-radius: 10px;
  background: white;
  box-shadow: rgb(0, 0, 0);
  padding: 10px;
  margin: 11px 2px 0 0;
  color: black;
}
footer .foot3 .card .while-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}/*# sourceMappingURL=check-up.css.map */