/* ---------- GLOBAL STYLES ---------- */
:root {
    --main-text: #333;
    --main-green: #019901;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--main-text);
}
a {
    display: block;
}
header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid gray;
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.5);
}
header p {
    font-size: 1.1rem;
}
header p span {
    font-weight: 600;
}
.header-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: var(--main-green);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 60px;
}
.header-btn i {
    color: white;
    font-size: 2rem;
}
.header-btn p {
    color: white;
    text-align: center;
    line-height: 1.1;
}
.main-section {
    padding: 1rem;
}
.main-section h1 {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
}
.main-section h2{
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}
.main-section div {
    width: 100%;
    height: auto;
}
.main-section div img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.qualification-section {
    padding: 1rem 1rem 2.5rem 1rem;
    text-align: center;
}
.qualification-section p {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.progress-bar-container {
    width: 100%;
    background-color: #dadada;
    height: 1rem;
    border-radius: 20px;
    position: relative;
    z-index: -1;
}
.progress-bar {
    position: absolute;
    width: 33%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 20px;
    background-color: var(--main-green);
}
.progress-bar.two-thirds {
    width: 67%;
}
.progress-bar.full {
    width: 100%;
}
.qualification-container {
    margin-top: 1rem;
}
.qualification-form .qualification-question {
    font-weight: 400;
    font-size: 1.3rem;
    padding: 1rem 0;
}
.form-btn {
    width: 100%;
    text-decoration: none;
    color: white;
    background-color: var(--main-green);
    font-weight: 500;
    font-size: 1.3rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
}
p.success-pending {
    font-weight: 400;
    font-size: 1.2rem;
    margin: 1rem 0;
}
.qualification-success {
    border-top: 5px solid #00007c;
    margin-top: 2rem;
    padding: 1rem;
    box-shadow: 0 0 7px 0 rgb(0 0 0 / 20%);
    display: none;
}
.success-final p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}
footer {
    background-color: #263238;
    padding: 1rem;
    color: white;
}
.inner-footer {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.footer-bar {
    width: 100%;
    height: 1px;
    background-color: white;
}
.footer-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-title i {
    font-size: 2rem;
}
.inner-footer .footer-title p {
    font-size: 2rem;
    font-weight: 200;
}
.inner-footer p {
    font-weight: 300;
    font-size: 0.8rem;
    line-height: 1.5;
}
.success-btn {
    width: 100%;
    text-decoration: none;
    color: white;
    background-color: var(--main-green);
    font-weight: 500;
    font-size: 1.3rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
    header {
        flex-direction: row;
        gap: 2rem;
    }
    .main-section {
        width: 80%;
        margin: 0 auto;
    }
    .main-section div {
        width: 80%;
        margin: 0 auto;
    }
    .qualification-section {
        width: 80%;
        margin: 0 auto;
        padding-bottom: 3rem;
    }
    .form-btn {
        padding: 1.5rem 1rem;
    }
    .progress-bar-container {
        width: 80%;
        margin: 0 auto;
    }
    .qualification-success {
        width: 80%;
        margin: 2rem auto 0 auto;
        padding: 2rem;
    }
    .success-btn {
        padding: 1.5rem 1rem;
    }
    footer {
        padding: 3rem 5rem;
    }
}
@media only screen and (min-width: 1200px) {
    .main-section {
        width: 70%;
    }
    .main-section div {
        width: 45%;
    }
    .qualification-section {
        width: 70%;
    }
    .qualification-section p {
        font-size: 1.6rem;
    }
    .progress-bar-container {
        width: 70%;
    }
    .qualification-success {
        width: 70%;
        padding: 3rem 2rem;
    }
    .success-final p {
        font-size: 1.8rem;
    }
}
@media only screen and (min-width: 1400px) {

}


