* {
  box-sizing: border-box;
  font-family: "Kumbh Sans", sans-serif;
}

body {
  padding-top: 157px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Prompt", sans-serif;
}

.pd {
  padding: 100px 0px;
}

.mr {
  margin: 30px 0px;
}

.gr {
  background-color: #f8f9fa;
}

.hd {
  font-size: 30px;
  font-weight: 700;
  /* color: #3f3a64; */
  color: #3b8dbd;
  line-height: 1.3;
}

.para {
  font-size: 18px;
  line-height: 28px;
  color: #666;
  opacity: 0.8;
  text-align: justify;
}

p {
  font-size: 16px;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}



@media (max-width: 1024px) {
  .hd {
    font-size: 26px;
  }

  .para {
    font-size: 16px;
    line-height: 26px;
  }

  p {
    font-size: 15px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

}


@media (max-width: 768px) {
  .hd {
    font-size: 24px;
  }

  .para {
    font-size: 15px;
    line-height: 24px;
  }

  p {
    font-size: 14px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }


}


@media (max-width: 426px) {
  .hd {
    font-size: 20px;
  }

  .para {
    font-size: 13px;
    line-height: 22px;
  }

  p {
    font-size: 13px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }


}




/* Full screen overlay css starts */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 9999;
}

.overlay>div {
  display: flex;
  flex-direction: column;
  align-items: center;

  background: rgba(255, 255, 255, 0.08);
  padding: 20px 30px;
  border-radius: 12px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.spinner {
  width: 45px;
  height: 45px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #ffffff;
  border-radius: 50%;

  animation: spin 0.8s linear infinite;
}

.overlay p {
  color: #fff;
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 0.5px;
}


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

.overlay {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 425px) {
  .overlay>div {
    padding: 15px 20px;
  }

  .spinner {
    width: 35px;
    height: 35px;
  }
}


/* Full screen overlay css ends */


@media (max-width: 768px) {
  .thanks-page {
    margin-top: 30px;
  }

}


