@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
body {
  background: rgb(255, 255, 255);
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.navbar-brand {
  overflow-x: hidden;
}
.navbar-brand img {
  width: 30px;
}
.navbar-brand span {
  margin-left: 20px;
}

.page {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: antiquewhite;
  padding-bottom: 20px;
}

.searchbar {
  width: 100%;
}
.searchbar .form-control {
  border: 2px black solid;
  background-color: #ffffff;
  color: #000000;
  font-weight: 550;
}
.searchbar .form-control::-moz-placeholder {
  color: #000000;
}
.searchbar .form-control::placeholder {
  color: #000000;
}
.searchbar .button-search.btn.btn-primary {
  background-color: rgba(255, 255, 255, 0);
  margin: 0;
  border: 0;
  color: #000000;
  transform: translateX(-90px);
}

.search-page {
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 92vh;
}
.search-page .searchbar-and-title {
  display: block;
  width: 50%;
  text-align: center;
}

.search-page-bottom {
  text-align: center;
  color: #000000;
}

.hidden {
  display: none;
}

.details-page {
  width: 100%;
  margin: 0;
  padding: 0;
}
.details-page .dynamic-box {
  width: 100%;
  margin: 0;
  padding: 0;
}
.details-page .dynamic-box .img-heading2 {
  padding: 30px;
  width: 100%;
  background-color: #000000;
  text-align: center;
  color: white;
}
.details-page .dynamic-box .img-heading2 img {
  position: relative;
  transform: translateX(50%);
}
.details-page .dynamic-box .dynamic-box {
  border: 2px solid #000; /* Adjust border properties as needed */
  padding: 10px; /* Optional: Add padding for better spacing */
}
.details-page .dynamic-box .img-heading3 {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.726);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  height: 92.1vh;
  text-transform: capitalize;
  font-size: 30px;
}
.details-page .dynamic-box .img-heading3 .four {
  color: #353060;
  font-size:80px;
  text-align: center;
}
.details-page .dynamic-box .img-heading3 .zero {
  color: #d6a936;
  font-size: 80px;
}
.details-page .dynamic-box .img-heading3 a {
  color: #d6a936;
}
.details-page .dynamic-box .certificate-number strong,
.details-page .dynamic-box .certificate-name strong,
.details-page .dynamic-box .certificate-issuedby strong,
.details-page .dynamic-box .certificate-company-name strong,
.details-page .dynamic-box .certificate-company-address strong,
.details-page .dynamic-box .certificate-issued-date strong,
.details-page .dynamic-box .certificate-expiration-date strong,
.details-page .dynamic-box .certificate-validity-valid strong,
.details-page .dynamic-box .certificate-validity-expired strong {
  display: block;
  margin-top: 20px;
}
.details-page .dynamic-box .certificate {
  margin-top: 50px;
  border: 2px black solid;
  text-align: center;
  font-size: larger;
  margin-left: 50px;
  margin-right: 50px;
  margin-bottom: 50px;
}
.details-page .dynamic-box .certificate .showing-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 50px;
}
.details-page .certificate-validity-valid {
  display: block !important;
  color: green;
}
.details-page .certificate-validity-valid span {
  color: green;
}
.details-page .certificate-validity-expired {
  display: block !important;
  color: rgb(209, 11, 11);
}
.details-page .certificate-validity-expired span {
  color: rgb(209, 11, 11);
}

.copyright {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  body {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .navbar-brand span {
    margin-left: 20px;
    font-size: 60%;
  }
  .navbar {
    width: 100%;
  }
  .search-page {
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 92vh;
  }
  .search-page .searchbar-and-title {
    display: block !important;
    width: 100%;
    margin: 20px;
    text-align: center;
  }
  .search-page .searchbar-and-title .form-button.d-flex {
    display: block !important;
    margin-top: 50px;
  }
  .search-page .searchbar-and-title .form-button.d-flex button {
    margin-top: 50px;
  }
  .search-page-bottom {
    text-align: center;
    color: #000000;
  }
  .certificate {
    margin-top: 50px;
    border: 2px black solid;
    text-align: center;
    font-size: larger;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 50px;
  }
  .certificate .showing-flex {
    display: block !important;
  }
  .certificate .showing-flex .certificate-number strong,
  .certificate .showing-flex .certificate-name strong,
  .certificate .showing-flex .certificate-issuedby strong,
  .certificate .showing-flex .certificate-company-name strong,
  .certificate .showing-flex .certificate-company-address strong,
  .certificate .showing-flex .certificate-issued-date strong,
  .certificate .showing-flex .certificate-expiration-date strong,
  .certificate .showing-flex .certificate-validity-valid strong,
  .certificate .showing-flex .certificate-validity-expired strong {
    display: block;
    margin-top: 50px;
  }
  .details-page .dynamic-box .img-heading3 {
    width: 100%;
    background-color: rgb(255, 255, 255);
    display: block;
    text-align: center;
    height: 92.1vh;
  }
  .details-page .dynamic-box .img-heading3 .need-help {
    text-align: center;
    padding-top: 100px;
    margin-bottom: 26px;
    font-size: 30px;
    text-transform: capitalize;
  }
  .details-page .dynamic-box .img-heading3 .need-help .four {
    text-align: center;
    color: #353060;
    font-size: 50px;
  }
  .details-page .dynamic-box .img-heading3 .need-help .zero {
    text-align: center;
    font-size: 50px;
    color: #d6a936;
  }
  .details-page .dynamic-box .img-heading3 .need-help h4 {
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=newcertificates.css.map */