/* Import Google Fonts */
/* DM Sans */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
/*Inria Serif */
@import url("https://fonts.googleapis.com/css2?family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");

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

:root {
  --highlight-color: #d90166;
  --body-text-color: #000000;
  --light-text-color: #3c3c43d9;
  --subscribe-btn: #fec107;
  --footer-bg: #14213d;
  --primary-font: "DM Sans", sans-serif;
  --secondary-font: "Inria Serif", serif;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--primary-font);
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  line-height: 21px;
  color: var(--body-text-color);
  background: #ffffff;
}

a {
  text-decoration: none;
}

/* pop up styles */
/* .popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000033;
  z-index: 100;
}

.pop-up {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  width: 343px;
  height: auto;
  top: 16.125rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 34px 22px;
}

.pop-up .close {
  width: 16px;
  height: 16px;
  cursor: pointer;
  position: absolute;
  right: 22px;
  top: 22px;
}

.pop-up .subscribe-check {
  background-image: url("/assets/pop-up/Ellipse.svg");
  background-repeat: no-repeat;
  background-position: center;
  padding: 17.5px 14.17px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pop-up .subscribe-check img {
  width: 31.76px;
  height: 25px;
}

.pop-up h1 {
  margin-top: 1.75rem;
  color: #d90166;
  font-size: 1.5rem;
  line-height: 20px;
  font-family: var(--secondary-font);
  font-weight: 700;
}

.pop-up p {
  margin-top: 1.5rem;
  color: #000000;
  font-family: var(--primary-font);
  font-size: 0.875rem;
  line-height: 21px;
  text-align: center;
}

.pop-up .okay-btn {
  display: flex;
  align-items: center;
  margin: 22px 0 0 0;
  background: var(--subscribe-btn);
  font-size: 0.875rem;
  font-family: var(--primary-font);
  font-weight: 500;
  padding: 16px 30px;
  border-radius: 50px;
  width: 93px;
  height: 40px;
  cursor: pointer;
}

.pop-up .okay-btn:hover {
  background: #fecd39;
}

.pop-up .error-check {
  background-image: url("/assets/pop-up/error-ellipse.svg");
  background-repeat: no-repeat;
  background-position: center;
  padding: 17.5px 14.17px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pop-up .error-check img {
  width: 31.76px;
  height: 25px;
}

.pop-up .error-heading {
  margin-top: 1.75rem;
  color: #ff0000;
  font-size: 1.5rem;
  line-height: 20px;
  font-family: var(--secondary-font);
  font-weight: 700;
}

.pop-up .error-desc {
  margin-top: 1.5rem;
  color: #ff0000;
  font-family: var(--primary-font);
  font-size: 0.875rem;
  line-height: 21px;
  text-align: center;
}
.pop-up .error-ok-btn {
  display: flex;
  align-items: center;
  margin: 22px 0 0 0;
  background: #ff0000;
  color: #ffffff;
  font-size: 0.875rem;
  font-family: var(--primary-font);
  font-weight: 500;
  padding: 16px 30px;
  border-radius: 50px;
  width: 93px;
  height: 40px;
  cursor: pointer;
}

.pop-up .error-ok-btn:hover {
  background: #df2626d5;
} */
/* Styles for larger screens */
/* @media (min-width: 1024px) {
  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000033;
    z-index: 100;
  }

  .pop-up {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    position: relative;
    width: 575px;
    height: 385px;
    padding: 50px 0;
  }

  .pop-up .close {
    width: 16px;
    height: 16px;
    cursor: pointer;
    position: absolute;
    right: 1.4375rem;
    top: 1.6875rem;
  }

  .pop-up .subscribe-check {
    background-image: url("/assets/pop-up/Ellipse.svg");
    background-repeat: no-repeat;
    background-position: center;
    padding: 17.5px 14.17px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .pop-up .subscribe-check img {
    width: 31.76px;
    height: 25px;
  }

  .pop-up h1 {
    margin-top: 1.75rem;
    color: #d90166;
    font-size: 2rem;
    line-height: 24px;
    font-family: var(--secondary-font);
    font-weight: 700;
  }

  .pop-up p {
    margin-top: 1.5rem;
    color: #000000;
    font-family: var(--primary-font);
    font-size: 1rem;
    line-height: 24px;
    text-align: center;
    padding: 0 3.1875rem 0 3.1875rem;
  }

  .pop-up .okay-btn {
    display: flex;
    align-items: center;
    margin: 28px 0 0 0;
    background: var(--subscribe-btn);
    font-size: 16px;
    font-family: var(--primary-font);
    font-weight: 500;
    padding: 18px 36px;
    border-radius: 50px;
    width: 113px;
    height: 48px;
  }

  .pop-up .okay-btn:hover {
    background: #fecd39;
  }
} */

/* pop up styles */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000033;
  z-index: 100;
}

.pop-up {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  width: 343px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 34px 22px;
}

.pop-up .close {
  width: 16px;
  height: 16px;
  cursor: pointer;
  position: absolute;
  right: 22px;
  top: 22px;
}

/* Success pop-up styles */
.success-popup .subscribe-check {
  background-image: url("/static/assets/pop-up/Ellipse.svg");
  background-repeat: no-repeat;
  background-position: center;
  padding: 17.5px 14.17px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.success-popup .subscribe-check img {
  width: 31.76px;
  height: 25px;
}

.success-popup h1 {
  margin-top: 1.75rem;
  color: #d90166;
  font-size: 1.5rem;
  line-height: 20px;
  font-family: var(--secondary-font);
  font-weight: 700;
}

.success-popup p {
  margin-top: 1.5rem;
  color: #000000;
  font-family: var(--primary-font);
  font-size: 0.875rem;
  line-height: 21px;
  text-align: center;
}

.success-popup .okay-btn {
  display: flex;
  align-items: center;
  margin: 22px 0 0 0;
  background: var(--subscribe-btn);
  font-size: 0.875rem;
  font-family: var(--primary-font);
  font-weight: 500;
  padding: 16px 30px;
  border-radius: 50px;
  width: 93px;
  height: 40px;
  cursor: pointer;
}

.success-popup .okay-btn:hover {
  background: #fecd39;
}

/* Error pop-up styles */
.error-popup .error-check {
  background-image: url("/static/assets/pop-up/error-ellipse.svg");
  background-repeat: no-repeat;
  background-position: center;
  padding: 17.5px 14.17px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-popup .error-check img {
  width: 31.76px;
  height: 25px;
}

.error-popup .error-heading {
  margin-top: 1.75rem;
  color: #d90166;
  font-size: 1.5rem;
  line-height: 20px;
  font-family: var(--secondary-font);
  font-weight: 700;
}

.error-popup .error-desc {
  margin-top: 1.5rem;
  color: #000000;
  font-family: var(--primary-font);
  font-size: 0.875rem;
  line-height: 21px;
  text-align: center;
}

.error-popup .error-ok-btn {
  display: flex;
  align-items: center;
  margin: 22px 0 0 0;
  background: var(--subscribe-btn);
  font-size: 0.875rem;
  font-family: var(--primary-font);
  font-weight: 500;
  padding: 16px 30px;
  border-radius: 50px;
  width: 93px;
  height: 40px;
  cursor: pointer;
}

.error-popup .error-ok-btn:hover {
  background: #fecd39;
}

/* Styles for larger screens */
@media (min-width: 1024px) {
  .pop-up {
    width: 575px;
    padding: 50px 0;
  }

  .pop-up .close {
    right: 1.4375rem;
    top: 1.6875rem;
  }

  .success-popup h1,
  .error-popup .error-heading {
    font-size: 2rem;
    line-height: 24px;
  }

  .success-popup p,
  .error-popup .error-desc {
    font-size: 1rem;
    line-height: 24px;
    padding: 0 3.1875rem;
  }

  .success-popup .okay-btn,
  .error-popup .error-ok-btn {
    font-size: 16px;
    padding: 18px 36px;
    width: 113px;
    height: 48px;
  }
}
