@media screen and (min-width: 1200px) {
}

:root {
    --darkorange: #E96429;
    --lightorange: #F5853D;
    --medblue: #2E5397;
    --darkblue: #182552;
    --lightblue: #F4FBFE;
    --white: #ffffff;
    --gray: #999999;
    --black: #444444;
}

* {
    box-sizing: border-box;
    color: var(--white);
    font-family: "Open Sans", serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    margin: 0;
    padding: 0;
}

img {
    display: block;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* START NAV */
.nav {
    position: absolute;
    width: 100%;
    height: 100px;
}

.nav-wrapper {
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

.nav-content {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.nav-content svg {
    fill: var(--darkorange);
    width: 80px;
}

.nav-content h1 {
    font-weight: 800;
    padding-left: 10px;
}
/* END NAV */

/* START HERO */
.hero {
    background: url('../img/hero.webp') no-repeat center center / cover;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    background: rgba(24, 37, 82, 0.9);
    width: 100%;
    height: 100%;
}

.hero-wraper {
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

@media screen and (min-width: 1200px) {
    .hero-wraper {
        width: 1200px;
        margin: 0 auto;
        padding: 0;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

.hero-content h1 {
    color: var(--lightorange);
    font-weight: 800;
}

.hero-content h2 {
    font-weight: 800;
    font-size: 36px;
    font-style: italic;
    padding-bottom: 20px;
}

@media screen and (min-width: 1200px) {
    .hero-content h2 {
        font-size: 54px;
    }
}

.hero-content a {
    display: block;
    background: var(--lightorange);
    -webkit-box-shadow: 5px 5px 0px 0px rgba(233,100,41,1);
    -moz-box-shadow: 5px 5px 0px 0px rgba(233,100,41,1);
    box-shadow: 5px 5px 0px 0px rgba(233,100,41,1);
    margin-top: 40px;
    padding: 10px 20px;
}
/* END HERO */

/* START WHO */
.who {
    background: var(--lightblue);
    width: 100%;
    padding: 100px 0;
}

.who-wraper {
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

@media screen and (min-width: 1200px) {
    .who-wraper {
        width: 1200px;
        margin: 0 auto;
        padding: 0;
    }
}

.who-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 1200px) {
    .who-content {
        flex-direction: row;
        align-items: center;
    }
}

.who-content div {
    width: 100%;
}

.who-content div:first-of-type {
    padding-bottom: 40px;
}

@media screen and (min-width: 1200px) {
    .who-content div {
        width: 50%;
    }

    .who-content div:first-of-type {
        padding-right: 40px;
        padding-bottom: 0;
    }
}

.who-content h1 {
    color: var(--gray);
    font-weight: 800;
}

.who-content h2 {
    color: var(--medblue);
    font-weight: 800;
    font-size: 36px;
    font-style: italic;
    padding-bottom: 20px;
}

.who-content p {
    color: var(--gray);
}

.who-content img {
    -webkit-box-shadow: 10px 10px 0px 0px rgba(46,83,151,1);
    -moz-box-shadow: 10px 10px 0px 0px rgba(46,83,151,1);
    box-shadow: 10px 10px 0px 0px rgba(46,83,151,1);
}
/* END WHO */

/* START WHERE */
.where {
    background: var(--darkblue);
    width: 100%;
    padding: 100px 0;
}

.where-wrapper {
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

@media screen and (min-width: 1200px) {
    .where-wrapper {
        width: 1200px;
        margin: 0 auto;
        padding: 0;
    }
}

.where-wrapper h1 {
    color: var(--white);
    font-weight: 800;
    text-align: center;
}

.where-wrapper h2 {
    color: var(--lightorange);
    font-weight: 800;
    font-size: 36px;
    font-style: italic;
    text-align: center;
    padding-bottom: 20px;
}

.where-wrapper p {
    text-align: center;
    margin-bottom: 40px;
}

.where-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}

.where-content div {
    width: 50%;
    padding: 10px;
}

@media screen and (min-width: 1200px) {
    .where-content div {
        width: 25%;
    }
}

.where-content div img {
    -webkit-box-shadow: 5px 5px 0px 0px rgba(46,83,151,1);
    -moz-box-shadow: 5px 5px 0px 0px rgba(46,83,151,1);
    box-shadow: 5px 5px 0px 0px rgba(46,83,151,1);
}
/* END WHERE */

/* START WHAT */
.what {
    background: var(--lightblue);
    width: 100%;
    padding: 100px 0;
}

.what-wrapper {
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

@media screen and (min-width: 1200px) {
    .what-wrapper {
        width: 1200px;
        margin: 0 auto;
        padding: 0;
    }
}

.what-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 1200px) {
    .what-content {
        flex-direction: row;
        align-items: center;
    }
}

.what-content div {
    width: 100%;
}

.what-content div:first-of-type {
    padding-bottom: 40px;
}

@media screen and (min-width: 1200px) {
    .what-content div {
        width: 50%;
    }

    .what-content div:nth-child(2) {
        padding-left: 40px;
        padding-bottom: 0;
    }
}

.what-content h1 {
    color: var(--gray);
    font-weight: 800;
}

.what-content h2 {
    color: var(--medblue);
    font-weight: 800;
    font-size: 36px;
    font-style: italic;
    padding-bottom: 20px;
}

.what-content p {
    color: var(--gray);
}

.what-content img {
    -webkit-box-shadow: -10px 10px 0px 0px rgba(46,83,151,1);
    -moz-box-shadow: -10px 10px 0px 0px rgba(46,83,151,1);
    box-shadow: -10px 10px 0px 0px rgba(46,83,151,1);
}
/* END WHAT */

/* START WHY */
.why {
    background: var(--darkorange);
    width: 100%;
    padding: 100px 0;
}

.why-wrapper {
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

@media screen and (min-width: 1200px) {
    .why-wrapper {
        width: 1200px;
        margin: 0 auto;
        padding: 0;
    }
}

.why-wrapper h1 {
    font-weight: 800;
    text-align: center;
}

.why-wrapper h2 {
    font-weight: 800;
    font-size: 36px;
    font-style: italic;
    text-align: center;
    padding-bottom: 20px;
}

.why-wrapper p {
    background: var(--darkblue);
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
}

.why-wrapper h3 {
    display: inline-block;
    background: var(--lightorange);
    font-weight: bold;
    padding: 10px;
}

.why-wrapper h4 {
    display: inline-block;
    background: var(--lightorange);
    font-size: 9px;
    padding: 5px;
}
/* END WHY */

/* START HOW */
.how {
    background: var(--lightblue);
    width: 100%;
    padding: 100px 0;
}

.how-wrapper {
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

@media screen and (min-width: 1200px) {
    .how-wrapper {
        width: 1200px;
        margin: 0 auto;
        padding: 0;
    }
}

.how-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 1200px) {
    .how-content {
        flex-direction: row;
        align-items: center;
    }
}

.how-content div {
    width: 100%;
}

.how-content div:first-of-type {
    padding-bottom: 40px;
}

@media screen and (min-width: 1200px) {
    .how-content div {
        width: 50%;
    }

    .how-content div:first-of-type {
        padding-right: 40px;
        padding-bottom: 0;
    }
}

.how-content h1 {
    color: var(--gray);
    font-weight: 800;
}

.how-content h2 {
    color: var(--medblue);
    font-weight: 800;
    font-size: 36px;
    font-style: italic;
    padding-bottom: 20px;
}

.how-content p {
    color: var(--gray);
}

.how-content input, textarea {
    border: #2E5397 solid 2px;
    color: var(--darkblue);
    width: 100%;
    margin: 10px 0;
    padding: 10px;
}

.how-content button {
    cursor: pointer;
    background: var(--lightorange);
    border: none;
    -webkit-box-shadow: 5px 5px 0px 0px rgba(233,100,41,1);
    -moz-box-shadow: 5px 5px 0px 0px rgba(233,100,41,1);
    box-shadow: 5px 5px 0px 0px rgba(233,100,41,1);
    padding: 10px 20px;
}
/* END HOW */

/* START FOOTER */
.footer {
    background: var(--darkblue);
    width: 100%;
    height: 50px;
}

.footer-wrapper {
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.footer-content p {
    font-size: 12px;
}

.footer-content p span {
    color: var(--darkorange);
    font-size: 12px;
    font-weight: 800;
}
/* END FOOTER */