/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
    margin: 0;
    padding: 0;
}


/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
    color: #404040;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    font-family: "Montserrat", sans-serif;
    color: #333333;
    text-transform: uppercase;
}

h1 {
    font-size: 1.5em;
    line-height: 56px;
    word-wrap: break-word;
    display: inline-block;
}

@media (min-width: 451px) {
    h1 {
        font-size: 2.5em;
        line-height: 56px;
    }
}

@media (min-width: 621px) {
    h1 {
        font-weight: 900;
        font-size: 5em;
        line-height: 80px;
    }
}

h2,
.h2 {
    font-weight: bold;
    font-size: 1.8em;
    line-height: 46px;
    display: inline-block;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    margin-block-start: 0;
    margin-block-end: 0;
    /* max width */
}

@media (min-width: 621px) {

    h2,
    .h2 {
        font-size: 3em;
        line-height: 56px;
    }
}

h3,
.h3,
h4,
.h4 {
    font-weight: bold;
    font-size: 1.8em;
    line-height: 32px;
    /* max width */
}

@media (min-width: 621px) {

    h3,
    .h3,
    h4,
    .h4 {
        font-size: 2em;
        line-height: 40px;
    }
}

.text-white {
    color: #fff;
}

.text-orange {
    color: #ce3b08;
}

p {
    margin-bottom: 1em;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

/* Elements
--------------------------------------------- */
body {
    background: #fff;
    color: #4a4a4a;
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

html {
    scroll-behavior: smooth;
}

.site {
    margin: 0 auto;
    max-width: 1400px;
    position: relative;
    display: block;
}


ul,
ol {
    margin: 0 0 1.5em 0;
    padding: 0;
}

ul {
    list-style: none;
}

ol {
    list-style: decimal;
}

li {
    font-size: 1em;
    line-height: 30px;
    padding-bottom: 30px;
    /* max width */
}

@media (min-width: 961px) {
    li {
        font-size: 1.3125em;
        line-height: 30px;
    }
}

li i {
    float: left;
    padding-top: 10px;
    padding-right: 30px;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 0;
}


img {
    height: auto;
    max-width: 100%;
}



address {
    font-style: normal;
}

/* Links
--------------------------------------------- */
a {
    color: #4a4a4a;
    -webkit-transition: all 0.4s 0s ease-in-out;
    -moz-transition: all 0.4s 0s ease-in-out;
    -ms-transition: all 0.4s 0s ease-in-out;
    -o-transition: all 0.4s 0s ease-in-out;
    transition: all 0.4s 0s ease-in-out;
}

a.text-white {
    text-decoration: none;
}

a.text-white:hover,
a.text-white:focus,
a.text-white:active {
    color: #4a4a4a;
}

a:visited {
    color: #333333;
}

a:hover,
a:focus,
a:active {
    color: #ce3b08;

}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
}

/* Forms
--------------------------------------------- */
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */


.main-navigation {
    background-color: #f8f8f8;
    display: block;
    width: 100%;
}

.main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 30px;
    background-color: #f8f8f8;
    /* max width */
}

.main-navigation ul li a:hover {
    text-decoration: underline;
}

@media (min-width: 961px) {
    .main-navigation ul {
        display: flex;
        float: right;
        padding-top: 15px;
        margin-right: 5%;
    }

    .main-navigation ul li {
        padding: 30px 30px 10px;
    }

    .main-navigation ul li a {
        font-size: 0.9em;
        line-height: 1.5em;
        font-weight: 500;


    }
}

.main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
    background-color: #f8f8f8;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul li {
    background-color: #f8f8f8;
}

.main-navigation ul ul li:hover>ul,
.main-navigation ul ul li.focus>ul {
    display: block;
    left: auto;
}

.main-navigation ul ul a {
    width: 200px;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
}

/* Small menu. */
.toggled .nav-menu {
    width: 100%;
    padding-top: 80px;
}

.menu-toggle,
.main-navigation.toggled ul {
    display: block;
}

.menu-toggle {
    border: none;
    padding: 0px 0px 0px 0px;
    background-color: #f8f8f8;
    position: absolute;
    top: 30px;
    right: 30px;
    clear: both;
    /* max width */
}

@media (min-width: 961px) {
    .menu-toggle {
        display: none;
        padding: 30px 0px 30px 60px;
    }
}

/* Header
--------------------------------------------- */
.site-header {
    background-color: #f8f8f8;
    min-height: 120px;
    max-width: 1400px;
    /* max width */
}

@media (min-width: 961px) {
    .site-header {
        padding-top: 20px;
        height: 100px;
        width: 100%;
        position: fixed;
        z-index: 2;
    }
}

.site-header .site-branding {
    margin-top: 30px;
    margin-left: 15px;
    max-width: 167px !important;
    float: left;
    /* max width */
}

@media (min-width: 961px) {
    .site-header .site-branding {
        float: left;
        margin-left: 65px;
        margin-top: 50px;
    }
}

/* Posts and pages
--------------------------------------------- */
.sticky {
    display: block;
}

.post,
.page {
    margin: 0 0 1.5em;
}

.updated:not(.published) {
    display: none;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 1.5em 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

.panel-layout {
    padding: 15px;
    padding-top: 40px;
    /* max width */
}

@media (min-width: 451px) {
    .panel-layout {
        padding-left: 5%;
        padding-right: 5%;
        padding-top: 80px;
    }
}

.flex {
    display: flex;
    flex-direction: column;
    /* max width */
}

@media (min-width: 961px) {
    .flex {
        display: flex;
        flex-direction: row;
    }

    .flex:first-child {
        padding-bottom: 0px;
    }
}

.flex .flex-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* max width */
}

.flex .flex-item:first-child {
    padding-bottom: 40px;
}

@media (min-width: 961px) {
    .flex .flex-item {
        align-items: flex-start;
        padding: 10px;
        width: 50%;
    }

    .flex .flex-item:first-child {
        padding-right: 40px;
    }

    .flex .flex-item--our-process h3 {
        margin: 0;
        margin-bottom: 20px;
        line-height: 40px;
    }

    .flex .flex-item--our-process span {
        display: block;
        line-height: 30px;
    }

    .flex .flex-item--our-process img {
        float: left;
        margin-right: 20px;
        margin-top: 8px;
    }
}

.orange-background {
    background-color: #ce3b08;
    color: #fff;
    border-radius: 10px;
    padding: 40px 15px;
    /* max width */
    /* max width */
}

@media (max-width: 620px) {
    .orange-background a {
        font-size: 0.7em;
    }
}

@media (min-width: 961px) {
    .orange-background {
        padding: 40px 30px;
    }
}




.panel-hero {
    background-color: #f8f8f8;
    clear: both;
    margin-top: -40px;
}



.panel-hero .flex-item {
    margin-bottom: 60px;
    /* max width */
}

@media (min-width: 961px) {
    .panel-hero .flex-item {
        margin-bottom: 200px;
        padding-top: 120px;
    }

    .panel-hero .flex-item p {
        max-width: 560px;
    }
}

.panel-work {
    position: relative;
    z-index: 1;
}

.panel-our-process .flex {
    margin-bottom: 60px;
}

/* Footer
--------------------------------------------- */
.site-footer {
    width: 100%;
    background-color: #f8f8f8;
    margin-top: -300px;
    padding-top: 300px;
    padding-bottom: 60px;
    margin-bottom: 0;
    z-index: -1;
}

.site-footer p {
    text-align: center;
    font-size: 1.125em;
    color: #666;
    padding-left: 15px;
    padding-right: 15px;
}

.site-footer .version {
    font-size: 0.8em;
    padding: 10px;
    color: #666;
    text-align: center;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
    display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 50px;
    width: auto;
    z-index: 100000;

}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
    outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
    /*rtl:ignore*/
    float: left;
    /*rtl:ignore*/
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    /*rtl:ignore*/
    float: right;
    /*rtl:ignore*/
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}

/*# sourceMappingURL=style.css.map */