@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300&subset=latin,latin-ext,cyrillic);
@import url(https://fonts.googleapis.com/css?family=Russo+One&subset=latin,latin-ext,cyrillic);

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: Verdana;
    background-color: #232323;
    background-image: url('../img/bg.png');
    margin-bottom: 100px;
}

.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

h1 {
    font-family: 'Russo One', sans-serif;
    color: #f7f2fb;
    font-size: 500%;
}

h2 {
    font-size: 200%;
    font-family: 'Open Sans Condensed', sans-serif;
    color: #fff;
}

h3 {
    font-size: 140%;
    font-family: 'Open Sans Condensed', sans-serif;
    color: #ddd;
}

p {
    color: #777;
}

@media (max-width: 992px) {
    h1 {
        font-size: 350%;
    }
    h2 {
        font-size: 150%;
    }
    h3 {
        font-size: 120%;
    }
    p {
        font-size: 90%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 250%;
    }
}

.btn-default, .btn-default:active, .btn-default:focus {
    background-color: #29a0c2;
    border-color: #2694b4;
    color: #fff;
}

.btn-default:hover, .btn-default:active:focus {
    background-color: #c211c8;
    border-color: #b110b7;
    color: #eee;    
}

.hlight {
    color: #29a0c2;
}





/* Header */


.page-top {
    height: 5px;
    background-image: url('../img/bg-top.png');
    -moz-background-size: 100%;
    -webkit-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;
}

.header {
    /*background-color: #272727;*/
    background-image: url('../img/bg-header.png');
}

.row .container {
    height: 120px;
}

.header .col-sm-2 {
    height: 120px;
    position: relative;
}

.header .col-sm-5 {
    height: 120px;
    display: table;    
}

.header .list-inline, .header .list-unstyled {
    display: table-cell;
    vertical-align: middle;
}

.header .lang ul li:before {
    content: "\25B8";
    margin-right: 3px;
    color: #f2c7f4;
}

.list-left {
    text-align: left;
}

.list-right {
    text-align: right;
}

.logo {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}

.header a {
    color: #fff;
    text-transform: lowercase;
    font-weight: bold;
    font-size: 90%;
}





/* Info */


.info {
    margin-top: 55px;
}

@media (max-width: 992px) {
    .info {
        margin-top: 45px;
    }
}

@media (max-width: 768px) {
    .info {
        margin-top: 30px;
    }
}

.info, .info p {
    text-align: center;
    color: #ddd;
}

.info a {
    color: #29a0c2;
}





/* Hero */


.hero {
    text-align: center;
}

.hero h1 {
    margin-top: 1em;
    margin-bottom: 1em;
    padding-top: .5em;
    padding-bottom: .5em;
    text-transform: uppercase;    
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}






/* Services */


.services {
    text-align: center;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .services {
        text-align: left;
        margin-bottom: 30px;
    }
    .services h2 {
        margin-top: 0;
    }
    .services-head {
        margin-bottom: 30px;
    }
}

.services-head {
    text-align: center;
}

.services-body {
    margin-bottom: 30px;
}

.services-img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}






/* Footer */


.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    margin: 0 auto;
    /*background-color: #181818;*/
    background-image: url('../img/bg-footer.png');
}

.footer .col-xs-12 {
    height: 100px;
    display: table;
    text-align: center;
}

.footer p {
    display: table-cell;
    vertical-align: middle;
    font-size: 80%;
    color: #ccc;
}

.footer a {
    color: #29a0c2;
}

.footer a:hover, .footer a:active, .footer a:hover:active, .footer a:focus {
    color: #fff;
}

@media (max-width: 768px) {
    .footer p {
        font-size: 90%;
    }
}






