:root {
  --theme-font: "Figtree", sans-serif;
  --theme-heading-font: "DM Serif Text", serif;
  --font-color: #000000;
  --theme-color: #0066CC; 
	/* --theme-color: #1F3567; */
  --theme-color-info: #F0F8FF;
  --theme-color-alt: #0066CC;
  --theme-color-light: #fff;
  --theme-color-dark: #333333;
  --theme-color-grey: #F4F5F7;
}

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

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

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


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

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

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

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

.btn_custom_warning {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: var(--theme-color);
  background: transparent;
  text-decoration: none;
  border: 1px solid;
  border-image-slice: 1;
  border-radius: 10px;
  position: relative;
  transition: all 0.3s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
}

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

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

.btn-custom {
  display: inline-block;
  font-weight: 400;
  font-size: 18px;
  padding: 14px 20px;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  background-color: var(--theme-color-light);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-custom-light {
  background: linear-gradient(90deg, #0066CC 0%, #1F3567 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.btn-custom-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white; /* White background */
  z-index: -1;
  border-radius: 5px;
}

.custom-btn-outline-gradient {
  position: relative;
  background: white;
  padding: 12px 34px;
  font-size: 18px;
  font-weight: 400;
  border: none; /* Remove default border */
  border-radius: 4px; /* Ensure border radius applies */
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #0066CC 0%, #1F3567 100%);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s linear;
  z-index: 1;
}

/* Gradient border using ::before */
.custom-btn-outline-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #0066CC 0%, #1F3567 100%);
  border-radius: 4px; /* Apply border-radius */
  z-index: -1;
  padding: 1px; /* Border thickness */
  -webkit-mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Optional: Hover effect */
.custom-btn-outline-gradient:hover {
  background: linear-gradient(90deg, #0066CC 0%, #1F3567 100%);
  -webkit-text-fill-color: white;
  color: white;
}
.custom-btn-outline-gradient:hover svg path {
  fill: var(--theme-color-light);
}/*# sourceMappingURL=global.css.map */