﻿html {
    background-image: url("../images/background.png");
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
}
body {
    background-image: url("../images/background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    
    
}
.color-white
{
    color: #ffffff;
}
.bg-grey {
    background-color: #666666;
}
.bg-lightgray {
    background-color: #AAAAAA;
}
.servicelist {
    list-style-image: url('../Images/check.png');
    /*list-style-position: outside;*/
    /*text-align: left;*/
}
.color-red {
    color: #fb0006;
}
.color-yellow {
    color: #feef0e;
}
.color-green {
    color: #00d200;
}
.color-blue {
    color: #0000d3;
}
.color-magenta {
    color: #ef00d0;
}
.color-brown {
    color: #844c4d;
}

/*.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
div.horizontal {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

div.vertical {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 15px;
}
.content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}*/
.box-shadow {
    -webkit-box-shadow: 0 3px 3px rgba(91,92,94,.9);
    /*-webkit-box-shadow: 0 1px 1px rgba(72,78,85,.6);*/
    box-shadow: 0 3px 3px rgba(91,92,94,.9);
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

    .box-shadow:hover {
        -webkit-box-shadow: 0 20px 40px rgba(91,92,94,.9);
        box-shadow: 0 20px 40px rgba(91,92,94,.9);
        -webkit-transform: translateY(-15px);
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -o-transform: translateY(-15px);
        transform: translateY(-15px);
    }


