


/* Home Banner */
.home-banner{
    position: relative;
    width: 100%;
    height: calc(100vh - 385px);
}
.home-banner .banner-bg{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;    
}
.home-banner .banner-bg img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

.banner-content{
    position: relative;
    width: 100%;
    height: calc(100vh - 185px);
}
.banner-content__left{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    height: 100%;
}
.banner-left__info{
    margin-top: 60px;
}
.banner-left__info h2{
    font-size: 46px;
    /*font-family: 'Montserrat-SemiBold', sans-serif;*/
	font-family: "Roboto",Arial,sans-serif;
    color: #ffffff;
    margin-bottom: 60px;
	line-height: 50px;
}
/*.banner-left__info a{
    display: inline-block;
    height: 38px;
    background-color: #1f3c88;
    color: #ffffff;
    text-transform: uppercase;
    border-radius: 20px;
    font-size: 14px;
    padding: 10px 20px;
    margin-right: 15px;
}*/
.banner-scroll__down{
    
}
.banner-scroll__down a{
    font-size: 15px;
    color: #ffffff;
}
.banner-scroll__down a img{
    width: 18px;
    margin-right: 10px;
}
  
.banner-content__right{
    height: calc(100vh - 185px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.banner-right__col{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    /*uzg border-left: 1px solid rgba(255, 255, 255, 0.2);*/
    padding: 60px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.banner-right__col:nth-child(2){
    /*uzg border-right: 1px solid rgba(255, 255, 255, 0.2);*/
}
.banner-right__item{
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-height: 30%;
	/*
	-ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-height: 33.333333%;
	*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 15px 0 30px;
}  
.banner-right__item::before{
    content: '';
    border-radius: 50%;
    background-color: #ffffff;
    position: absolute;
    left: -5px;
    width: 10px;
    height: 10px;
    bottom: calc(50% + 25px);
    -webkit-transform: translateY(50%);
        -ms-transform: translateY(50%);
            transform: translateY(50%);
}
.banner-right__item a{
    height: 70px;
}  
.banner-right__item a:hover .banner-right__item--title{
    color: #a0b8f8;
}
.banner-right__item--count{
    font-family: 'Montserrat-Bold', sans-serif;
    font-size: 30px;
    color: #1f3c88;
    display: block;
    margin-bottom: 5px;
}
.banner-right__item--title{
    font-family: 'Montserrat-Medium', sans-serif;
    font-size: 16px;
    line-height: 21px;
    display: block;
    color: #ffffff;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.home-slider{
    position: relative;
    width: 100%;
    height: calc(100vh - 185px);
    background-size: cover;
    background-position: center;
}
.home-slider video{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.home-slider::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background: rgba(31, 60, 136, 0.3);
}
.mobile-phones{
    display: none;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.home-slider video{
top: 0;
left: 0;
z-index: 1;
min-height: 100%;
min-width: 100%;
height: auto;
width: 100%;
object-fit: cover;
}
.home-slider::before{
display: inline-block;
}
}
