<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS Reset */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

*, html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    color: rgb(71,79,84);
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* main CSS styling */

/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */

@font-face {
    font-family: OpenSans;
    src: url(fonts/OpenSans-Regular.ttf);
}

strong{
    font-weight: bold;
}

body{
    font-size: 100.01%;
    font-family: OpenSans, sans-serif;
    line-height: 1.3em;
}

header{
    text-align: center;
}

.container{
    background: rgb(255,255,255);
}

.main{
    text-align: center;
}

.logo_head{
    width: 220px;
    padding: 25px 0;
}

.divider{
    width: 100%;
    height: 25px;
    background:rgb(240,124,0);
}

.header_picture{
    width: 100%;
    height: auto;
    border-bottom: 2px solid rgb(71,79,84);
}

h1{
    font-size: 2em;
    line-height: 2.4em;
}

h2{
    font-size: 1.6em;
    line-height: 1.6em;
}

h3{
    font-size: 1.3em;
    line-height: 1.5em;
}



p{
    padding: 25px 0px;
}

hr{
    margin-top: 0px;
    border: 1px solid rgb(240,124,0);
}

a{
    font-weight: bold;
    text-decoration: none;
    color: white;
}

a:hover{
    color: rgb(71,79,84);
    text-decoration: none;
}

footer{
    margin-top: 25px;
}

.footer{
    width: 100%;
    height: auto;
    background:rgb(240,124,0);
    padding: 25px;
    text-align: center;
    color: rgb(255,255,255);
}

.foot{
        padding-bottom: 25px;
    }

.service, .ref{
    padding: 25px;
    text-align: center;
}

nav ul{
    list-style: none;
}

.copy{
    width: 100%;
    min-height: 50px;
    padding-top: 15px;
    background: rgb(71,79,84);
    color: rgb(255,255,255);
    text-align: center;
}

input[type="text"], input[type="email"]{
    width: 100%;
    height: 35px;
    border: 1px solid #eee;
    margin: 10px 0;
    padding: 5px;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus{
    border: 1px solid rgb(240,124,0);
}

textarea{
    width: 100%;
    height: 150px;
    border: 1px solid #eee;
    margin: 10px 0;
    padding: 5px;
}

.btn{
    background: rgb(255,255,255);
    border: 1px solid rgb(71,79,84);
    color: rgb(71,79,84);
}

.btn:hover{
    background: rgb(71,79,84);
    border: 1px solid rgb(71,79,84);
    color: rgb(255,255,255)
}

.imp{
    text-align: left;
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) { 

    body{
        background: rgb(71,79,84);
    }
    
    .main{
        text-align: center;
    }
    
    header{
        text-align: left;
    }

    .logo_head{
        width: 220px;
        padding-left: 25px;
    }

}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) { 
    
    .footer{
        text-align: left;
    }
    
    nav{
        text-align: right;
        padding-right: 50px;
        line-height: 1.7em;
    }
    
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {  }

</pre></body></html>