/* TYPOGRAPHY ***********************************************************/

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    line-height: 0.5;
}

h1 {
    font-size: 2.7rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.25rem;
}
h4 {
    font-size: 1.125rem;
}
h5 {
    font-size: 1rem;
}
h6 {
    font-size: 0.875rem;
}

p, li, a, span, blockquote {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    text-align: justify;
}

a,
a:hover,
a:visited {
    color: #0074D9;
    text-decoration: none;
}

a {
    transition: border 0.2s;
    -webkit-transition: border 0.2s;
}

a:hover {
    border-bottom: 1px solid #0074D9;
}


/* SECTION ***********************************************************/

section {
    display: block;
    width: 100%;
    position: relative;
}

.section--panel {
    position: relative;
    z-index: 3;
    padding: 50px 0;
    background-color: white;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section--panel img {
    display: block;
    margin: 0 auto;
    padding: 30px 0;
    max-width: 100%;
}

.section--dark {
    background-color: #000;
}

.section--panel.section--video {
    padding: 50px 0;
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6,
.section--dark p,
.section--dark blockquote,
.section--bg h1,
.section--bg h2,
.section--bg h3,
.section--bg h4,
.section--bg h5,
.section--bg h6,
.section--bg p,
.section--bg blockquote {
    color: #fff;
}

iframe {
    display: block;
    margin: 0 auto;
    border: none;
    width: 100%;
}

.video--aspect-ratio {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 51%;
    margin: 50px 0;
}

.video--aspect-ratio iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.section--bg-only {
    height: 300px;
}

#logo {
    width: 100%;
    max-width: 300px;
}

@media (min-width: 845px) {
    .section--panel {
        padding: 100px 0;
    }
    .section--center .container {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
    }
}


#name {
    color: #ff7e02;
    font-size: 1.8rem;
}

#title {
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

a.button {
    display: block;
    padding: 15px;
    background-color: #ff7e02;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    margin: 30px auto;
    text-align: center;
    max-width: 225px;
}

a.button:hover {
    background-color: #e66f00;
    text-decoration: none;
    transition: none;
    -webkit-transition: none;
}

@media (min-width: 480px) {
    #name {
        font-size: 2.7rem;
    }
    #title {
        font-size: 2rem;
    }
}