:root {
  --theme-font: "Figtree", sans-serif;
  --theme-heading-font: "DM Serif Text", serif;
  --custom-large-font: "Inter", sans-serif;
  --font-color: #636363;
  --theme-color: #845EF7;
  --theme-color-info: #C0E1F3;
  --theme-color-alt: #006F90;
  --theme-color-light: #fff;
  --theme-color-dark: #10022c;
  --theme-color-grey: #f7f7f7;
}

body {
  font-size: 16px;
  font-family: var(--theme-font);
  color: var(--font-color);
  line-height: 26px;
  font-weight: 400;
}

.container {
  max-width: 1170px !important;
  margin-left: auto;
  margin-right: auto;
}

a {
  text-decoration: none !important;
  color: var(--theme-color-dark);
}

a:hover {
	 color:#7c52ff;
}

.mb-6 {
  margin-bottom: 20px;
}

.mb-7 {
  margin-bottom: 30px;
}

.btn_custom {
  font-family: var(--custom-large-font);
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 16px;
}

.btn-custom-primary {
  background-color: var(--theme-color);
  color: var(--theme-color-light);
  transition: all 0.5s ease;
  border: 1px solid var(--theme-color);
}
.btn-custom-primary:hover {
  background-color: transparent;
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
}

.btn-custom-light {
  background-color: var(--theme-color-light);
  color: var(--theme-color);
  transition: all 0.5s ease;
  border: 1px solid var(--theme-color-light);
}
.btn-custom-light:hover {
  background-color: transparent;
  border: 1px solid var(--theme-color-light);
  color: var(--theme-color-light);
}

.btn-custom-outline-info {
  background-color: transparent;
  border: 1px solid var(--theme-color-alt);
  color: var(--theme-color-alt);
}
.btn-custom-outline-info:hover {
  background-color: var(--theme-color-alt);
  border: 1px solid var(--theme-color-alt);
  color: var(--theme-color-light);
}

/******************padding*****************************/
.py-6 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.py-7 {
  padding-top: 75px;
  padding-bottom: 75px;
}

.mb-6 {
  margin-bottom: 45px;
}

body {
  color: #10022c;
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
}

.custom_btn {

  font-size: 16px;
  line-height: 100%;
}

.custom_btn_primary {
  background-color: #7c52ff;
  border-radius: 8px;
  padding: 12px 18px;
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.custom_btn_primary:hover {
 
  color: #fff;
}

h1 {
  font-weight: 700;
  font-size: 50px;
  line-height: 70px;
  color: #10022c;
}

h2 {
  font-weight: 700;
  font-size: 35px;
  color: #10022c;
}/*# sourceMappingURL=global.css.map */