:root {
  --theme-font: "Poppins", sans-serif;
  --theme-color-light: #fff;
  --font-color: #353535;
  --theme-color-dark: #000;
  --theme-color-primary: #07192B;
  --theme-color-success: #8cc229;
  --theme-color-success-light: #efffef;
  --theme-color-danger: #FF4E30;
  --theme-color-orange-light: #ffe2dd;
  --theme-color-warning: #FE9004;
  --theme-yellow-light-color: #ffeddf;
  --theme-color-info: #02CBF3;
  --theme-color-info-light: #1bb8e6;
  --theme-cyan-light-color: #e2f8ff;
  --theme-color-danger-light: #EE2153;
  --theme-pink-light-color: #ffe4e9;
  --theme-color-secondary: #dcdcdc;
  --theme-color-primary-dark: #4A24E8;
  --theme-color-primary-light: #6e59c9;
}

body {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: var(--font-color);
  box-sizing: border-box;
  line-height: 26px;
}

.container {
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--theme-font);
  color: var(--theme-color-dark);
}

ul, ol li {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--font-color);
}

.py-6 {
  padding: 110px 0;
}

.py-8 {
  padding: 104px 0;
}

a {
  text-decoration: none;
}

.btn-custom {
  font-weight: 500;
  font-size: 16px;
  border-radius: 500px;
  padding: 15px 20px;
  transition: all 0.5s ease;
}

.btn-custom-outline {
  color: var(--theme-color-light) !important;
  background: linear-gradient(298.53deg, #4A24E8 2.97%, #603DEF 91.69%);
  position: relative;
  transition: all 0.5s ease;
}
.btn-custom-outline:hover::after {
  bottom: 0;
  left: 0;
}
.btn-custom-outline::after {
  content: "";
  position: absolute;
  border: 2px solid #4A24E8;
  height: 100%;
  border-radius: 100px;
  left: 7px;
  right: 0;
  width: 100%;
  bottom: 7px;
  z-index: -1;
  transition: all 0.5s ease;
}

.btn-custom-dark {
  color: var(--theme-color-light) !important;
  background-color: #07192b;
  position: relative;
  transition: all 0.5s ease;
}
.btn-custom-dark:hover::after {
  bottom: 0;
  left: 0;
}
.btn-custom-dark::after {
  content: "";
  position: absolute;
  border: 1px solid #07192b;
  height: 100%;
  border-radius: 100px;
  left: 7px;
  right: 0;
  width: 100%;
  bottom: 7px;
  transition: all 0.5s ease;
}

.btn-custom-warning {
  color: var(--theme-color-light) !important;
  background-color: var(--theme-color-warning);
  position: relative;
  transition: all 0.5s ease;
}
.btn-custom-warning:hover::after {
  bottom: 0;
  left: 0;
}
.btn-custom-warning::after {
  content: "";
  position: absolute;
  border: 1px solid var(--theme-color-warning);
  height: 100%;
  border-radius: 100px;
  left: 7px;
  right: 0;
  width: 100%;
  bottom: 7px;
  transition: all 0.5s ease;
}

.btn-custom-info {
  color: var(--theme-color-light) !important;
  background-color: var(--theme-color-info);
  position: relative;
  transition: all 0.5s ease;
}
.btn-custom-info:hover::after {
  bottom: 0;
  left: 0;
}
.btn-custom-info::after {
  content: "";
  position: absolute;
  border: 1px solid var(--theme-color-info);
  height: 100%;
  border-radius: 100px;
  left: 7px;
  right: 0;
  width: 100%;
  bottom: 7px;
  transition: all 0.5s ease;
}

.btn-custom-danger {
  color: var(--theme-color-light) !important;
  background-color: var(--theme-color-danger-light);
  position: relative;
  transition: all 0.5s ease;
}
.btn-custom-danger:hover::after {
  bottom: 0;
  left: 0;
}
.btn-custom-danger::after {
  content: "";
  position: absolute;
  border: 1px solid var(--theme-color-danger-light);
  height: 100%;
  border-radius: 100px;
  left: 7px;
  right: 0;
  width: 100%;
  bottom: 7px;
  transition: all 0.5s ease;
}

.btn-custom-success {
  color: var(--theme-color-light) !important;
  background-color: var(--theme-color-success);
  position: relative;
  transition: all 0.5s ease;
}
.btn-custom-success:hover::after {
  bottom: 0;
  left: 0;
}
.btn-custom-success::after {
  content: "";
  position: absolute;
  border: 1px solid var(--theme-color-success);
  height: 100%;
  border-radius: 100px;
  left: 7px;
  right: 0;
  width: 100%;
  bottom: 7px;
  transition: all 0.5s ease;
}

.btn-custom-primary {
  color: var(--theme-color-light) !important;
  background-color: var(--theme-color-danger);
  position: relative;
  transition: all 0.5s ease;
}
.btn-custom-primary:hover::after {
  bottom: 0;
  left: 0;
}
.btn-custom-primary::after {
  content: "";
  position: absolute;
  border: 1px solid var(--theme-color-danger);
  height: 100%;
  border-radius: 100px;
  left: 7px;
  right: 0;
  width: 100%;
  bottom: 7px;
  transition: all 0.5s ease;
}/*# sourceMappingURL=global.css.map */