@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

body {
  font-family: "Montserrat", sans-serif;
}

body .main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}

body .main .redirect-link-wrapper {
  margin: 20px 0;
}

body .main .redirect-link {
  font-size: 14px;
  text-decoration: none;
  color: #000000;
  border: 1px solid #4c4c4c;
  padding: 10px 15px;
  border-radius: 20px;
}

body .main .redirect-link:hover,
body .main .redirect-link.active {
  background-color: #000;
  color: #fff;
}

body .main .logo {
  margin: 2rem 0;
  width: 110px;
  height: 131px;
  display: flex;
  justify-content: center;
}

@media (max-width: 991px) {
  body .main .logo {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  body .main .logo {
    margin-bottom: 1rem;
  }
}

body .main .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

body .main .result-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100px;
}

body .main .result-area .btn-download {
  padding: 1rem 2rem;
  margin: 1rem 0;
  background-color: #4a4a4a;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  display: none;
}

body .main .result-area .loader-area {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

body .main .result-area .loader-area .loader {
  /* Light grey */
  border: 16px solid #143361;
  /* Blue */
  border-top: 16px solid #fa7100;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  animation: spin 2s linear infinite;
}

body .main .result-area .loader-area .loader-text {
  color: #143361;
  font-size: 12px;
  text-align: center;
  line-height: 1.5;
}

body .main .content {
  display: flex;
  width: 100%;
  margin-top: 2rem;
  align-items: center;
  min-height: 50vh;
}

@media (max-width: 1366px) {
  body .main .content {
    margin-top: 3rem;
  }
}

@media (max-width: 1200px) {
  body .main .content {
    margin-top: 2rem;
  }
}

@media (max-width: 991px) {
  body .main .content {
    flex-direction: column;
    margin-bottom: 1rem;
  }
}

body .main .content .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (max-width: 1024px) {
  body .main .content .left {
    padding-left: 2rem;
  }
}

@media (max-width: 991px) {
  body .main .content .left {
    width: 100%;
    justify-content: center;
    margin-bottom: 2rem;
    padding-left: 0;
  }
}

body .main .content .left .example-excel {
  background: #f5f5f5;
  display: inline-flex;
  width: fit-content;
  border-radius: 30px;
  padding: 10px 20px;
  border: 1px solid #d5d5d5;
  color: #000;
}

body .main .content .left .example-excel a {
  padding-left: 5px;
  text-decoration: none;
  font-weight: bold;
  color: #000;
}

body .main .content .left .description {
  max-width: 630px;
  font-size: 40px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
  color: #000;
}

@media (max-width: 1366px) {
  body .main .content .left .description {
    font-size: 40px;
  }
}

@media (max-width: 1200px) {
  body .main .content .left .description {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  body .main .content .left .description {
    text-align: center;
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  body .main .content .left .description {
    text-align: center;
    font-size: 20px;
  }
}

@media (max-width: 580px) {
  body .main .content .left .description {
    text-align: center;
    font-size: 18px;
  }
}

body .main .content .right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (max-width: 991px) {
  body .main .content .right {
    width: 100%;
  }
}

body .main .content .right .certificate-type {
  z-index: 99999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #043e65;
  width: 340px;
  max-width: 90%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  color: white;
}

body .main .content .right .certificate-type .c-type-label {
  height: 50px;
  line-height: 50px;
  padding: 0 1.5rem 0 0.3rem;
  cursor: pointer;
}

body .main .content .right .certificate-type input {
  height: 50px;
  line-height: 50px;
  margin: 0;
  cursor: pointer;
}

body .main .content .right .upload-area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 90%;
  width: 340px;
  height: 300px;
}

@media (max-width: 991px) {
  body .main .content .right .upload-area {
    height: 250px;
  }
}

body .main .content .right .upload-area .dropzone {
  height: 100%;
  width: 100%;
  padding: 2rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border-radius: 10px;
  outline: none;
  border: none;
}

body .main .content .right .upload-area .dropzone .add-file-description {
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.21;
  letter-spacing: normal;
  text-align: left;
  color: white;
  margin-top: 2rem;
}

body .main .content .right .upload-area .dropzone .add-file {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2rem;
}

body .main .content .right .upload-area .dropzone .add-file .ic-add {
  background-color: #999999;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

body .main .content .right .upload-area .dropzone .add-file .add-text {
  width: 200px;
  padding-left: 1rem;
  font-size: 27px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  letter-spacing: normal;
  text-align: left;
  color: white;
}

/*# sourceMappingURL=style.css.map */