body {
    font-family: "proxima-nova",sans-serif;
    font-style: normal;
    font-weight: 300; /*light*/
    font-size: 18px;
    line-height: 1.2;
    color: #6d6e71;
}
img {
    height: auto !important;
    max-width: 100%;
}
hr {
    border-color: #6d6e71;
}
a:link,
a:visited {
    color: #79cdcf;
}
h1, h2,
h3, h4 {
    color: #ac8bad;
    line-height: 1.1;
    letter-spacing: 2px;
    font-weight: 300;
}
h1 { font-size: 40px; }
h2 { font-size: 40px; }
h3 { font-size: 30px; }

/** selectable styles **/
.clear-float {
    clear:both;
}

.orange {
    color: #f47729;
}
.purple {
    color: #53284f;
}
.blue {
    color: #79cdcf;
}

a.button:link,
a.button:visited,
.button {
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    line-height: 1;
    color: #FFF;
    background-color: #f47729;
    padding: 10px 2%;
    box-sizing: border-box;
    min-width: 300px;
    max-width: 100%;
    transition: all 0.3s ease;
}
.button:hover {
    background-color: #f15a29;
}


img.display-left {
    float:left;
    max-width: 50%;
    margin-right:20px;
    margin-bottom:10px;
}
img.display-right {
    float:right;
    max-width: 50%;
    margin-left:20px;
    margin-bottom:10px;
}

/**** blocks ****/
.col-wrap,
.logo-block {
    display: flex;
    text-align: center; /*IE fallback */
    width: 100%;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.logo-block {
    align-items: center;
    text-align: center;
    color: #c2c1c1;
}
.logo-block img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100px;
    height: auto !important;
    margin: 5px;
    -webkit-filter: grayscale(100%) opacity(30%);
    filter: grayscale(100%) opacity(30%);
    transition: -webkit-filter 0.3s ease-in-out,
                filter 0.3s ease-in-out;
}
.logo-block img:hover {
    -webkit-filter: grayscale(0%) opacity(100%);
    filter: grayscale(0%) opacity(100%);
}

.small-block,
.two-cols,
.service {
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
}
.small-block { /*for footer editable*/
    vertical-align: middle;
    width: 200px;
    max-width: 100%;
    margin: 0px 10px;
    transition: all 0.3s ease;
}
.small-block:after {
    content:"";
    display: block;
    width: 100%;
    height: 1px;
    clear: both;
}
.small-block a {
    display: block;
    color: #79cdcf;
    text-decoration: none;
}
.small-block a:hover {
    color: #53284f;
}
.small-block img {
    display: inline-block;
    vertical-align: middle;
    width: 50px !important;
    height: auto;
    padding-right: 20px;
    float: left;
}
.small-block p {
    margin: 5px 0px;
}

.two-cols {
    width: 48%;
    padding: 0px 1%;
}
.two-cols h1,
.two-cols h2,
.two-cols h3,
.two-cols h4 {
    margin-top: 0px;
}
.service {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    width: 30%;
    padding: 2%;
    background-color: #ffffff;
    border-radius: 3px;
    box-sizing: border-box;
    margin: 20px 0px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(35,31,32,0.1);
    -moz-box-shadow: 0px 0px 15px 0px rgba(35,31,32,0.1);
    box-shadow: 0px 0px 15px 0px rgba(35,31,32,0.1);
}


@media only screen and (max-width: 960px){
    h1 { font-size: 30px; }
    h2 { font-size: 30px; }
    h3 { font-size: 20px; }
    .service {
        width: 48%;
        margin: 10px 0px;
    }
}
@media only screen and (max-width: 760px){
    img.display-left,
    img.display-right {
        float: none;
        max-width: 100%;
        margin: 20px 0;
    }
    .two-cols {
        width: 100%;
        margin: 0;
    }
    .small-block {
        display: block;
        margin: 5px auto;
        min-height: 50px;
    }
    .small-block a {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
}
@media only screen and (max-width: 600px){
    .col-wrap {
        display: block;
    }
    .service {
        display: block;
        width: 300px;
        padding: 20px;
        max-width: 100%;
        margin: 10px auto;
    }
}
@media only screen and (max-width: 500px){
    a.button:link,
    a.button:link:visited
    .button {
        min-width: 0px;
    }
}
@media only screen and (max-width: 250px){
    .small-block a {
        text-align: center;
        flex-direction: column;
    }
    .small-block img {
        padding: 0px;
    }
}