:root {
  --white: #ffffff;
  --primary-color: #16171B;
  --secondary-color: #D4266A;
  --gray-color: #899199;
  --card-gradient: linear-gradient(153deg, rgba(148, 77, 152, 1) 0%, rgba(231, 25, 92, 1) 100%);
  --border-color: #CED3D8;
  --text-gradient: linear-gradient(90deg, #944D98 30%, #E7195C);
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: var(--primary-color);
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
}

.py-10 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.pb-10 {
  padding-bottom: 10rem;
}

.pt-10 {
  padding-top: 10rem;
}

.py-15 {
  padding-top: 15rem;
  padding-bottom: 15rem;
}

.row-flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.dflex-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.text-gradient {
  background: var(--text-gradient);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-relative {
  position: relative;
}

.title-section h2 {
  font-weight: 700;
  font-size: 60px;
  line-height: 8rem;
}
.title-section p {
  font-size: 18px;
}

.white-btn {
  background: var(--white);
  padding: 1rem 3rem;
  height: 45px;
  border: 0;
  border-radius: 30px;
  /* font-weight : 600; */
  font-size: 14px;
  color: var(--primary-color);
  display: inline-block;
  line-height: 25px;
  text-decoration: none;
}
.white-btn:hover {
  text-decoration: none;
  color: var(--primary-color);
}

.black-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 1rem 3rem;
  height: 45px;
  border: 0;
  border-radius: 30px;
  /* font-weight : 600; */
  font-size: 14px;
  display: inline-block;
  line-height: 25px;
  text-decoration: none;
}
.black-btn:hover {
  text-decoration: none;
  color: var(--white);
}

.gradient-btn {
  background: var(--card-gradient);
  color: var(--white);
  padding: 1rem 3rem;
  height: 45px;
  border: 0;
  border-radius: 30px;
  /* font-weight : 600; */
  font-size: 14px;
  display: inline-block;
  line-height: 25px;
  text-decoration: none;
}
.gradient-btn:hover {
  text-decoration: none;
  color: var(--white);
}

.view-btn {
  margin: 4rem 0;
}
.view-btn a {
  text-decoration: none;
}
.view-btn span {
  color: var(--primary-color) !important;
  padding-left: 1rem;
}

img {
  pointer-events: none;
}

.footer_section {
  padding: 6rem 0 4rem;
}
.footer_section p {
  margin-top: 2rem;
  font-size: 14px;
}
.footer_section h5 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 2rem;
}
.footer_section a {
  display: inline-block;
}
.footer_section .copyrights {
  color: var(--gray-color);
}

.footer-location ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  margin: 0;
  padding: 0 0rem 0 2rem;
}
.footer-location ul li {
  font-size: 1.4rem;
  font-weight: 400;
  list-style-type: disc;
}

.social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1rem;
}

.footer__copyright {
  border-top: 0.1rem solid rgba(0, 0, 0, 0.3);
  margin: 2rem 0 0;
}
.footer__copyright p {
  text-align: center;
}

.nav-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.body .nav-overlay {
  height: 100%;
  opacity: 1;
}

.error_page {
  height: 100vh;
  margin: 0 auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.error_page h1 {
  font-weight: 700;
  font-size: 79px;
}
.error_page p {
  width: 60%;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 769.99px) {
  .title-section h2 {
    font-size: 40px;
    line-height: 5rem;
    margin-bottom: 2rem;
  }
  .py-10 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .error_page {
    height: auto;
    min-height: 100vh;
  }
  .error_page h1 {
    font-size: 65px;
  }
  .error_page p {
    width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 991.99px) {
  .title-section h2 {
    font-size: 45px;
    line-height: 5rem;
    margin-bottom: 2rem;
  }
  .py-10 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .error_page p {
    width: 90%;
  }
}
@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 643px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}
.thank-you {
  min-height: 100vh;
}
.thank-you__banner {
  background-color: #E4F2F2;
  height: 48rem;
  position: relative;
}
.thank-you__banner img {
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  position: absolute;
}
.thank-you__content {
  max-width: 60rem;
  margin: 3rem auto 0;
  text-align: center;
}
.thank-you__content h2 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 1rem;
}
.thank-you__content p {
  font-size: 1.8rem;
  font-weight: 400;
  color: #000;
}
.thank-you__btn {
  margin: 2rem 0 0;
}

.default-btn {
  padding: 1.5rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff !important;
  border-radius: 3rem;
  background-color: #000;
  border: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 17px;
  white-space: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.error-message {
  color: red;
  margin-top: 5px;
  font-size: 12px;
}

.black-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Add styles for the loader */
.loader {
  border: 4px solid #fff;
  /* Light grey */
  border-top: 4px solid #D4266A;
  /* Blue */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin-right: 10px;
  display: none;
  /* Initially hide the loader */
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.canvas-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

canvas {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 991px) {
  canvas {
    height: 50vh;
  }
}
.error {
  height: 100vh;
  position: relative;
}
.error__not-found {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}
.error__not-found h1 {
  font-size: 6rem;
  margin: 0 0 1rem;
  color: #000;
  text-align: center;
  font-weight: 600;
}
.error__not-found p {
  color: #000;
  margin: 0 0 1.5rem;
  font-size: 1.6rem;
  text-align: center;
  font-weight: 400;
}
.error__btn {
  display: inline-block;
  margin: 2rem 0 0;
}
.error__btn a {
  padding: 1.6rem 2.4rem;
  background-color: #000;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.4rem;
}

@media (max-width: 480px) {
  .error__not-found h1 {
    font-size: 4rem;
  }
}