@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero {
    background-color: #1b4b3a;
    background-image: url(/assets/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: auto;
    padding-bottom: 380px;
}

section h2 {
    text-align: center;
    color: #F7D957;
    font-family: "Roboto Condensed",
        Sans-serif;
    font-size: 60px;
    font-weight: 600;
    text-decoration: underline;
    line-height: 1.3em;
    text-shadow: 0px 0px 10px #000000;
}

section h3 {
    text-align: center;
    color: #FFFFFF;
    font-family: "Roboto Condensed",
        Sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1em;
    text-shadow: 0px 0px 16px #000000;
}


section.footer img.logo {
    width: 160px;
    max-width: 90%;
}

section.footer .footer-content {
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding: 0px 0px 1em;
    border: 0px;
    outline: 0px;
    font-size: 12px;
    text-size-adjust: 100%;
    vertical-align: baseline;
    background-image: initial;
    background-position: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    color: #666666;
    font-family: Poppins, Helvetica, Arial, Lucida, sans-serif;
    font-weight: 300;
}

section.footer .footer-content a {
    color: #3AAF60;
    font-size: 12px !important;
    box-shadow: none;
    text-decoration: none;
}

.form-content {
    position: relative;
    top: -360px;
    height: 120px;
}

.form {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.application .form {
    background-color: transparent;
    box-shadow: none;
}

.hero.application {
    padding-bottom: 30px;
}

.hero.success {
    padding-bottom: 64px;
}

.btn.btn-primary {
    background-color: #164636;
    color: white;
    width: 100%;
    padding: 8px;
}

.invalid-feedback {
    margin-top: 0px;
    margin-bottom: 4px;
    display: block;
}

.btn.btn-primary.submit {
    font-weight: 700;
    font-size: 25px;
    margin: 10px 0;
    border-radius: 10px;
    font-family: Barlow;
}

.form-control {
    padding: 16px;
    border-color: #666;
    font-size: 14px;
}

.invalid-feedback-content {
    min-height: 26px;
}

@media (max-width: 1024px) {
    section.hero img.logo {
        width: 100%;
        max-width: 60%;

    }

    section h2 {
        font-size: 50px;
        line-height: 50px;
    }

    section h3 {
        font-size: 34px;
        line-height: 34px;
    }

}

@media (max-width: 767px) {
    section.hero {
        background-position: top center;
    }

    section h2 {
        font-size: 41px;
        line-height: 41px;
    }

    section h3 {
        font-size: 28px;
        line-height: 28px;
    }

}