:root {
    --orange-color: #F08013;
    --dark-color: #37462F;
    --green-color: #63B337;
    --dark-gray:#B7B7B7;
    --light-gray:#F3F3F3;
}


/* Text Fonts */

* {
    font-family: 'Monserrat', sans-serif;
    font-size: 16px;
    color: var(--dark-color);
    line-height: 1.188rem;
}

@media screen and (max-width: 991px) {
    * {
        font-size: 14px;
    }
}

h1 {
    font-size: 1.5rem;
    line-height: 1.813rem;
    font-family: 'Sen', sans-serif;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-family: 'Sen', sans-serif;
    font-weight: 700;
    color: var(--green-color);
}

hr {
    border-top: 1px solid var(--dark-gray) !important;
    opacity: 1 !important;
}

/* Text Sizes */
.text-12px {
    font-size: 0.75rem !important;
}

.text-14px {
    font-size: 0.875rem !important;
}

.text-16px {
    font-size: 1rem !important;
}

.text-18px {
    font-size: 1.125rem !important;
}

.text-20px {
    font-size: 1.25rem !important;
}

.text-21px {
    font-size: 1.313rem !important;
}

.text-22px {
    font-size: 1.375rem !important;
}

.text-23px {
    font-size: 1.438rem !important;
}

.text-24px {
    font-size: 1.5rem !important;
}

.text-26px {
    font-size: 1.625rem !important;
}

.text-28px {
    font-size: 1.75rem !important;
}

.text-30px {
    font-size: 1.875rem !important;
}

.text-32px {
    font-size: 2rem !important;
}

.text-34px {
    font-size: 2.125rem !important;
}

.text-36px {
    font-size: 2.25rem !important;
}

.text-38px {
    font-size: 2.375rem !important;
}

.text-40px {
    font-size: 2.5rem !important;
}

.text-42px {
    font-size: 2.625rem !important;
}

/* Font Weights */

.font-heavy {
    font-weight: 900 !important;
}

.font-ex-bold {
    font-weight: 800 !important;
}

.font-bold {
    font-weight: 700 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-normal {
    font-weight: 400 !important;
}

.font-light {
    font-weight: 300 !important;
}

.font-ex-light {
    font-weight: 200 !important;
}

.font-thin {
    font-weight: 100 !important;
}

.font-Sen {
    font-family: 'Sen', sans-serif !important;
}

.font-Monserrat-LItalic {
    font-family: 'Monserrat', sans-serif !important;
    font-style: italic;
    font-weight: 300;
}

/* Background Colors */
.bg-green {
    background-color: var(--green-color) !important;
}

.bg-gray {
    background-color: #F2F2F2 !important;
}

.bg-dark-gray {
    background-color: var(--dark-gray) !important;
}

.bg-light-gray {
    background-color: var(--light-gray) !important;
}

.bg-selection-gray {
    background-color: #ECECEC !important;
}

.bg-f9 {
    background-color: #f9f9f9 !important;
}

/* Text Colors */
.text-orange {
    color: var(--orange-color) !important;
}
.text-dark {
    color: var(--dark-color) !important;
}
.text-green {
    color: var(--green-color) !important;
}

.text-dark-gray {
    color: var(--dark-gray) !important;
}

.mb-10px {
    margin-bottom: 0.625rem !important;
}

.mb-4-5 {
    margin-bottom: 2rem !important;
}

.mb-40px {
    margin-bottom: 2.5rem !important;
}

.mb-55px {
    margin-bottom: 3.438rem !important;
}

.mt-56px {
    margin-top: 3.5rem !important;
}

.mb-80px {
    margin-bottom: 5rem !important;
}

.mt-93px {
    margin-top: 5.813rem !important;
}
/* Content wrapper class */
.wrapper {
    position: relative;
    width: 100%;
    /*max-width: var(--container_width);*/
    margin-inline: auto;
    padding-inline: 1rem;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-body {
    height: 56px;
    opacity: 1;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.header-logo {
    padding-top: 13px;
    padding-bottom: 12px;
    margin-left: 5%;
}

.footer-body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 128px;
    padding: 24px 5%;
    gap: 24px;
}

@media screen and (max-width: 991px) {
    .footer-body {
        flex-wrap: wrap;
    }

    .wrapper {
        width: 93%;
    }
    
}

.introduction-container {
    margin-top: 3.313rem;
    max-width: 494px;
    margin-left: auto;
    margin-right: auto;
    
}

.button-container {
    margin-top: 3.625rem;
    margin-bottom: 6rem;
}

.button-container.stepthree {
    display: flex;
    gap: 1rem; /* Adds 1rem spacing between the buttons */
    justify-content: space-between; /* Optional: Adjust alignment */
    align-items: center; /* Optional: Align items vertically */
}

.start-button {
    padding: 13px 24px 12px 24px;
    background: var(--orange-color);
    border-radius: 13px;
    opacity: 1;
    border: none;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.start-button:hover,
.start-button:active,
.start-button:focus {
    background: #d96f0e !important;
    color: white !important;
    outline: none !important;
}

.return-button {
    padding: 13px 24px 12px 24px;
    background: white;
    border-radius: 13px;
    opacity: 1;
    border: 1px solid var(--orange-color);
    color: var(--orange-color);
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.return-button:hover,
.return-button:active,
.return-button:focus {
    background: #ECECEC !important;
    border: 1px solid var(--orange-color);
    color: var(--orange-color) !important;
    outline: none !important;
}

/*Step Indicator*/
.step-indicator {
    position: relative;
    max-width: 494px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
}

.step-item {
    flex: 1;
}

.step-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #D9D9D9;
    border: 4px solid #D9D9D9;
    position: relative;
    z-index: 2;
}

.step-circle.active {
    background-color: #F08013;
    border-color: #F08013;
}

.step-label {
    color: #B7B7B7;
    line-height: 1.3;
}

.step-label.active-text {
    color: #F08013;
}

.step-line {
    position: absolute;
    top: 9px; /* half of circle height */
    width: 100%;
    height: 2px;
    background-color: #D9D9D9;
    z-index: 1;
}

/* .step-line.active {
    background-color: #F08013;
} */

.form-control:focus {
    border: var(--bs-border-width) solid var(--bs-border-color) !important;
    box-shadow: none !important;
}

.react-select-container * {
    font-family: 'Sen', sans-serif !important;
    color: var(--dark-gray) !important;
}

/* Add this to your CSS file */
input::placeholder {
    color: var(--dark-gray); /* Replace with your desired color */
    opacity: 1; /* Ensure the color is fully opaque */
}

.input-group input::placeholder {
    color: var(--dark-gray); /* Replace with your desired color */
}
  

.legend-item .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 10px;
    flex-shrink: 0;
    background-color: var(--green-color);
}

.logo-group {
    gap: 10px;
    width: 100%;
}

.footer-logo-img {
    flex: 1;
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

#privacy_policy {
    max-width: 1364px;
}

  