@font-face {
  font-family: hack;
  src: url(fonts/Hack-Regular.ttf);
}
@font-face {
  font-family: hack-bold;
  src: url(fonts/Hack-Bold.ttf);
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "hack", sans-serif;
  font-size: 18px;
}

#hero-sec {
  min-height: 100vh;
  width: 100%;
  background: url(images/banner.png);
  background-position: center;
  background-size: cover;
  position: relative;
  color: #ffffff;
}
#hero-sec a {
  width: 60%;
  padding: 50px;
}
#hero-sec #header {
  min-width: 600px;
  width: 60%;
}

#hero-sec, #hero-sec a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#certificate-sec, #certificate-sec-contents {
  border: 10px solid #1C2042;
}

#certificate-sec {
  padding: 6px;
  margin: 20px;
  background: #ffffff;
}

#certificate-sec-contents {
  padding: 16px;
  margin: 6px;
}
#certificate-sec-contents #logo-area {
  display: flex;
  justify-content: center;
  background: #1b1b32;
}
#certificate-sec-contents #logo-area img {
  width: 50%;
  padding: 25px;
}
#certificate-sec-contents #certificates-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#certificate-sec-contents #certificates-area #texts {
  text-align: center;
  margin: 10px;
}
#certificate-sec-contents #certificates-area #texts div:last-child {
  font-size: 1.6rem;
  margin-top: 8px;
  font-family: "hack-bold";
}
#certificate-sec-contents #certificates-area #certificates {
  margin: 10px 0px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 0px;
}
#certificate-sec-contents #certificates-area #certificates > * {
  display: flex;
  justify-content: center;
  text-align: center;
}
#certificate-sec-contents #certificates-area #certificates a {
  color: #0a0a23;
}
#certificate-sec-contents #certificates-area #certificates .numbers::after, #certificate-sec-contents #certificates-area #certificates .numbers::before {
  content: "";
  position: relative;
  top: 15px;
  height: 2px;
  width: 50%;
  background: #1C2042;
}
#certificate-sec-contents #certificates-area #certificates .numbers span {
  width: 45px;
  border-radius: 50%;
  font-size: 0.8rem;
  text-align: center;
  border: 4px solid #1C2042;
  padding: 10px;
}
#certificate-sec-contents #certificates-area #certificates .numbers span:hover {
  background-color: #1b1b32;
}
#certificate-sec-contents #certificates-area #certificates .numbers span:hover > * {
  color: #ffffff;
}

#footer {
  padding: 20px;
  background: #1b1b32;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footer img {
  width: 30px;
}
#footer > * {
  padding: 8px;
}
#footer #partners #img-area {
  display: flex;
  justify-content: space-evenly;
}
#footer #partners img {
  margin: 10px;
  align-self: center;
}
#footer #singup {
  background: #ffffff;
  border-radius: 2px;
  border: 2px solid #ffffff;
  padding: 12px 6px;
}

a {
  color: #0a0a23;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */