.nasalization {
  font-family: nasalization, sans-serif !important;
  font-style: normal;
}

body {
  font-family: "Poppins", sans-serif;
  color: #000009;
}

.page-container {
  max-width: 1920px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.root-padding {
  padding-right: 20px;
  padding-left: 20px;
}

.home-nav {
  width: 100%;
  background: linear-gradient(56deg, #642269 0%, #0b2b5e 48%, #000009 100%);
}

.home-nav nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.home-nav nav .brand img {
  width: 100%;
  max-width: 180px;
}

.certificate-page {
  width: 100%;
}

/* .certificate-container .certificate-section {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
} */

/* .certificate-section .certificate-slider {
  width: 100%;
  height: 100%;
} */

/* .certificate-slider .slider-container {
  width: 100%;
  height: 100%;
} */

/* .certificate-container .student-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
} */

.skill-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 32px;
}

.skill-container .skills {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.skills .skill {
  background-color: #eeeeee;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
}

.date-type {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  gap: 10px;
  margin-bottom: 32px;
}

.date-type .date,
.date-type .type {
  width: fit-content;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
}

.details-container {
  width: 100%;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.details-container .certificate-details {
  width: 100%;
  max-width: 1000px;
}


.blockchain-details {
  margin-bottom: 64px;
}

.blockchain-details p {
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 16px;
  word-break: break-all;
}

.blockchain-details p a {
  color: #395aff;
  word-break: break-all;
}

.modal .verified i {
  /* min-width: 30px;
  min-height: 30px;
  background-color: green;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px; */
  color: green;
  font-size: 28px;
  margin-right: 0.8rem;
}

.social-share {
  cursor: pointer;
}

.social-share img {
  width: 40px;
  height: 40px;
}

.cert-thumb {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.cert-thumb .thumb {
  width: 80px;
  height: 80px;
}

.cert-thumb .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

footer {
  width: 100%;
  min-height: 300px;
  background: linear-gradient(56deg, #642269 0%, #0b2b5e 48%, #000009 100%);
  color: #ffffff;
}

footer .footer-column h4 {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  position: relative;
  margin-top: 10px;
  margin-bottom: 20px;
}

footer .footer-column h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  border-bottom: 3px solid #ccc;
  width: 13%;
}

footer .footer-column img {
  max-width: 200px;
  max-height: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
}

footer .footer-column p {
  font-size: 14px;
  line-height: 1.3;
}

footer .footer-column ul {
  list-style: none;
  margin-top: 10px;
  padding-inline-start: 0;
}

footer .footer-column ul li {
  padding: 5px 0;
  font-size: 18px;
}

footer .footer-column ul li a {
  text-decoration: none;
  color: inherit;
}

footer .copyrights {
  max-width: 100%;
  padding: 20px;
  text-align: center;
  color: #ccc;
  font-size: 12px;
  border-top: 1px solid #555;
}

.title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  margin: 0;
}

.sub-title {
  font-size: 16px;
  margin-bottom: 20px;
  color: #aaaaaa;
  margin: 0;
}

.desc {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.profile-info .profile .detail .name {
  width: 100%;
  max-width: 200px;
  display: block;
}

.profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile .profile-pic img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.profile .detail .name {
  font-weight: 600;
  font-weight: 600;
}

.profile .detail .link a {
  font-size: 12 px;
}

.v-divider {
  border-left: 1px solid #aaaaaa;
  min-height: 100%;
}

.fs-7 {
  font-size: 0.8rem !important;
}

.cert-img-container {
  width: 100%;
  height: 300px;
}

.cert-img-container img {
  height: 100%;
  object-fit: contain;
}

/* responsive css */
@media only screen and (min-width: 640px) {
  .root-padding {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (min-width: 768px) {
  .root-padding {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media only screen and (min-width: 1024px) {
  .root-padding {
    padding-right: 80px;
    padding-left: 80px;
  }
}

@media only screen and (min-width: 1280px) {
  .root-padding {
    padding-right: 100px;
    padding-left: 100px;
  }

  .cert-img-container {
    height: 350px;
  }
}

@media only screen and (min-width: 1650px) {
  .root-padding {
    padding-right: 140px;
    padding-left: 140px;
  }

  .cert-img-container {
    height: 480px;
  }
}

.certificate-copy-success,
.badge-copy-success,
.iframe-copy-success,
.email-send-successfully {
  color: green;
}

.invalid-email {
  color: red;
}

.toastify-css {
  color: #555555;
  background: #ffffff;
  border-bottom: 5px solid red;
  width: 300px;
  height: 70px;
  display: flex;
  align-items: center;
}

.toastify-css button {
  color: #000000;
  position: absolute;
  top: 5px;
  right: 5px;
}