/* Reset CSS
 * --------------------------------------- */
 
* {
    box-sizing: border-box;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td {
    padding: 0;
    margin: 0;

}
a{
  text-decoration:none;
  color: inherit;
}
table {
    border-spacing: 0;
}
fieldset,img {
    border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
    font-weight: normal;
    font-style: normal;
}
strong{
  font-weight: bold;
}
nav ol, nav ul {
    list-style: none;
    margin:0;
    padding:0;
}
caption,th {
    text-align: left;

}
h1,h2,h3,h4,h5,h6 {
    font-weight: normal;
    font-size: 100%;
    margin:0;
    padding:0;
    color:#333;
}
q:before,q:after {
    content:'';
}
abbr,acronym { border: 0;
}

body {
    font-size: 18px;
    font-family: "Courier New", sans-serif;
    line-height: 24px;
}

header {
    padding: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

header ul {
    list-style: none;
    display: flex;
    justify-content: center;
    color: #222;
    font-size: 36px;
}

header ul li {
    padding: 0px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header ul li a {
    transition: 0.2s;
}

    header ul li a:hover {
        color: #666;
    }

h1, h2 {
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-size: 36px;
    line-height: 44px;
}

h2 {
    font-size: 24px;
    line-height: 32px;
}

.highlight {
    font-size: 22px;
    line-height: 30px;
}

@media screen and (max-width: 480px) {

    body {
        font-size: 18px;
        line-height: 22px;
    }

    h1 {
        font-size: 26px;
        line-height: 30px;
    }

    h2 {
        font-size: 22px;
        line-height: 26px;
    }

    .highlight {
        font-size: 20px;
        line-height: 24px;
    }

}

h1:not(:last-child), h2:not(:last-child), p:not(:last-child) {
    margin-bottom: 30px;
}

h2 {
}

footer {
    font-weight: 400;
    font-style: normal;
    text-align: center;
    padding: 20px;
    color: #222;
    background: #fff;
}

.gallery {
    display: flex;
    justify-content: flex-start;
    margin: 50px auto;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1440px;
    font-size: 0; 
    line-height: 0;
}

    .gallery > div {
        flex-basis: calc(100% / 3);
        padding: 20px;
        text-align: left;
    }

    @media screen and (max-width: 800px) {

        .gallery > div {
            flex-basis: calc(100% / 2);
        }

    }

    @media screen and (max-width: 480px) {

        .gallery > div {
            flex-basis: 100%;
        }

    }

    /*.gallery > div a {
        border: 1px solid #fff;
        display: block;
        padding: 10px;
        margin-bottom: 20px;
    }*/

    .gallery > div img {
        border-radius: 5px;
        width: 100%;
        height: auto; 
        transition: 0.2s;
        margin-bottom: 20px;
        box-shadow: rgba(0,0,0,0.2) 1px 1px 5px;
    }

    /*.gallery > div img:hover { 
        border-radius: 0px;
    }*/

    .gallery > div h3 {
        font-size: 18px;
        line-height: 22px;
        font-weight: 300;
        color: #000;
    }

    .gallery > div p {
        font-size: 12px;
        line-height: 18px;
    }

.columns {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    margin: auto;
}

    .columns > div {
        flex-basis: 30%;
        text-align: left;
    }

@media screen and (max-width: 900px) {

    .columns {
        flex-direction: column;
    }

    .columns > div {
        flex-basis: 100%;
    }

    .columns > div:not(:first-child) {
        margin-top: 30px;
    }

}

section.steps {
    width: 100%;
    margin: auto;
    text-align: center; 
    padding: 0px 50px 50px;
}

section.refs {
    padding: 50px;
    background: #eee;
}

section.contact {
    padding: 50px;
}

@media screen and (max-width: 900px) {

    section.steps {
        padding: 0px 30px 30px;
    }

    section.refs {
        padding: 30px;
    }

    section.contact {
        padding: 30px;
    }

}

div.cta {
    text-align: center;
}

    div.cta a {
        display: inline-block;
        border: 1px solid #333;
        padding: 5px 10px;
    }

    div.cta a:hover {
        background: #333;
        color: #eee;
    }