:root {
    --Yellow-Yellow---100: #E5DECF;
    --Yellow-Yellow---200: #E5CA95;
    --Yellow-Yellow---300: #F2C161;
    --Yellow-Yellow---400: #F2B030;
    --Yellow-Yellow---500: #FFA800;
    --Yellow-Yellow---600: #E59700;
    --Yellow-Yellow---700: #B27600;
    --Yellow-Yellow---800: #664300;
    --Yellow-Yellow---900: #1A1100;

}

html {
    box-sizing: border-box;
    font-family: "Forma DJR Micro";
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    background-color: var(--Yellow-Yellow---100);
}

.container {
    max-width: 80rem;
    height: 95.8vh;
    margin: 0 auto;
}

a {
    text-decoration: none;
}








.progress__bar {
    display: flex;
    justify-content: space-between;
    margin: 1.75rem 0;
}

.progress__bar__x {
    display: flex;
    align-items: center;
}

.progress__bar__container {
    gap: 40px;
    max-width: 31.25rem;
    width: 100%;
}

.progress__bar__container .progress__bar__steps {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.progress__bar__steps .progress__bar__circle {
    font-family: "bungee", sans-serif;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    color: var(--Yellow-Yellow---900);
    font-size: 22px;
    font-weight: normal;
    border-radius: 50%;
    background: var(--Yellow-Yellow---100);
    border: 4px solid var(--Yellow-Yellow---900);
    transition: all 200ms ease;
    transition-delay: 0s;
}

.progress__bar__steps .progress__bar__circle--active {
    transition-delay: 100ms;
    border-color: var(--Yellow-Yellow---600);
    color: var(--Yellow-Yellow---600);
    font-weight: normal;
}

.progress__bar__steps .progress-bar {
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--Yellow-Yellow---900);
    z-index: -1;
}

.progress-bar .indicator {
    position: absolute;
    height: 100%;
    width: 0%;
    background: var(--Yellow-Yellow---600);
    transition: all 300ms ease;
}

.progress__bar__container {
    display: flex;
    gap: 20px;
}





.buttons__quiz {
    display: flex;
    justify-content: space-between;
    max-width: 80rem;
    /* transform: translateY(-250%); */
    position: relative;
}

.button {
    cursor: pointer;
    border-radius: 2rem;
    border: 4px solid var(--Yellow-Yellow---900);
    background: linear-gradient(96deg, #FFA800 73%, #FF5C00 73.01%);
    font-family: "bungee", sans-serif;
    display: inline-flex;
    padding: 0.5rem 1rem;
    margin: 4rem 0;
    justify-content: center;
    align-items: center;
    font-weight: normal;
    line-height: 100%;
    font-size: 1.25rem;
    color: var(--Yellow-Yellow---900);
    text-decoration: none;
    transform: translateY(-50%);
    /* transition: ease-in .3s background; */
}

.button:hover {
    border-radius: 1rem;
    cursor: pointer;
    border-radius: 2rem;
    border: 4px solid var(--Yellow-Yellow---900);
    background: linear-gradient(96deg, #FFA800 -4.02%, #FF5C00 -4.01%);
    /* background-position: -70px;  to animate the linear gradient */
    font-family: "bungee", sans-serif;
    display: inline-flex;
    padding: 0.5rem 1rem;
    justify-content: center;
    align-items: center;
    color: var(--Yellow-Yellow---900);
}

.button--left {
    position: absolute;
    top: 45%;
    left: 5rem;
}

.button--right {
    position: absolute;
    top: 45%;
    right: 5rem;
}

.button--right__last {
    display: none;
}

.button--secondary {
    background: linear-gradient(96deg, #FF401A 73%, #E50000 73.01%);
}

.button--secondary:hover {
    background: linear-gradient(96deg, #FF401A -4.02%, #E50000 -4.01%);
}


.button--form {
    margin: 5rem 0;
}








.title__text h1 {
    color: var(--Yellow-Yellow---900);
    text-align: center;
    font-family: Bungee;
    font-size: 3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    margin: 0;
    margin-top: 2.5rem;
}

.title__text__description {
    margin: 0;
    color: var(--Yellow-Yellow---900, #1A1100);
    text-align: center;
    font-family: "Forma DJR Micro";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}