/* || General */

* {
    box-sizing: border-box;
}
body {
    margin: 0;
}
#wrapper {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
#navNum {
    margin: 10px 0;
    padding: 4px 8px;
    border: none;
    border-radius: 15px;
    width: fit-content;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Anton', sans-serif;
    cursor: pointer;
    background-color: white;
}
#navNum:hover, #navNum:active {
    box-shadow: 0 0 5px #fdf720;
}
header{
    margin-bottom: 20px;
    border-block: 5px solid #063082;
    display: flex;
    align-items: center;
}
header img {
    margin: 10px 0;
    height: 50px;
}
nav {
    margin-left: auto;
}
nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    list-style: none;
    position: relative;
}
nav li {
    padding: 15px 70px;
}
nav a {
    padding-top: inherit;
    padding-bottom: inherit;
    color: #000;
    font-size: 25px;
    font-family: 'Anton', sans-serif;
    text-decoration: none;
    text-wrap: nowrap;
    letter-spacing: 0.1em;
}
nav a:hover, nav a:active {
    border-bottom: 3px solid #fdf720;
    text-shadow: 2px 2px 2px #fdf720;
}
#hamburger {
    display: none;
}
#headerTitle {
    margin: 35px 0;
    font-family: 'Roboto', sans-serif;
}
#headerTitle h1 {
    margin: 15px 0;
    padding: 5px 5px;
    border-bottom: 5px double #fdf720;
    width: fit-content;
    color: #063082;
    font-size: 35px;
}
#headerTitle p {
    margin: 0 10px;
    display: flex;
    font-size: 18px;
    line-height: 1.8em;
}
.contentContainer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.textContainer {
    margin: 0 2vw;
    height: auto;
    font-family: 'Roboto', sans-serif;
    text-align: left;
}
.contentTitle {
    padding: 15px;
    color: #063082;
    font-size: 25px;
}
.text {
    padding: 20px;
    border-block: #fdf720 solid;
    margin: 8px 4px;
    font-size: 18px;
    line-height: 1.8em;
}
.contentContainer img {
    margin: 1vw 2vw;
    width: 35vw;
    display: block;
    box-shadow: 3px 3px 6px;
}
footer {
    margin-top: 55px;
    border-top: 2px solid black;
    width: 100%;
    position: absolute;
    background-color: #063082;
}
footer ul {
    margin: 45px 0 0;
    padding: 0;
    text-align: center;
    line-height: 3em;
}
footer ul img {
    height: 90px;
}
footer ul li {
    color: #fff;
    font-family: 'Anton', sans-serif;
    font-size: 15px;
    list-style: none;
    letter-spacing: 0.1em;
}
#footerText {
    font-family: 'Roboto', sans-serif;
}
#toTop {
    margin: 25px;
    padding: 5px;
    border: 1px solid white;
    border-radius: 8px;
    font-size: 15px;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    background-color: #063082;
    color: white;
}
#toTop:hover, #toTop:active {
    box-shadow: 0 0 8px #fdf720;
    cursor: pointer;
}
@media only screen and (max-width: 1000px) {
    #wrapper {
        width: 90%;
    }
    .contentContainer {
        display: block;
    }
    .contentContainer img {
        margin: 20px auto;
        width: 80%;
    }
    nav {
        position: relative;
    }
    #menu {
        display: none;
    }
    #hamburger {
        padding-right: 12px;
        display: block;
        cursor: pointer;
        font-size: 25px;
    }
    #hamburgerMenu {
        z-index: 1;
        padding: 5px;
        border: 2px solid #063082;
        display: block;
        background-color: #fff;
        white-space: nowrap;
        text-align: right;
        font-family: 'Anton', sans-serif;
        letter-spacing: 0.1em;
        transform: scale(0);
        position: absolute;
        top: -250%;
        left: -150%;
        transition: 
            transform ease-out 100ms,
            top ease-out 100ms,
            left ease-out 100ms
        ;
    }
    #hamburgerMenu.active {
        transform: scale(1);
        top: 150%;
        left: -300%;
    }
    #hamburgerMenu li {
        padding: 10px;
    }
    #hamburgerMenu a {
        padding-left: inherit;
    }
    #hamburgerMenu hr {
        margin: 3px;
    }
}


/* || Index */

#heroContainer {
    position: relative;
}
#hero {
    box-shadow: 4px 5px 8px;
    width: 100%;
}
#heroText {
    padding: 15px;
    position: absolute;
    top: 10%;
    left: 65%;
    border-left: 5px solid;
    color: #fff;
    font-size: 2.5vw;
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.1em;
}
hr {
    margin: 20px 0;
}


/* || Services */

#servicesHeader {
    margin: 0 10px;
    color: #063082;
    font-size: 35px;
    font-family: 'Roboto', sans-serif;
}
.textContainer ul {
    list-style: square inside;
}


/* || Join Us */


#joinUsImg {
    width: 50vw;
    box-shadow: 3px 3px 6px;
    display: flex;
    align-items: center;
    margin: auto;

}
fieldset {
    margin: 80px;
    padding: 35px;
    border: 1px solid;
    border-radius: 3px;
}
fieldset legend {
    font-size: 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
    letter-spacing: 0.1em;
}
form label {
    font-size: 18px;
    font-family: 'Nunito', sans-serif;
}
.formInput {
    margin: 8px 0 25px;
    padding: 10px 8px;
    border: 1px solid;
    border-radius: 5px;
    width: 100%;
    height: 35px;
    display: block;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
}
.formInput:hover {
    background-color: #f5f5f5;
}
.asterisk {
    color: red;
}
#resumeContainer {
    margin: 8px 0 25px;
    height: 35px;
    position: relative;
}
#resumeBtn {
    border-radius: 15px;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    cursor: pointer;
}
#resumeBtn:hover {
    box-shadow: 0 0 5px black;
}
#resumeBtn.active {
    visibility: hidden;
}
#resumeIn {
    visibility: hidden;
    position: absolute;
    top: 20%;
}
#resumeIn.active {
    visibility: visible ;
}
#commentIn {
    height: 100px;
    resize: none;
}
#submit {
    border-radius: 15px;
    height: auto;
    width: 100px;
    color: #fff;
    background-color: #063082;
    cursor: pointer;
}
#submit:hover, #submit:active {
    box-shadow: 0 0 5px black;
}
@media only screen and (max-width: 800px) {
    fieldset {
        margin: 80px 10%;
    }
}