/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

body,
button,
input,
select,
textarea {
    color: #404040;
    font-family: sans-serif;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 15px;
    font-size: 0.9375rem;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}


/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    background: #fff;
    /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: "" "";
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

img {
    height: auto;
    /* Make sure images are scaled correctly. */
    max-width: 100%;
    /* Adhere to container width. */
}

figure {
    margin: 1em 0;
    /* Extra wide images within figure tags don't overflow the content area. */
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}


/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid;
    border-color: #ccc #ccc #bbb;
    border-radius: 3px;
    background: #e6e6e6;
    color: rgba(0, 0, 0, .8);
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1;
    padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
    border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 3px;
}

select {
    border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    color: #111;
}

textarea {
    width: 100%;
}


/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/

a {
    color: royalblue;
}

a:visited {
    color: purple;
}

a:hover,
a:focus,
a:active {
    color: midnightblue;
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
}


/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

.main-navigation {
    clear: both;
    display: block;
    float: left;
    width: 100%;
}

.main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation li {
    float: left;
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
}

.main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 1.5em;
    left: -999em;
    z-index: 99999;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul a {
    width: 200px;
}

.main-navigation ul ul li {}

.main-navigation li:hover>a,
.main-navigation li.focus>a {}

.main-navigation ul ul :hover>a,
.main-navigation ul ul .focus>a {}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {}

.main-navigation ul li:hover>ul,
.main-navigation ul li.focus>ul {
    left: auto;
}

.main-navigation ul ul li:hover>ul,
.main-navigation ul ul li.focus>ul {
    left: 100%;
}

.main-navigation .current_page_item>a,
.main-navigation .current-menu-item>a,
.main-navigation .current_page_ancestor>a,
.main-navigation .current-menu-ancestor>a {}


/* Small menu. */

.menu-toggle,
.main-navigation.toggled ul {
    display: block;
}

@media screen and (min-width: 37.5em) {
    .menu-toggle {
        display: none;
    }
    .main-navigation ul {
        display: block;
    }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
    overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}


/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/


/* Text meant only for screen readers. */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}


/* Do not show the outline on the skip link target. */

#content[tabindex="-1"]:focus {
    outline: 0;
}


/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}


/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/

.widget {
    margin: 0 0 1.5em;
}


/* Make sure select elements fit in widgets. */

.widget select {
    max-width: 100%;
}


/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/

.sticky {
    display: block;
}

.hentry {
    margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
    display: none;
}

.single .byline,
.group-blog .byline {
    display: inline;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 1.5em 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}


/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}


/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/


/* Globally hidden elements when Infinite Scroll is supported and in use. */

.infinite-scroll .posts-navigation,

/* Older / Newer Posts Navigation (always hidden) */

.infinite-scroll.neverending .site-footer {
    /* Theme Footer (when set to scrolling) */
    display: none;
}


/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */

.infinity-end.neverending .site-footer {
    display: block;
}


/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}


/* Make sure embeds and iframes fit their containers. */

embed,
iframe,
object {
    max-width: 100%;
}


/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}


/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/

.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}


/*-------------------------------------
Required
-------------------------------------*/


/* Normalize v5.0.0 */

button,
hr,
input {
    overflow: visible
}

audio,
canvas,
progress,
video {
    display: inline-block
}

progress,
sub,
sup {
    vertical-align: baseline
}

[type=checkbox],
[type=radio],
legend {
    box-sizing: border-box;
    padding: 0
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section {
    display: block
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

figure {
    margin: 1em 40px
}

hr {
    box-sizing: content-box;
    height: 0
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

a:active,
a:hover {
    outline-width: 0
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

dfn {
    font-style: italic
}

mark {
    background-color: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

audio:not([controls]) {
    display: none;
    height: 0
}

img {
    border-style: none
}

svg:not(:root) {
    overflow: hidden
}

button,
input,
optgroup,
select,
textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
select {
    text-transform: none
}

[type=reset],
[type=submit],
button,
html [type=button] {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
    outline: ButtonText dotted 1px
}

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em
}

legend {
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal
}

textarea {
    overflow: auto
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

[hidden],
template {
    display: none
}


/* WP Core */

.alignnone {
    margin: 5px 20px 20px 0
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px
}

a img.alignleft,
a img.alignnone {
    margin: 5px 20px 20px 0
}

a img.alignleft {
    float: left
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center
}

.wp-caption.alignleft,
.wp-caption.alignnone {
    margin: 5px 20px 20px 0
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px
}

.wp-caption img {
    border: 0;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute!important;
    height: 1px;
    width: 1px;
    overflow: hidden
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
    clip: auto!important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 14px;
    font-size: .875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000
}


/* Owl Carousel */

.owl-carousel,
.owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative
}

.owl-carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
        filter: alpha(opacity=100)
    }
    100% {
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        filter: alpha(opacity=100)
    }
    100% {
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

.owl-height {
    -webkit-transition: height .5s ease-in-out;
    transition: height .5s ease-in-out
}

.owl-carousel {
    width: 100%;
    z-index: 1
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-controls .owl-dot,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-nav .owl-prev {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-loaded {
    display: block
}

.owl-carousel.owl-loading {
    opacity: 0;
    filter: alpha(opacity=0);
    display: block
}

.owl-carousel.owl-hidden {
    opacity: 0;
    filter: alpha(opacity=0)
}

.owl-carousel .owl-refresh .owl-item {
    display: none
}

.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel .owl-item img {
    display: block;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.owl-carousel.owl-text-select-on .owl-item {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto
}

.owl-carousel .owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab
}

.owl-carousel.owl-rtl {
    direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
    float: right
}

.no-js .owl-carousel {
    display: block
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: scale .1s ease;
    transition: scale .1s ease
}

.owl-carousel .owl-video-play-icon:hover {
    -webkit-transition: scale(1.3, 1.3);
    transition: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    filter: alpha(opacity=0);
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1
}

.owl-item {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}


/*-------------------------------------
Fonts
-------------------------------------*/

@font-face {
    font-family: "Intel-Clear-Bold";
    src: url("fonts/IntelClear_WLat_Bd.eot");
    src: url("fonts/IntelClear_WLat_Bd.eot?#iefix") format("embedded-opentype"), url('fonts/IntelClear_WLat_Bd.woff') format('woff'), url('fonts/IntelClear_WLat_Bd.ttf') format('truetype');
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: "Intel-Clear-Bold-Italic";
    src: url("fonts/IntelClear_WLat_BdIt.eot");
    src: url("fonts/IntelClear_WLat_BdIt.eot?#iefix") format("embedded-opentype"), url('fonts/IntelClear_WLat_BdIt.woff') format('woff'), url("fonts/IntelClear_WLat_BdIt.ttf") format("truetype");
    font-weight: bold;
    font-style: normal
}

@font-face {
    font-family: "Intel-Clear-Italic";
    src: url("fonts/IntelClear_WLat_It.eot");
    src: url("fonts/IntelClear_WLat_It.eot?#iefix") format("embedded-opentype"), url('fonts/IntelClear_WLat_It.woff') format('woff'), url("fonts/IntelClear_WLat_It.ttf") format("truetype");
    font-weight: normal;
    font-style: italic
}

@font-face {
    font-family: "Intel-Clear-Light";
    src: url("fonts/IntelClear_WLat_Lt.eot");
    src: url("fonts/IntelClear_WLat_Lt.eot?#iefix") format("embedded-opentype"), url('fonts/IntelClear_WLat_Lt.woff') format('woff'), url("fonts/IntelClear_WLat_Lt.ttf") format("truetype");
    font-weight: bold;
    font-style: italic
}

@font-face {
    font-family: "Intel-Clear-Light-Italic";
    src: url("fonts/IntelClear_WLat_LtIt.eot");
    src: url("fonts/IntelClear_WLat_LtIt.eot?#iefix") format("embedded-opentype"), url('fonts/IntelClear_WLat_LtIt.woff') format('woff'), url("fonts/IntelClear_WLat_LtIt.ttf") format("truetype");
    font-weight: 200;
    font-style: italic
}

@font-face {
    font-family: "Intel-Clear-Regular";
    src: url("fonts/IntelClear_WLat_Rg.eot");
    src: url("fonts/IntelClear_WLat_Rg.eot?#iefix") format("embedded-opentype"), url("fonts/IntelClear_WLat_Rg.woff") format("woff"), url("fonts/IntelClear_WLat_Rg.ttf") format("truetype");
    font-weight: 200;
    font-style: normal
}

@font-face {
    font-family: "Intel-Clear-Pro-Bold";
    src: url("fonts/IntelClearPro_W_Bd.eot");
    src: url("fonts/IntelClearPro_W_Bd.eot?#iefix") format("embedded-opentype"), url('fonts/IntelClearPro_W_Bd.woff') format('woff'), url("fonts/IntelClearPro_W_Bd.ttf") format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: "Intel-Clear-WHans-Regular";
    src: url("fonts/IntelClear_WHans_Rg.eot");
    src: url("fonts/IntelClear_WHans_Rg.eot?#iefix") format("embedded-opentype"), url("fonts/IntelClear_WHans_Rg.woff") format("woff"), url("fonts/IntelClear_WHans_Rg.ttf") format("truetype");
    font-weight: 200;
    font-style: normal
}

@font-face {
    font-family: "Intel-Clear-WHans-Light";
    src: url("fonts/IntelClear_WHans_Lt.eot");
    src: url("fonts/IntelClear_WHans_Lt.eot?#iefix") format("embedded-opentype"), url('fonts/IntelClear_WHans_Lt.woff') format('woff'), url("fonts/IntelClear_WHans_Lt.ttf") format("truetype");
    font-weight: bold;
    font-style: italic
}

@font-face {
    font-family: "Intel-Clear-WHans-Bold";
    src: url("fonts/IntelClear_WHans_Bd.eot");
    src: url("fonts/IntelClear_WHans_Bd.eot?#iefix") format("embedded-opentype"), url('fonts/IntelClear_WHans_Bd.woff') format('woff'), url("fonts/IntelClear_WHans_Bd.ttf") format("truetype");
    font-weight: 400;
    font-style: normal
}


/*-------------------------------------
Global / Helpers
-------------------------------------*/


/*

Dominant colors:
----------------

Blue #0f74c2

*/


/*-------------------------------------
Body
-------------------------------------*/


/* All Resolutions */

body {
    font-family: "intel-clear", "tahoma", Helvetica, "helvetica", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.42857143;
    color: #555;
}


/* Desktop */

@media (min-width: 768px) {
    body {
        /*padding-top: 60px;*/
    }
}


/* Mobile */

@media (max-width: 767px) {
    body {
        margin-top: 0px;
    }
}


/*-------------------------------------
Global
-------------------------------------*/

* {
    box-sizing: border-box;
}

a {
    color: #535559;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 300;
}

a:hover {
    color: #0f74c2;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1333px;
    margin: 0 auto;
    padding: 0 30px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 4%;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
}

.columns:before,
.columns:after,
.container:before,
.container:after {
    content: " ";
    display: table;
}

.columns:after,
.container:after {
    clear: both;
}


/*-------------------------------------
Text Styles
-------------------------------------*/


/* All Resolutions */

h1,
h2,
h3,
h4,
h5,
p {
    margin-top: 0;
}

h2 {
    font-weight: 200;
    font-size: 30px;
    line-height: 35px;
    color: #232323;
    margin-bottom: 10px;
}

h2 strong {
    font-weight: 600;
}

h3 {
    margin-bottom: 7px;
    font-weight: 400;
    font-size: 26px;
    color: #55585c;
    font-weight: 200;
}

p {
    font-weight: 200;
    color: #262626;
    font-size: 30px;
    font-size: 16px;
    line-height: 18px;
}


/*-------------------------------------
Intel Menu
-------------------------------------*/


/* All Resolutions */

nav.global-menu-simplify {
    height: 60px;
    z-index: 1030;
    position: fixed;
    background: #0071c5;
    width: 100%;
    top: 0;
}


/* Desktop */

@media (min-width: 768px) {
    nav.global-menu-simplify {
        height: 60px;
    }
}


/* Mobile */

@media (max-width: 767px) {
    nav.global-menu-simplify {
        height: 50px;
    }
}

@keyframes arrow-scroll {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
    55% {
        transform: translateY(-7px);
    }
    100% {
        transform: translateY(0);
    }
}


/*-------------------------------------
Cards homepage
-------------------------------------*/

#cards {
    padding-bottom: 50px;
    padding-top: 50px;
}


/* Card homepage box no img */

div.homepage-card-no-img-box {
    background-color: #1c70b6;
    height: auto;
}

div.homepage-card-no-img {
    width: 87%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

div.homepage-card-no-img p.title-no-img {
    font-family: "Intel-Clear-Pro-Bold", Arial, Helvetica;
    font-size: 36px;
    line-height: 36px;
    color: #ffffff;
    text-align: left;
    padding-bottom: 5px;
}

div.homepage-card-no-img p.copy-no-img {
    font-family: "Intel-Clear-Regular", Arial, Helvetica;
    font-size: 12px;
    font-weight: 200;
    line-height: 13px;
    color: #ffffff;
    text-align: left;
}

div.homepage-card-no-img p.copy-bold-no-img {
    font-family: "Intel-Clear-Regular", Arial, Helvetica;
    font-size: 12px;
    font-weight: bold;
    line-height: 13px;
    color: #ffffff;
    text-align: left;
}

div.homepage-card-no-img p.copy-list-no-img {
    font-family: "Intel-Clear-Regular", Arial, Helvetica;
    font-size: 12px;
    font-weight: 200;
    display: list-item;
    list-style-type: none;
    line-height: 13px;
    color: #ffffff;
    text-align: left;
}

div.homepage-card-no-img p.cta-no-img {
    font-family: "Intel-Clear-Regular", Arial, Helvetica;
    font-size: 14px;
    font-weight: bold;
    line-height: 14px;
    color: #ffffff;
    text-align: right;
}


/* Card homepage box with img */

div.homepage-card-with-img-box {
    background-color: #EFEFEF;
    height: auto;
}

div.homepage-card-with-img {
    width: 87%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #EFEFEF;
}

div.homepage-card-with-img p.title-with-img {
    font-family: "Intel-Clear-Pro-Bold", Arial, Helvetica;
    font-size: 36px;
    line-height: 36px;
    color: #1C70B6;
    text-align: left;
    padding-bottom: 5px;
}

div.homepage-card-with-img p.copy-with-img {
    font-family: "Intel-Clear-Regular", Arial, Helvetica;
    font-size: 12px;
    font-weight: 200;
    line-height: 13px;
    color: #000000;
    text-align: left;
}

div.homepage-card-with-img p.copy-bold-with-img {
    font-family: "Intel-Clear-Regular", Arial, Helvetica;
    font-size: 12px;
    font-weight: bold;
    line-height: 13px;
    color: #000000;
    text-align: left;
}

div.homepage-card-with-img p.copy-list-with-img {
    font-family: "Intel-Clear-Regular", Arial, Helvetica;
    font-size: 12px;
    font-weight: 200;
    display: list-item;
    list-style-type: none;
    line-height: 13px;
    color: #000000;
    text-align: left;
}

div.homepage-card-with-img p.cta-with-img {
    font-family: "Intel-Clear-Regular", Arial, Helvetica;
    font-size: 14px;
    font-weight: bold;
    line-height: 14px;
    color: #1C70B6;
    text-align: right;
}


/*-------------------------------------
Four-Columns
-------------------------------------*/


/* All Resolutions */

section.four-columns header div {
    max-width: 720px;
}

section.four-columns ul.social {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
}

section.four-columns ul.social li {
    display: inline-block;
    margin: 0 3px;
}

section.four-columns ul.social li:first-child {
    margin-left: 0;
}

section.four-columns ul.social a {
    display: block;
    position: relative;
    height: 0;
    overflow: hidden;
    background-repeat: no-repeat;
}

section.four-columns ul.social a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 300ms ease;
    -webkit-transition: opacity 300ms ease;
}

section.four-columns ul.social a:hover:after {
    opacity: 1;
}

section.four-columns ul.social .facebook {
    background-image: url(img/facebook-grey.svg);
    width: 10px;
    padding-top: 21px;
}

section.four-columns ul.social .facebook:after {
    background-image: url(img/facebook-blue.svg);
    width: 10px;
    height: 21px;
}

section.four-columns ul.social .twitter {
    background-image: url(img/twitter-grey.svg);
    width: 25px;
    padding-top: 18px;
}

section.four-columns ul.social .twitter:after {
    background-image: url(img/twitter-blue.svg);
    width: 25px;
    height: 18px;
}


/* Desktop */

@media (min-width: 768px) {
    section.four-columns .container {
        padding-top: 51px;
        padding-bottom: 35px;
    }
    section.four-columns .columns {
        padding-top: 13px;
    }
    section.four-columns .columns>div {
        float: left;
        width: 23.8%;
        margin-left: 1.6%;
    }
    section.four-columns .columns>div:first-child {
        margin-left: 0;
    }
    /* Logos */
    section.four-columns.logos .container {
        padding-top: 45px;
        padding-bottom: 90px;
    }
    section.four-columns.logos .columns {
        margin-top: 45px;
    }
    section.four-columns.logos .columns>div {
        float: none;
        display: inline-block;
        vertical-align: middle;
        width: 23.1%;
        margin-left: 1.49%;
        padding: 0 10px;
    }
    section.four-columns h3 {
        margin-top: 18px;
        line-height: 28px;
    }
    section.four-columns.logos .columns>div img {
        margin: 0 auto;
    }
    /* Medium */
    section.four-columns.medium p {
        color: #535559;
    }
    section.four-columns.medium .container {
        padding-bottom: 72px;
    }
}


/* Mobile */

@media (max-width: 767px) {
    section.four-columns .container {
        padding-top: 30px;
        padding-bottom: 45px;
    }
    section.four-columns .columns {
        padding-top: 30px;
    }
    section.four-columns .columns>div {
        margin-bottom: 30px;
        padding-bottom: 30px;
        /*border-bottom: 1px solid #b6bec3;*/
    }
    section.four-columns .columns>div:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    section.four-columns h3 {
        margin-top: 5px;
    }
    section.four-columns:not(.logos) .columns>div img {
        width: 100%;
    }
}


/*-------------------------------------
Tab / Accordion
-------------------------------------*/


/* All Resolutions */

section.tab-accordion {
    background-color: #f2f2f2;
}

section.tab-accordion p {
    color: #404348;
}

section.tab-accordion .container>div.tab-1 article#tab-1 section,
section.tab-accordion .container>div.tab-2 article#tab-2 section,
section.tab-accordion .container>div.tab-3 article#tab-3 section,
section.tab-accordion .container>div.tab-4 article#tab-4 section,
section.tab-accordion .container>div.tab-5 article#tab-5 section {
    display: block;
    height: auto;
}

section.tab-accordion article header h3 {
    color: #0066c1;
}


/* Desktop */

@media (min-width: 768px) {
    section.tab-accordion .container {
        padding-top: 52px;
        padding-bottom: 45px;
    }
    .js section.tab-accordion article header {
        display: none;
    }
    .no-js section.tab-accordion article header {
        margin-bottom: 20px;
    }
    nav.tabs {
        text-align: center;
        border-top: 2px solid #b6bec3;
        border-bottom: 2px solid #b6bec3;
        margin-top: 40px;
        margin-bottom: 53px;
        padding: 31px 0 11px 0;
    }
    nav.tabs ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    nav.tabs li {
        display: inline-block;
        margin: 0 1.5% 20px 1.5%;
    }
    nav.tabs a {
        font-size: 22px;
        color: #0066c1;
        text-decoration: none;
        font-weight: 600;
    }
    nav.tabs a:hover {
        color: #3e4246;
    }
    .no-js nav.tabs {
        display: none;
    }
    .no-js section.tab-accordion .container>div>h2 {
        margin-bottom: 30px;
    }
    section.tab-accordion .container>div.tab-1 nav li:nth-child(1) a,
    section.tab-accordion .container>div.tab-2 nav li:nth-child(2) a,
    section.tab-accordion .container>div.tab-3 nav li:nth-child(3) a,
    section.tab-accordion .container>div.tab-4 nav li:nth-child(4) a,
    section.tab-accordion .container>div.tab-5 nav li:nth-child(5) a {
        color: #3e4246;
    }
    .js section.tab-accordion article section {
        display: none;
    }
    .no-js section.tab-accordion article {
        margin-bottom: 30px;
    }
    section.tab-accordion article section>div:before,
    section.tab-accordion article section>div:after {
        content: " ";
        display: table;
    }
    section.tab-accordion article section>div:after {
        clear: both;
    }
    section.tab-accordion article .copy {
        float: left;
    }
    section.tab-accordion article .image {
        float: right;
    }
    section.tab-accordion article .copy {
        margin-left: 0;
        width: 42%;
        margin-top: -10px;
    }
    section.tab-accordion article .image {
        margin-left: 6%;
        width: 52%;
    }
    section.tab-accordion article .image img {
        float: right;
    }
    section.tab-accordion article .copy p {
        font-size: 26px;
        line-height: 31px;
    }
}


/* Mobile */

@media (max-width: 767px) {
    section.tab-accordion .container {
        padding-top: 20px;
        padding-bottom: 35px;
    }
    section.tab-accordion h2 {
        margin-bottom: 40px;
    }
    nav.tabs {
        display: none;
    }
    section.tab-accordion article section .copy {
        padding-bottom: 30px;
    }
    section.tab-accordion article .image {
        margin-bottom: 20px;
    }
    section.tab-accordion article .image img {
        width: 100%;
    }
    section.tab-accordion article header {
        border-bottom: 1px solid #ccc;
        margin-bottom: 20px;
        background-image: url(img/arrow-down-grey.svg);
        background-repeat: no-repeat;
        background-position: right 10px;
        cursor: pointer;
        padding-right: 20px;
    }
    section.tab-accordion article header h3 {
        font-size: 20px;
    }
    section.tab-accordion article section {
        height: 0;
        overflow: hidden;
        -webkit-transition: height 300ms ease;
        transition: height 300ms ease;
    }
}


/*-------------------------------------
CTA Banner
-------------------------------------*/


/* All Resolutions */

.cta-banner {
    background-color: #0f74c2;
    text-align: center;
}

.cta-banner h3 {
    font-family: "intel-clear-headline", "tahoma", Helvetica, "helvetica", Arial, sans-serif;
    color: #fff;
}

.cta-banner a {
    font-size: 17px;
    display: inline-block;
    color: #fff;
    background-color: #00aeef;
    padding: 5px 20px;
    border-radius: 5px;
    text-decoration: none;
    -webkit-box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.34);
    -moz-box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.34);
    box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.34);
}

.no-touch .cta-banner a:hover {
    background-color: #044280;
}

.no-touch .cta-banner a:active {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.34);
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.34);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.34);
}


/* Desktop */

@media (min-width: 768px) {
    .cta-banner .container {
        padding-top: 30px;
        padding-bottom: 48px;
    }
    .cta-banner h3 {
        font-weight: 400;
        color: #fff;
        font-size: 70px;
        line-height: 70px;
        margin-bottom: 18px;
    }
}


/* Mobile */

@media (max-width: 767px) {
    .cta-banner .container {
        padding-top: 20px;
        padding-bottom: 34px;
    }
}


/*-------------------------------------
Footer
-------------------------------------*/


/* All Resolutions */

footer.main {
    background-color: #e8e8e8;
}

footer.main .container {
    padding-top: 30px;
    padding-bottom: 30px
}

footer.main p {
    margin: 0;
    color: #535559;
}

footer.main ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer.main a {
    text-decoration: none;
}


/* Desktop */

@media (min-width: 768px) {
    footer.main p {
        float: left;
    }
    footer.main ul {
        float: right;
    }
    footer.main li {
        display: inline-block;
        margin-left: 20px;
    }
    footer.main li:first-child {
        margin-left: 0;
    }
}


/* Mobile */

@media (max-width: 767px) {
    footer.main {
        text-align: center;
    }
    footer.main p {
        margin-bottom: 20px;
    }
}


/*-------------------------------------
Placeholder
-------------------------------------*/


/* All Resolutions */


/* Desktop */

@media (min-width: 768px) {}


/* Mobile */

@media (max-width: 767px) {
    #recode50header {
        height: 50px !important;
    }
}
