:root {
	--color-primary: #f74a1f;
  --color-primary-hover: #c83e1c;
	--color-third: #FFF1DA;
 	--color-black: #000000;
 	--color-dark: #141517;
 	--color-light: #F7F7F7;
  --color-light-border: #D2D4CF;
  --color-body: #142D2B;
  --color-white: #FFF;
  --color-gray: #CDCDD0;
  --color-border: #D3D5D0;
  --color-highlight: #F17556;
  --border-radius-pill: 50rem;
  --border-radius: 15px;
  --color-success: #2E9859;
  --color-success-hover: #1f6d3e;
  --box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
}
html {
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
  background-color: var(--color-light);
}

/* Reset */
.reset-list {
  list-style: none;
  margin: 0;
  padding: 0; 
}
.fw-bold {
	font-weight: 700 !important; 
}
.img-abs-center {
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  width: 100%;
}
.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    content: "";
}
.mt-lg-10, .my-lg-10 {
  margin-top: 100px !important;
}
.mb-lg-10, .my-lg-10 {
  margin-bottom: 100px !important;
}
.mt-5, .my-5 {
  margin-top: 50px !important;
}
.mb-lg-5, .my-lg-5 {
  margin-bottom: 50px !important;
}
.bg-gray {
	background-color: var(--color-gray) !important; 
}
.bg-light {
	background-color: var(--color-light) !important; 
}
.bg-black {
	background-color: var(--color-black) !important; 
}
/* Bootstrap Gutters */
.g-4 > * + * {
  margin-top: 1.5rem; /* 24px vertical spacing */
}

@media (min-width: 576px) {
  .g-4 {
    display: flex;
    gap: 1.5rem; /* 24px gap */
  }
  .g-4 > * + * {
    margin-top: 0; /* Reset vertical margin */
  }
}

/* Forms */
.fancy-select {
	border-radius: var(--border-radius-pill); 
}