

/* global 
--------------------------------------------------------------*/
@font-brand: 'Roboto Condensed', sans-serif;
@font-heading: 'Roboto Condensed', sans-serif;
@font-main: 'Roboto Condensed', sans-serif;
@font-text: 'Roboto Condensed', sans-serif;

/* Screen Sizes 
--------------------------------------------------------------*/
@screen-xs-port: 480px;
@screen-xs-max: 760px;
@screen-sm-min: 768px;
@screen-md-min: 992px;
@screen-lg-min: 1200px;
@screen-xlg-min: 1600px;

/* Site CSS 
--------------------------------------------------------------*/
body {
    color: #333;
    font-family: @font-main;
    font-size: 16px;
    background-color: #cccccc;
    background: url(../img/bk.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.right-content {
    margin-top: 240px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 10px;
}

.homelogo {
    margin-bottom: 30px;
}

.hometext {
    margin-bottom: 30px;
}

a {
    color: #000;
    text-decoration: underline;
}

h3 {
    font-size: 20px;
    line-height: 35px;
}
/*=========   MAX-WIDTH 767PX    =======*/
@media (max-width:@screen-xs-max) {
    .right-content {
        margin-top: 130px;
        background: rgba(255, 255, 255, 0.9);
        padding: 20px 10px;
    }

    svg:not(:root) {
        overflow: hidden;
        width: 230px;
    }

    .homelogo {
        margin-bottom: 30px;
    }

    .hometext {
        margin-bottom: 30px;
    }


    hr {
        display: none;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    h3 {
        font-size: 20px;
        line-height: 35px;
    }
}

/*=========   MIN-WIDTH 768PX    =======*/
@media (min-width:@screen-sm-min) {
}

/*=========   MIN-WIDTH 992PX    =======*/
@media (min-width:@screen-md-min) {
}

/*=========   MIN-WIDTH 1200PX    =======*/
@media (min-width:@screen-lg-min) {
}

/*=========   MIN-WIDTH 1600PX    =======*/
@media (min-width:1600px) {
}
