/*!
 * Start Bootstrap - Grayscale Bootstrap Theme (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */

body {
    width: 100%;
    height: 100%;
    font-family: 'Dosis', sans-serif;
    color: black;
    background-color: #fff;
}

html {
    width: 100%;
    height: 100%;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 35px 0;
    text-transform: uppercase;
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

p {
    margin: 0 0 15px 0;
    font-size: 18px;
    line-height: 1.4;
}

@media(min-width:768px) {
    p {
        margin: 0 0 15px 0;
        font-size: 18px;
        line-height: 1.4;
    }
}

a {
    color: #1569bc;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
		
}

.button .navbar-toggle {
color: black}

a:hover,
a:focus {
    text-decoration: underline;
		color: black;
}

.light {
    font-weight: 400;
}

.navbar-custom {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,.3);
    text-transform: uppercase;
    font-family: 'Dosis', sans-serif;
    background-color: #c9e8f6;
}

.navbar-custom .navbar-brand {
    font-weight: bold;
		color: #1569bc;
		font-size: 22px;
}

.navbar-custom .navbar-brand:focus {
    outline: 0;
}

.navbar-custom .navbar-brand .navbar-toggle {
    padding: 4px 6px;
    font-size: 16px;
}

.navbar-custom .navbar-brand .navbar-toggle:focus,
.navbar-custom .navbar-brand .navbar-toggle:active {
    outline: 0;
}

.navbar-custom a {
    color: #1569bc;
		font-weight: bold;
		font-size: 16px;
}

.navbar-custom .nav li a {
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
		
}

.navbar-custom .nav li a:hover {
    outline: 0;
    background-color: rgba(255,255,255,.1);
}

.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
    outline: 0;
    background-color: transparent;
}

.navbar-custom .nav li.active {
    outline: 0;
}

.navbar-custom .nav li.active a {
    background-color: rgba(255,255,255,.3);
}

.navbar-custom .nav li.active a:hover {
    color: rgba(255,255,255,.2);
}

@media(min-width:768px) {
    .navbar-custom {
        padding: 20px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        background: 0 0;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

    .navbar-custom.top-nav-collapse {
        padding: 0;
        border-bottom: 1px solid rgba(255,255,255,.3);
        background: #c9e8f6;
    }
}


.intro {
    display: table;
    width: 100%;
    height: 100%;
    padding: 50px 0;
    text-align: center;
    color: black;
    background: url(../img/intro-bg-mobile.jpg) no-repeat top center scroll;
    background-color: white;
    webkit-background-size: cover;
    moz-background-size: cover;
    background-size: cover;
    o-background-size: cover;
}




.intro .intro-body {
    display: table-cell;
    vertical-align: top;
}

.intro .intro-body .brand-heading {
    font-size: 5px;
}

.intro .intro-body .intro-text {
    font-size: 25px;
}

.intro img {max-width: 350px; padding-bottom: 0px}

@media(min-width:768px) {
    .intro {
        height: 100%;
        padding: 0;
				background: url(../img/intro-bg.jpg) no-repeat top center scroll;
				    background-color: #000;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    }

    .intro .intro-body .brand-heading {
        font-size: 25px;
    }

    .intro .intro-body .intro-text {
        font-size: 30px;
    }
		
		.intro img {max-width: 800px; padding-top: 60px}
}

.btn-circle {
    width: 40px;
    height: 40px;
    margin-top: 15px;
    padding: 5px 12px;
    border: 2px solid black;
    border-radius: 100%!important;
    font-size: 20px;
    color: black;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.btn-circle:hover,
.btn-circle:focus {
    outline: 0;
    color: black;
    background: rgba(255,255,255,.1);
}

.btn-circle i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.btn-circle:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

@-webkit-keyframes pulse {    
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {    
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

.content-section {
    padding-top: 55px;
		padding-bottom: 55px;
}

.download-section {
    width: 100%;
    padding: 70px 0;
    color: black;
    background: url(../img/downloads-bg2.png) no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}


.download-belka-section {
    width: 100%;
    padding: 25px 10px 25px 10px;
    color: #fff;
    background: url(../img/belka.jpg) no-repeat top center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

#map {
    width: 100%;
    height: 200px;
    margin-top: 100px;
}

@media(min-width:767px) {
    .content-section {
        padding-top: 110px;        
				padding-bottom: 110px;
    }

    .download-section {
        padding: 100px 0 75px 0;
    }
		
    .download-belka-section {

    }

    #map {
        height: 400px;
        margin-top: 250px;
    }
}

.btn {
    border-radius: 10;
    text-transform: uppercase;
    font-family: 'Dosis', sans-serif;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-default {
    border: 1px solid #1569bc;
    color: #1569bc;
    background-color: transparent;
}

.btn-default-black {
    border: 1px solid black;
    color: black;
    background-color: transparent;
}

.btn-default:hover,
.btn-default:focus {
    border: 1px solid #1569bc;
    outline: 0;
    color: #1569bc;
    background-color: #c8d6e4;
}

.btn-default-black:hover,
.btn-default-black:focus {
    border: 1px solid black;
    outline: 0;
    color: black;
    background-color: #c8d6e4;
}

ul.banner-social-buttons {
    margin-top: 0;
}

@media(max-width:1199px) {
    ul.banner-social-buttons {
        margin-top: 15px;
    }
}

@media(max-width:767px) {
    ul.banner-social-buttons li {
        display: block;
        margin-bottom: 20px;
        padding: 0;
    }

    ul.banner-social-buttons li:last-child {
        margin-bottom: 0;
    }
}

footer {
    padding: 10px 0;
		margin-top: 10px;
}



::-moz-selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255,255,255,.2);
}

::selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255,255,255,.2);
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

body {
    webkit-tap-highlight-color: rgba(255,255,255,.2);
}

.navbar-toggle {
color: black;
font-size: 20px;
padding: 0 0 0 0}

small {font-size: 80%}

.alert-info {
margin-top: 20px}

.alert-info p{
padding: 0 20px 3px 20px}

.alert-info-small {
margin-top: 0px}

.alert-info-small p{
font-size:0.9em;
padding: 0 5px 0px 5px}


.panel-default {
border: 1px solid #f2f6fc}

.nav-tabs {
border-bottom: 1.5px solid #c8d6e4;
}

.nav-tabs a {
outline: 0}

.nav-tabs > li.active > a:focus {
  border: 1.5px solid #c8d6e4;
	border-bottom: 1.5px solid white;
}

.tab-content {
padding: 10px;
text-align: left;
border-left: 1.5px solid #c8d6e4;
border-right: 1.5px solid #c8d6e4
}

table {
border-bottom: 2px solid #ddd;
border-top: 2px solid #ddd}

hr {
border-top: 2px dashed #c8d6e4;
}

.btn-info {border-radius: 10px; border-color: #d2dee9; transition: none; background-color: #d2dee9; font-size: 12px; padding:3px; color: black; width:61px; margin-bottom: 3px; cursor: default}
.btn-info:hover {border-radius: 10px; border-color: #d2dee9; transition: none; background-color: #d2dee9; font-size: 12px; color: black; width:61px; margin-bottom: 3px}

.btn-info2 {border-radius: 10px; border-color: silver; transition: none; background-color: silver; font-size: 12px; padding:3px; color: black; width:61px; cursor: default}
.btn-info2:hover {border-radius: 10px; border-color: silver; transition: none; background-color: silver; font-size: 12px; color: black; width:61px}

.web {border-radius: 10px; border-color: #85b6e5; transition: none; background-color: #85b6e5; font-size: 12px; padding:3px; color: black; margin-bottom: 3px}
.web:hover {border-radius: 10px; border-color: #2367a9; transition: none; background-color: #2367a9; font-size: 12px; padding:3px; color: white; margin-bottom: 3px}
.web2 {border-radius: 10px; border-color: #c1cfdc; transition: none; background-color: #c1cfdc; font-size: 12px; padding:3px; color: black; margin-bottom: 3px}
.web2:hover {border-radius: 10px; border-color: #5e6a7d; transition: none; background-color: #5e6a7d; font-size: 12px; padding:3px; color: white; margin-bottom: 3px}






.lecture {
    position: relative;
    float: left;
    width: 100%;
    border-color: none; 
    text-align: center; 
    padding:5px 5px 2px 5px;
    margin-bottom: 7px;
}

.ele1 {
    padding: 5px;
    margin: 0;
}

.ele2 {
    padding: 5px;
    margin: 0;
}
.ele2 p{font-weight: bold; color: #030060}
.ele3 {
    padding: 5px;
    margin: 0;
}
 .ele3 p{font-size: 1.1em;}
.ele4 {
    padding: 5px 5px 5px 5px;
    margin: 0;
}

.lecture p{margin-bottom:0px}




@media(min-width:768px) {
.lecture {
    position: relative;
    float: left;
    width: 100%;
    border-color: none; 
    text-align: left; 
    padding:5px 0px 2px 10px;
    margin-bottom: 7px;
}

.ele1 {
    padding: 5px;
    margin: 0;
    max-width: 15%;
}

.ele2 {
    padding: 5px;
    margin: 0;
    }
    .ele2 p{font-weight: bold;}

.ele3 {
    padding: 5px;
    margin: 0;
}
    .ele3 p{font-size: 1.1em;}

.ele4 {
    padding: 5px;
    margin: 0;
    padding-right: 0px;
    text-align: right;
}
ele4 p{font-size: 1.1em; text-align: right;}
    
.lecture p{margin-bottom:0px}    
}

.wyk {background: #e8f2fc;}
.wyka {background: #f5fbfe;}
.warr {background: #fdf5f2;}
.waro {background: #eff6f0;}

.popover {font-size: 12px; text-transform: lowercase}