/*reset*/

html,
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
a,
img {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    list-style: none;
    text-decoration: none;
}

html {
    box-sizing: border-box;
}

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

html,
body {
    height: 100%;
    background-color: black;
}

main,
aside,
section {
    height: 100%;
}

.container {
    width: 100%;
    height: 100%;
}

#one {
    height: auto;
    background-color: black;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.logo {
    width: 70%;
    height: auto;
    align-self: flex-start;
    z-index: 40;
    position: absolute;
    top:15px;
    left: 30%;
}

#one img {
    height: 100%;
    margin: 0px;
    overflow: hidden;
    align-content: center;
    position: relative;
}

.column {
    float:left;
    width:100%;
    height:100%;
    display:flex;
    justify-content: center;
    align-items: center;
    margin-left: 0px;
}

#two {
    height: 100%;
    background-color: black;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}

#two img{
    width: 80%;
    justify-content: center;
    margin-top: 20px;
}

#two h1 {
    font-size: 90px;
    line-height: 55px;
    letter-spacing: -1px;
    color: #ffffff;
    font-weight: 900;
    justify-content: center;
    margin-top: 75px;
}

#two h2 {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -0.5px;
    color: #ffffff;
    font-weight: 700;
    justify-content: space-around;
    margin-top: 15px;
}

h3 {
    font-size: 26px;
    line-height: 30px;
    letter-spacing: 0px;
    color: #231f20;
    font-weight: 700;
}

.buttons{
    flex-direction: row;
    width: 60%;
    height: auto;
    margin-bottom: 20px;
}

.btn-secondary {
    background-color: red;
    color: #ffffff;
}
.btn-lg {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.33;
    padding: 22px 30px;
    font-weight: 900;
    letter-spacing: 1px;
}
.btn {
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
}
.btn-group-lg > .btn, .btn-lg {
    padding: 10px 16px;
    font-size: 54px;
    line-height: 1.3333333;
    border-radius: 6px;
}

p {
    font-size: 27px;
    line-height: 22px;
    color: #929496;
    font-weight: 400;
}


/*------------------Utilities---------------------*/

a {
    color: inherit;
    font-weight: inherit;
    font-size: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #231f20;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.fa-lg {
    font-size: 1.33333em;
    line-height: 0.75em;
    vertical-align: -10%;
}


/*------------------Buttons---------------------*/

.btn {
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
}

.btn-lg {
    font-size: 13px;
    line-height: 1.33;
    padding: 22px 30px;
    font-weight: 400;
    letter-spacing: 1px;
}

.btn-sm {
    font-size: 11px;
    line-height: 1.33;
    padding: 10px 18px;
    font-weight: 400;
}

.btn-wide {
    width: 100%;
    font-size: 20px;
    line-height: 1.33;
    padding: 18px 28px;
    font-weight: 400;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: red;
    color: #ffffff;
}

.btn-secondary {
    background-color: red;
    color: #ffffff;
}

a {
    color: red;
    text-decoration: none;
}
a {
    background-color: transparent;
}

/* ==========================================================================
   Mobile styles
   ========================================================================== */


/* Landscape phones and down */

@media (max-width: 480px) {
    #two h1{
        margin-top: 5px;
        margin-bottom: 0px;
    }
    .logo{
        width: 50%;
    }

    #two h2{
        margin-top: 0px;
    }
    .btn-lg {
        font-size: 12.5px;
        line-height: 1.33;
        padding: 16px 13px;
        letter-spacing: 0px;
        margin-bottom: 10px;
        width: 100%;
    }
    .btn-wide {
        width: 100%;
        font-size: 12.5px;
        line-height: 1.33;
        padding: 16px 13px;
        letter-spacing: 0px;
    }
    #be-the-first {
        background-attachment: scroll;
    }
}


/* Landscape phone to portrait tablet */

@media (min-width: 481px) and (max-width: 767px) {
    #be-the-first {
        background-attachment: scroll;
    }
}


/* Portrait tablet to landscape and desktop */

@media (min-width: 768px) and (max-width: 991px) {
    #be-the-first {
        background-attachment: scroll;
    }
}


/* Desktops and laptops ----------- */

@media (min-width: 992px) and (max-width: 1199px) {}


/* Large screens ----------- */

@media (min-width: 1200px) and (max-width: 3000px) {}