/* ==========================================================================
   Base styles: opinionated defaults
   GUIDELINE:
   Tag selectors only.
   Exception: Tag aliases like .h1 or .hr
   Classes belong to component files.
   ========================================================================== */

html {
    line-height: 1.4;
    background-color: #fff;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    height: 100%;
}

body {
    min-height: 100%;
    height: 100%;
    color: #262626;
}
body.is-blocking-transitions *,
body.is-blocking-transitions *:before,
body.is-blocking-transitions *:after {
    transition: none !important;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/* ==========================================================================
   Opinionated base styling
   ========================================================================== */

/** {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}*/

iframe {
    border: 0;
}

figure {
    margin: 0;
}

h1,
h2,
h3,
h4 {
    line-height: 1.1;
}

h1,
.h1-size {
    font-size: 54px;
}
h2,
.h2-size {
    font-size: 36px;
}
h3,
.h3-size {
    font-size: 24px;
}
h4,
.h4-size {
    font-size: 20px;
}

.sub-1 {
    font-size: 24px;
    text-transform: uppercase;
}
.sub-2 {
    font-size: 16px;
    text-transform: uppercase;
}

.p-big {
    font-size: 16px;
}

img {
    height: auto;
    max-width: 100%;
}

a {
    color: #00c;
    text-decoration: none;
}
a:hover,
a:focus {
    color: #262626;
    text-decoration: none;
}
a:focus {
    outline: 0;
}

ul ul,
ol ul,
ul ol,
ol ol {
    margin-bottom: 0;
}

abbr[title] {
    cursor: help;
    border-bottom: 1px dotted;
}

/* Horizontal line/Divider */
hr,
.hr {
    display: block;
    height: 0;
    border: 0;
    border-top: 1px solid #bfbfbf;
    margin: 0;
    padding: 0;
}

/* Form interaction */
form {
    margin: 0;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="email"],
textarea {
    font-size: 14px;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    padding: 0 15px;
    -webkit-appearance: none;
    transition: border-color .2s, box-shadow .2s;
    -webkit-transition: border-color .2s, box-shadow .2s;
    background: #fafafa;
    border: 1px solid #bfbfbf;
    border-radius: 5px;
    color: #262626;
    font-weight: bold;
    outline: none;
    margin: 0;
    box-shadow: none;
    box-sizing: border-box;
}
textarea {
    height: auto;
    min-width: 100px;
    max-width: 100%;
    min-height: 100px;
    max-height: 300px;
    padding: 15px;
    resize: vertical;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #00c;
    outline: none; /* Hide outline in chrome */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) inset, 0 1px 2px rgba(0, 0, 0, 0.15);
}

label {
    cursor: default;
}
label[for] {
    cursor: pointer;
}

button:focus {
    outline: none;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
/* Large desktop */
@media ( min-width: 1200px ) {

}

/* Portrait tablet to landscape and desktop */
@media ( min-width: 768px ) and ( max-width: 979px ) {
    h1,
    .h1-size {
        font-size: 36px;
    }
    h2,
    .h2-size {
        font-size: 24px;
    }
    h3,
    .h1-size {
        font-size: 20px;
    }
    h4,
    .h1-size {
        font-size: 16px;
    }

    .sub-1 {
        font-size: 20px;
    }
    .sub-2 {
        font-size: 15px;
    }

    .p-big {
        font-size: 14px;
    }
}

/* Landscape phone to portrait tablet */
@media ( max-width: 767px ) {
    body {
        font-size: 13px;
    }

    h1,
    .h1-size {
        font-size: 24px;
    }
    h2,
    .h2-size {
        font-size: 20px;
    }
    h3,
    .h1-size {
        font-size: 16px;
    }
    h4,
    .h1-size {
        font-size: 14px;
    }

    .sub-1 {
        font-size: 16px;
    }
    .sub-2 {
        font-size: 14px;
    }

    .p-big {
        font-size: 13px;
    }
}

/* Landscape phones and down */
@media ( max-width: 480px ) {

}