@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,700);

html, body{
    height: 100%;
    overflow: hidden;
}

a{
    color: #4a90e2;
}

a:hover, a:focus{
    color: #1f69c1;
}

.btn, .form-control{
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -ms-border-radius: 2px;
}

.btn-default{
    background-color: #4a90e2;
}

.btn-default:hover, .btn-default:focus{
    background-color: #1f69c1;
}

#preloaderWrapper{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
}

#preloaderBg{
    position:absolute;
    width: 100%;
    height: 100%;
    background: #eee;
}

#preloaderWrapper .spinner{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    width: 50px;
    height: 50px;
}

#preloaderWrapper .spinner:before, #preloaderWrapper .spinner:after {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 25px;
    height: 25px;
    content: "";
    border-radius: 25px;
}

#preloaderWrapper .spinner:before {
    left: 0;
    background-color: #ffffff;
    animation: spinner-left 0.5s infinite ease;
}

#preloaderWrapper .spinner:after {
    right: 0;
    background-color: #28aadc;
    animation: spinner-right 0.5s infinite ease;
}

/* left ball */
@keyframes spinner-left {
  0% {
    transform: scale(0.5);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.5);
  }
}

/* right ball */
@keyframes spinner-right {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

.bubblingg-preloader {
	text-align: center;
	width:78px;
	height:49px;
	margin: 100px auto;
}

.bubblingg-preloader span {
	display: inline-block;
	vertical-align: middle;
	width: 10px;
	height: 10px;
	margin: 24px auto;
	background: rgb(242,242,242);
	border-radius: 49px;
		-o-border-radius: 49px;
		-ms-border-radius: 49px;
		-webkit-border-radius: 49px;
		-moz-border-radius: 49px;
	animation: bubblingG 0.975s infinite alternate;
		-o-animation: bubblingG 0.975s infinite alternate;
		-ms-animation: bubblingG 0.975s infinite alternate;
		-webkit-animation: bubblingG 0.975s infinite alternate;
		-moz-animation: bubblingG 0.975s infinite alternate;
}

#bubblingG_1 {
	animation-delay: 0s;
		-o-animation-delay: 0s;
		-ms-animation-delay: 0s;
		-webkit-animation-delay: 0s;
		-moz-animation-delay: 0s;
}

#bubblingG_2 {
	animation-delay: 0.2895s;
		-o-animation-delay: 0.2895s;
		-ms-animation-delay: 0.2895s;
		-webkit-animation-delay: 0.2895s;
		-moz-animation-delay: 0.2895s;
}

#bubblingG_3 {
	animation-delay: 0.589s;
		-o-animation-delay: 0.589s;
		-ms-animation-delay: 0.589s;
		-webkit-animation-delay: 0.589s;
		-moz-animation-delay: 0.589s;
}



@keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color:rgb(40,169,220);
		transform: translateY(0);
	}

	100% {
		width: 23px;
		height: 23px;
		background-color:rgb(242,242,242);
		transform: translateY(-20px);
	}
}

@-o-keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color:rgb(40,169,220);
		-o-transform: translateY(0);
	}

	100% {
		width: 23px;
		height: 23px;
		background-color:rgb(242,242,242);
		-o-transform: translateY(-20px);
	}
}

@-ms-keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color:rgb(40,169,220);
		-ms-transform: translateY(0);
	}

	100% {
		width: 23px;
		height: 23px;
		background-color:rgb(242,242,242);
		-ms-transform: translateY(-20px);
	}
}

@-webkit-keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color:rgb(40,169,220);
		-webkit-transform: translateY(0);
	}

	100% {
		width: 23px;
		height: 23px;
		background-color:rgb(242,242,242);
		-webkit-transform: translateY(-20px);
	}
}

@-moz-keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color:rgb(40,169,220);
		-moz-transform: translateY(0);
	}

	100% {
		width: 23px;
		height: 23px;
		background-color:rgb(242,242,242);
		-moz-transform: translateY(-20px);
	}
}

.navbar-fixed-top{
    z-index: 999;
}

#topBar{
    background: #fafafa;
    padding: 5px 0;
}

header{
    margin: 25px 0;   
}

header .links{
    display: inline-block;
    margin: 15px 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

header .links li{
    display: inline-block;
    border-radius: 2px;
    margin-right: 10px;
    background: #fff;
    
    /*-webkit-transition: background-color 350ms linear;
    -moz-transition: background-color 350ms linear;
    -o-transition: background-color 3530ms linear;
    -ms-transition: background-color 350ms linear;
    transition: background-color 350ms linear;*/
}

header .links li a{
    display: inline-block;
    padding: 7px 15px;
}

header .links li.active{
    background: #4a90e2;
}

header .links li.active:hover{
    background: #1f69c1;
}

header .links li:hover, #projectUnivercity .links li:focus{
    text-decoration: none;
    background: #4a90e2;
    
    /*-webkit-transition: background-color 350ms linear;
    -moz-transition: background-color 350ms linear;
    -o-transition: background-color 350ms linear;
    -ms-transition: background-color 350ms linear;
    transition: background-color 350ms linear;*/
}

header .links li.active a{
    color: #fff;
    
    /*-webkit-transition: color 350ms linear;
    -moz-transition: color 350ms linear;
    -o-transition: color 350ms linear;
    -ms-transition: color 350ms linear;
    transition: color 350ms linear;*/
}

header .links li:hover a, header .links li:focus a{
    text-decoration: none;
    color: #fff;
}

#preview{
    overflow: hidden;
}

#preview img{
    width: 100%;
}

.logo{
    display: inline-block;
    margin: 7px 0;
}

.logo a{
    display: block;
    overflow: hidden;
}

.logo img{
    height: 50px;;
}

#projectUnivercity{
    margin: 50px 0;
}

#projectUnivercity .proj-name{
    font-size: 28px;
    margin-top: 15px;
    margin-bottom: 5px;
}

nav{
    display: none;
    color: #333;
    text-transform: uppercase;
}

nav .brand-container{
    font-size: 10px;
}

nav .brand-container .proj-name{
    display: block;
    font-size: 18px;
    margin: 10px 0 2px;
}

.navbar-default li.active a{
    background-color: #4a90e2 !important;
}

.navbar-default li a:hover, .navbar-default .navbar-nav>.open>a{
    background-color: #4a90e2 !important;
    color: #fff;
}

.navbar-default {
    background-color: #fff;
    border-color: #f2f2f2;
}

#projectUnivercity p{
    margin-bottom: 10px;
}

#projectUnivercity .links{
    margin: 15px 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

#projectUnivercity .links li{
    display: inline-block;
    border-radius: 2px;
    font-size: 12px;
    float: left;
    margin-right: 10px;
    background: #fff;
    
    /*-webkit-transition: background-color 350ms linear;
    -moz-transition: background-color 350ms linear;
    -o-transition: background-color 3530ms linear;
    -ms-transition: background-color 350ms linear;
    transition: background-color 350ms linear;*/
}

#projectUnivercity .links li a{
    display: inline-block;
    padding: 7px 15px;    
}

@media (min-width:992px) { 
    #projectUnivercity .links li{
        float: right;
        margin-left: 10px;
    }
}

#projectUnivercity .links li.active{
    background: #4a90e2;
}

#projectUnivercity .links li.active:hover{
    background: #1f69c1;
}

#projectUnivercity .links li:hover, #projectUnivercity .links li:focus{
    text-decoration: none;
    background: #4a90e2;
    
    /*-webkit-transition: background-color 350ms linear;
    -moz-transition: background-color 350ms linear;
    -o-transition: background-color 350ms linear;
    -ms-transition: background-color 350ms linear;
    transition: background-color 350ms linear;*/
}

#projectUnivercity .links li.active a{
    color: #fff;
    
    /*-webkit-transition: color 350ms linear;
    -moz-transition: color 350ms linear;
    -o-transition: color 350ms linear;
    -ms-transition: color 350ms linear;
    transition: color 350ms linear;*/
}

#projectUnivercity .links li:hover a, #projectUnivercity .links li:focus a{
    text-decoration: none;
    color: #fff;
}

#description{
    text-transform: none;
    margin-top: 15px;
}

#description p{
    margin-bottom: 10px;
}

.big-heading{
    display: block;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 50px;
}

#tiles{
    padding: 100px 0;
    background: #f2f2f2;
}

#tiles .tile{
    position: relative;
    display: block;
    text-align: center;
    cursor: pointer;
}

#tiles .tile a{
    display: block;
    position: relative;
    padding: 50px;
    margin-bottom: 25px;
}

#tiles .tile a img{
    width: 100px;
    height: 100px;
}

#tiles .tile.x2 a{
    padding: 162px 50px;
}

#tiles .tile-description{
    position: absolute;
    bottom: 10px; 
    left: 15px;
    right: 15px;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    overflow: hidden;
    max-height: 40px;
}

#eusponsored{
    padding: 100px 0;
    text-align: center;
}

#eusponsored img{
    width: 300px;
}

#catName{
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 700;
}

#relatedCats{
    padding: 25px 0;
}

#poiListBackground{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #2f2f2f;
    opacity: .6;
    z-index: 997;
}

#poiListWrapper{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 450px;
    height: 500px;
    margin-top: -250px;
    margin-left: -225px;
    overflow: hidden;
    z-index:998;
    
    border-radius: 3px;
    -ie-border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

#poiListWrapper .header{
    height: 50px;
    overflow: hidden;
    background: rgb(82, 127, 153);
    color: #fff;
    padding: 15px 20px;
}

#poiListWrapper .header a.close{
    color: #fff;
    text-decoration: none;
}

#poiListWrapper .body{
    height: 450px;
    background: #f2f2f2;
    padding: 17px;
    overflow: hidden;
}

#poiList{
    height: 100%;
    overflow: auto;
}

.poi-list-item{
    margin-bottom: 25px;
}

#map{
    height: 650px;
}

.poi-header{
    padding: 100px 0;
    background: #f2f2f2;
    /*background: url(../img/mapbg.jpg);*/
}

.poi-header .poi-icon{
    display: inline-block;
    width: 175px;
    height: 175px;
    overflow: hidden;
    padding-top: 35px;
    
    border-radius: 250px;
}

.poi-header .poi-icon img{
    height: 100px;
}

.poi-heading{
    margin: 50px 0;
    text-transform: uppercase;
}

.poi-heading span{
    display: block;
    font-size: 12px;
    margin: 5px 0;
    text-transform: none;
}

.pois-container{
    display: block;
}

.enrollmentRules{
    display: none;
}

.enrollmentRules.visible{
    display: block;
}

#article{
    background: #f2f2f2;
    padding-bottom: 50px;
}

#article .article-img{
    height: 350px;
    margin-bottom: 50px;
}

#article .article-img .icon-bg{
    position: relative;
    height: 100%;
}

#article .article-img .icon-bg img{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -50px;
}

#article .article-text-img img{
    width: 100%;
}

#langSelect{
    padding: 5px;
    border: 1px solid #f2f2f2;
    border-radius: 2px;
    margin: 16px 0;
}

.floor-plan-img{
    display: inline-block;
    width: 100%;
    border-radius: 3px;
    margin-bottom: 25px;
}

.holliday-item{
    
}

.holliday-item .hollidays-icon{
    overflow: hidden;
    text-align: center;
}

.holliday-item .hollidays-icon img{
    width: 100%;
    
    border-radius: 3px;
}

.holliday-item .content{
    padding: 15px;
    min-height: 90px;
}

.holliday-item .content .name{
    font-weight: bold;
}

.holliday-item .content .date{
    font-style: italic;
}

#taxisList{
    
}

#taxisList .taxi-item{
    margin-bottom: 25px;
    min-height: 120px;
}

#taxisList .taxi-item .descr{
    padding: 15px;
}

#taxisList .icon{
    display: inline-block;
    padding: 10px;
    text-align: center;
    background: #1F84AB;
    
    border-radius: 100px;
}

#taxisList .icon img{
    width: 75px;
}

#contactsList{
    
}

#contactsList .contacts-item{
    margin-bottom: 25px;
    min-height: 120px;
}

#contactsList .contacts-item .descr{
    padding: 25px 0;
}

#contactsList .icon{
    display: inline-block;
    padding: 10px;
    text-align: center;
    background: #EFC958;
    
    border-radius: 100px;
}

#contactsList .icon img{
    width: 75px;
}

.history-item{
    
}

.history-item i{
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 15px;
    vertical-align: middle;
    background-color: #a22035;
    
    border-radius: 16px;
    -ie-border-radius: 16px;
    -moz-border-radius: 16px;
    -webkit-border-radius: 16px;
}






/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}

/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}