/*   
Theme Name: crims_template
Version: 1.0
Description: 
Author: state-courses
*/

@import url(css/reset.css);
@import url(css/slick.css);
@import url(css/magnific-popup.css);

/* fonts
=====================*/

@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i&subset=cyrillic');

/* basic
=====================*/

*,
*:before,
*:after{
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

.animate,
.form-submit,
input,
button,
textarea,
select,
a,
.header-fixed,
.course-item:after{
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

* html .clearfix            {zoom: 1;}
*:first-child+html .clearfix{zoom: 1;}

body{
    background: #fff;
    font: 300 16px 'Roboto', Tahoma, sans-serif;
    color: #26313a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a      {color: inherit;text-decoration: none;cursor: pointer;}
a:hover{text-decoration: underline;}

.wrapper{
    width: 100%;
    max-width: 1200px;
    min-height: 0px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

body *.no-bg{background: none;}

.clear       {clear: both  ;}
.display-none{display: none;}
.float-l     {float: left  ;}
.float-r     {float: right ;}

.text-l  {text-align: left!important;}
.text-c{text-align: center!important;}
.text-r {text-align: right!important;}

h1,
h2,
h3,
h4,
h5,
h6{
    display: block;
    font-weight: bold;
    position: relative;
}

h1{font-size: 48px;}
h2{font-size: 40px;}
h3{font-size: 24px;}
h4{font-size: 24px;}
h5{font-size: 20px;}
h6{font-size: 18px;}

form{
    width: 100%;
    display: block;
}

input,
button,
select,
textarea{
    font-family: 'Roboto', Tahoma, sans-serif;
}

input,
button{
    margin: 0;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
}

.clearfix:before,
.clearfix:after,
.wrapper:before,
.wrapper:after,
.row:before,
.row:after{
    height: 0;
    content: '';
    clear: both;
    display: block;
    visibility: hidden;
}

::-webkit-input-placeholder {color: #333;}
::-moz-placeholder          {color: #333;}
:-moz-placeholder           {color: #333;}
:-ms-input-placeholder      {color: #333;}

.fa{
    background-image: url(images/sprite.png);
    background-position: 0 0;
    background-color: transparent;
    background-repeat: no-repeat;
    display: inline-block;
    font-size: 0;
    vertical-align: middle;
}

.no-ul,
.no-ul li{
    margin: 0;
    padding: 0;
}
.no-ul li{list-style-type: none;}

/* grid
=====================*/

.row{
    margin: 0 -15px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12{
    padding: 0 15px;
    float: left;
}

.col-12{width: 100%;}
.col-11{width: 91.66666667%;}
.col-10{width: 83.33333333%;}
.col-9 {width: 75%;}
.col-8 {width: 66.66666667%;}
.col-7 {width: 58.33333333%;}
.col-6 {width: 50%;}
.col-5 {width: 41.66666667%;}
.col-4 {width: 33.33333333%;}
.col-3 {width: 25%;}
.col-2 {width: 16.66666667%;}
.col-1 {width: 8.33333333%;}

/* header
=====================*/

.header,
.header-fixed{
    background: url(images/bg-header.jpg) center top no-repeat;
    background-size: cover;
    padding: 17px 0 20px 0;
    color: #fff;
    z-index: 2;
}

.header{
	position: relative;
}

.header-back,
.footer-back,
#particles{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.header-back:after,
.footer-back:after{
    background: url(images/bg-header__parallax.png) center top no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    animation-name: back_animate;
    animation-duration: 20s;
    animation-iteration-count: infinite;
}

.footer-back:after{background-image: url(images/bg-footer__parallax.png);}

@keyframes back_animate{
	0%,
	100%{
		transform: scale(1);
	}
	50%{
		transform: scale(1.2);
	}
}

.header .wrapper,
.header-fixed .wrapper,
.footer .wrapper{z-index: 1;}

.header-fixed{
    width: 100%;
    padding-bottom: 0;
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 1px 8px rgba(51,51,51,.3);
    visibility: hidden;
    z-index: 4;
}

.header-fixed.js-active{
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.header-fixed .nav-item:first-child .nav-link{
    border-bottom-left-radius: 0;
}

.header-fixed .nav-item:last-child .nav-link{
    border-bottom-right-radius: 0;
}

.col-nav{
    padding: 0 15px;
    display: none;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}

.nav-icon__mobile{
    background: url(images/icon-menu.png) center top no-repeat;
    width: 40px;
    height: 40px;
}

.logo{
    display: inline-block;
    color: #fff;
    vertical-align: top;
}

.logo:hover{
    text-decoration: none;
}

.logo > *{
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}

.logo-img{
    width: 75px;
    min-width: 75px;
    padding: 5px 0 0;
    font-size: 0;
}

.logo-img img{
    width: 100%;
    max-width: 100%;
    height: auto;
}

.logo-text{
    padding-left: 15px;
    font-weight: bold;
    font-size: 29px;
    line-height: 1.04;
	display:table-cell;
}
.logo-text span{
    text-align: center;
    display: block;
}
.logo-subtext{
	font-size:13px;
	display:block;
	margin:10px 0 0;
	font-weight:400;
}

.header-search{
    margin: 23px 0 0;
}

.search{
    position: relative;
}

.search-input{
    background: transparent;
    width: 100%;
    padding: 12px 60px 12px 18px;
    display: block;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    border: 2px solid rgba(255,255,255,.30);
    border-radius: 9px;
}

.search-input:hover,
.search-input:focus{border-color: #fff;}

.search-input::-webkit-input-placeholder {color: #fff;}
.search-input::-moz-placeholder          {color: #fff;}
.search-input:-moz-placeholder           {color: #fff;}
.search-input:-ms-input-placeholder      {color: #fff;}

.search-input:focus::-webkit-input-placeholder {color: transparent;}
.search-input:focus::-moz-placeholder          {color: transparent;}
.search-input:focus:-moz-placeholder           {color: transparent;}
.search-input:focus:-ms-input-placeholder      {color: transparent;}

.search-btn{
    background: url(images/sprite.png) 0 0 no-repeat;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    display: block;
    border: none;
    position: absolute;
    top: 50%;
    right: 21px;
    cursor: pointer;
	text-indent:-9999px;
}

.header-contacts{
    padding: 16px 0 0;
}

.contacts-block{
    font-size: 18px;
    text-align: right;
}

.contacts-block a:hover{
    -webkit-box-shadow: 0 1px 0 #fff;
            box-shadow: 0 1px 0 #fff;
    text-decoration: none;
}

.contacts-phone{
    margin: 0 0 1px;
    font-size: 22px;
}

.contacts-phone a{
    padding-left: 33px;
    display: inline-block;
    vertical-align: top;
    pointer-events: none;
    position: relative;
}

.contacts-phone a:before{
    background: url(images/sprite.png) 0 -24px no-repeat;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
}

.navigation{
    margin-top: 21px;
    -webkit-box-shadow: 0 1px 8px rgba(51,51,51,.2);
            box-shadow: 0 1px 8px rgba(51,51,51,.2);
}

.nav-list{
    width: 100%;
    margin: 0;
    padding: 0;
    display: table;
    list-style-type: none;
	/*display: flex;*/
}

.nav-item{
    display: table-cell;
    margin: 0;
    padding: 0;
    position: relative;
	/*min-height:51px;*/
}

.nav-item__drop .nav-link:after,
.nav-drop__drop-item > a:after{
    background: url(images/sprite.png) 0 -48px no-repeat;
    width: 10px;
    height: 10px;
    margin-left: 9px;
    content: '';
    display: inline-block;
    vertical-align: middle;
}

.nav-item__drop:hover .nav-link:after,
.nav-item__drop .nav-link:hover:after,
.nav-item__drop.active .nav-link:after,
.nav-item__drop.active .nav-link:after,
.nav-drop__drop-item > a:hover:after,
.nav-drop__drop-item:hover > a:after{background-position: 0 -58px;}

.nav-item__drop-last .nav-drop{
	width: 200px;
    /*right: 0;
    left: auto;*/
}

.nav-item__drop-last .nav-drop__2{
    right: 100%;
    left: auto;
}

.nav-item:first-child .nav-link{
    border-radius: 6px 0 0 6px;
}

.nav-item:last-child .nav-link{
    border-radius: 0 6px 6px 0;
}

.header-fixed .nav-link{
	padding-top: 8px;
	padding-bottom: 8px;
}
.nav-link{
    background: #fff;
    padding: 14px 15px;
    display: block;
    font-size: 15px;
    color: #333;
    text-align: center;
    position: relative;
    z-index: 2;
	/*padding: 0 21px;
	height: 100%;
	max-width: 340px;
	display: flex;
	align-items: center;*/
}

.nav-link:hover,
.nav-item:hover .nav-link,
.nav-item.active .nav-link{
    background: #008bd2;
    color: #fff;
    text-decoration: none;
}

.nav-item:hover .nav-drop:not(.nav-drop__2),
.nav-drop__item:hover .nav-drop{display: block;}

.nav-drop{
    background: #fff;
	width: 370px;
    margin: 0;
    padding: 0;
    display: none;
    list-style-type: none;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.3;
    color: #333;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 0 0 6px 6px;
    -webkit-box-shadow: 0 1px 2px rgba(51,51,51,.2), inset 0 1px 2px rgba(51,51,51,.2);
            box-shadow: 0 1px 2px rgba(51,51,51,.2), inset 0 1px 2px rgba(51,51,51,.2);
    z-index: 2;

}

.nav-drop__2{
    top: 0;
    left: 100%;
    -webkit-box-shadow: 0 1px 2px rgba(51,51,51,.2);
            box-shadow: 0 1px 2px rgba(51,51,51,.2);
    z-index: 1;
}

.nav-drop__item:last-child > .nav-drop__item-link{
    border-radius: 0 0 6px 6px;
}

.nav-drop__item{
    margin: 0;
    padding: 0;
    position: relative;
}

.nav-drop__item-link{
    padding: 10px 26px;
    display: block;
}

.nav-drop__item:hover > .nav-drop__item-link,
.nav-drop__item.active > .nav-drop__item-link,
.nav-drop__item-link:hover{
    background: #008bd2;
    color: #fff;
    text-decoration: none;
}

.main-block{
    margin: 30px 0 20px 0;
}

.slick-dots{
    margin: 0 12px;
    padding: 0;
    font-size: 0;
    text-align: center;
    list-style-type: none;
    position: absolute;
    bottom: 22px;
    right: 0;
    left: 0;
}

.slick-dots li{
    width: 14px;
    height: 14px;
    margin: 0 2px;
    padding: 0;
    display: inline-block;
    line-height: 14px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    vertical-align: top;
    position: relative;
}
.slick-dots li:before{display: none;}

.slick-dots li.slick-active button{background: #008bd2;}

.slick-dots li:not(.slick-active):hover button{background: #008bd2;}

.slick-dots li button{
    background: #fff;
    width: 10px;
    height: 10px;
    display: inline-block;
    font-size: 0;
    border-radius: 50%;
    vertical-align: middle;
}

.main-slider{
    box-shadow: 0 0 50px rgba(0,0,0,0.7);
	border-radius: 5px;
overflow: hidden;
}

.main-slider__item{
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 6px;
    vertical-align: top;
	overflow: hidden;
}

.main-slider__item img{
	width: 100%;
	height: auto;
}

.main-slider__item-inner{
    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;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
	position:absolute;
	bottom:0;
}

.main-slider__item-content{
    background: rgba(0,139,210,.9);
    width: 100%;
    max-width: 370px;
    padding: 25px 28px;
    color: #fff;
    border-radius: 0 6px 6px 0;
}
.main-slider__item-content + .main-slider__item-content {
    margin-top: 20px;
    margin-bottom: -40px;
}

.main-slider__item-title{
    margin-bottom: 12px;
    font-weight: 300;
    line-height: 1;
    position: relative;
}

.main-slider__item-title:after{
    background: #ec8b23;
    width: 4px;
    height: 84%;
    content: '';
    display: block;
    position: absolute;
    top: 8%;
    left: -28px;
}

.main-slider__item-title a:hover,
.news-item__link:hover{
    color: #e30613;
    text-decoration: none;
}

.main-slider__item-date{
    font-size: 14px;
}

.mfp-wrap{overflow: hidden;}

.main-form__wrap{
    background: #fff;
    padding: 33px 50px 24px 50px;
    border-radius: 6px;
}

.main-form__title{
    margin-bottom: 22px;
    font-weight: 300;
    color: #2f81b7;
}

.main-form{
    
}

.main-form__line{
    
}
.main-form__line + .main-form__line{margin-top: 15px;}

.form-input,
.form-select{
    width: 100%;
    padding: 13px 18px;
    display: block;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    border: 1px solid #97c0db;
    border-radius: 6px;
}

.form-input:hover,
.form-select:hover,
.form-input:focus,
.form-select:focus{border-color: #2f81b7;}

.form-select{
    background: url(images/icon-select.png) right 19px center no-repeat;
    padding-right: 46px;
    color: #333;
    text-indent: 0.01px;
    -o-text-overflow: '';
    text-overflow: '';
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    -ms-appearance: none !important;
    -o-appearance: none !important;
    appearance: none !important;
}
.form-select::-ms-expand{display: none;}

.btn{
    background: #ec8b23;
    padding: 19px 24px;
    display: inline-block;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    vertical-align: top;
}

.btn:hover{
    background: #d27100;
    text-decoration: none;
}

.btn-main{
    width: 100%;
    margin-top: 20px;
    display: block;
}

/* course-section
=====================*/

.course-section{
    /*padding: 51px 0 21px 0;*/
    padding: 30px 0 21px 0;
}

.section-title{
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
}

.course-list .text ul {
    margin: 5px 0;
	padding:0 0 0 14px;
	list-style-image: url(images/rect.png);
}

.course-list .text {
	/*height:100px;*/
}

.level .course-item::after, .level .benefits-item::after {
	top:49%;
}
.level .course-desc{
	margin: 0 0 30px
}
.level .main-form__title{
	text-align: center;
    /*font-size: 35px;*/
	display: flex;
	flex-direction: column-reverse;
}
.level .text + .main-form__title{
	margin: 30px 0 22px;
}

.course-item{
    background: #fff;
    margin: 0 0 30px;
    padding: 27px 18px 25px 29px;
    display: block;
    color: #26313a;
    border: 3px solid #b2dcf1;
    border-radius: 6px;
    position: relative;
}

.course-item:hover{
    background: #00a9eb;
    color: #fff;
    text-decoration: none;
    border-color: #0072bc;
}

.course-item:hover .course-item__price-month{color: #fff;}

.course-item:hover:after{
    background: #0072bc;
    border-color: #0072bc;
    box-shadow: 0 0 0 1px #0072bc;
}

.course-item:after,
.benefits-item:after{
    background: #068ed3;
    width: 18px;
    height: 18px;
    content: '';
    display: block;
    box-shadow: 0 0 0 1px #068ed3;
    border: 3px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 105px;
    left: -10px;
}

.course-item__header{
    margin-bottom: 18px;
    display: block;
    position: relative;
    z-index: 1;
}

.course-item__header-flag,
.course-item__header-name{
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}

.course-item__header-flag{
    width: 62px;
    min-width: 62px;
    font-size: 0;
}

.course-item__header-flag img{
    width: 100%;
    max-width: 100%;
    height: auto;
}

.course-item__header-name{
    padding-left: 19px;
    font-weight: bold;
    font-size: 24px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.course-item__price-month{
    margin-bottom: 3px;
    font-weight: 300;
    color: #2f81b7;
    letter-spacing: .3px;
    -webkit-transition: color .4s;
    -o-transition: color .4s;
    transition: color .4s;
    position: relative;
    z-index: 1;
}

.course-item__price-hour{
    display: block;
    font-size: 18px;
}

.course-item__distance{
    background: #f4f9ff;
}

.course-item__distance .course-item__header-name{
    padding-left: 0;
    font-weight: bold;
    font-size: 36px;
}

/* benefits-section
=====================*/

.benefits-section{
    padding: 20px 0 40px 0;
}

.benefits-list{
    
}

.benefits-item{
    margin-bottom: 40px;
    padding: 47px 29px 33px 29px;
    text-align: center;
    border: 2px solid #f9dcbd;
    border-radius: 6px;
    position: relative;
}

.benefits-item:after{
    background: #ec8b23;
    margin-left: -10px;
    box-shadow: 0 0 0 1px #ec8b23;
    top: auto;
    bottom: -10px;
    left: 50%;
}

.expo .benefits-item {
	color: #ec8b23;
	border-width: 3px;
}
.expo .benefits-item > * {
	color: #26313a;
}
.expo .benefits-item:after{
    margin-left: -10px;
    box-shadow: 0 0 0 1px;
    top: auto;
    bottom: -10px;
    left: 50%;
}

.benefits-item__icon{
    height: 49px;
    margin-bottom: 35px;
    font-size: 0;
    line-height: 49px;
}

.benefits-item__icon img{
    max-width: 100%;
    height: auto;
    max-height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.benefits-item__title{
    margin-bottom: 10px;
    font-weight: 300;
    line-height: 1;
}

.benefits-item__text{
    line-height: 1.5;
}

/* map-block
=====================*/

.map-block{
    position: relative;
    overflow: hidden;
}

#map{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.map-inner{
    padding: 60px 0 76px 0;
    pointer-events: none;
    position: relative;
    z-index: 2;
}

.map-inner .col-4{
    margin-left: 8.33333333%;
}

.map-content{
    background: rgba(255,255,255,.9);
    padding: 14px 30px 24px 30px;
    font-size: 18px;
    line-height: 1.333;
    border-radius: 6px;
    -webkit-box-shadow: 0 1px 8px rgba(47,129,183,.2);
            box-shadow: 0 1px 8px rgba(47,129,183,.2);
    pointer-events: auto;
}

.map-content__title{
    margin-bottom: 17px;
    padding-bottom: 12px;
    font-weight: bold;
    font-size: 18px;
    color: #26313a;
    border-bottom: 1px solid rgba(47,129,183,.3);
}

.map-content__contacts{
    margin-bottom: 21px;
}

.map-content__address-list{
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.map-content__address-item{
    margin: 0;
    padding: 0 0 0 24px;
    position: relative;
}
.map-content__address-item + .map-content__address-item{margin-top: 7px;}

.map-content__address-item:before{
    width: 10px;
    height: 10px;
    content: '';
    display: block;
    position: absolute;
    top: 6px;
    left: 0;
    border-radius: 50%;
}

.map-content__address-item---purple:before{
    background: #72107b;
}

.map-content__address-item---blue:before{
    background: #189aca;
}

/* footer
=====================*/

.footer{
    background: url(images/bg-footer.jpg) center top no-repeat;
    background-size: cover;
    padding: 37px 0 36px 0;
    color: #fff;
    position: relative;
}

.footer-nav{
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.footer-nav__course{
    -webkit-column-width: 200px;
            column-width: 200px;
    -webkit-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 30px;
            column-gap: 30px;
}

.footer-nav > li{
    margin: 0 0 11px;
    padding: 0;
}

.footer-nav a{
    
}

.footer-nav a:hover{
    text-decoration: none;
    -webkit-box-shadow: 0 1px 0 #fff;
            box-shadow: 0 1px 0 #fff;
}

.footer-nav__title{
    margin-bottom: 11px;
    font-weight: bold;
}

.footer-contacts{
    margin: -4px 0 25px 0;
}

.footer-contacts .contacts-phone a{padding-left: 0;}
.footer-contacts .contacts-phone a:before{display: none;}

.footer-call{
    margin: 0 0 30px;
    text-align: right;
}

.footer-call__link{
    background: transparent;
    min-width: 240px;
    padding: 8px 24px 9px 24px;
    display: inline-block;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 6px;
    cursor: pointer;
    vertical-align: top;
}

.footer-call__link:hover{
    background: #fff;
    color: #008bd2;
    text-decoration: none;
}

.footer-social{
    text-align: right;
    position: relative;
}

.social{
    margin: 0;
    padding: 0;
    font-size: 0;
    list-style-type: none;
}

.social-item{
    margin: 0;
    padding: 0;
    display: inline-block;
    vertical-align: top;
}

.social-item + .social-item{margin-left: 10px;}

.social-link{
    width: 40px;
    height: 40px;
    display: block;
    font-size: 0;
    line-height: 36px;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 6px;
}

.social-link:hover{
    background: #fff;
    text-decoration: none;
}

.social-link .fa{
    display: inline-block;
    vertical-align: middle;
}

.social-link:hover .fa-vk{background-position: -24px -84px;}
.social-link:hover .fa-inst{background-position: -24px -505px;}
.social-link:hover .fa-fc{background-position: -13px -99px;}

.fa-vk{
    background-position: 0 -84px;
    width: 24px;
    height: 15px;
}
.fa-inst{
    background-position: 0 -505px;
    width: 24px;
    height: 24px;
}
.fa-fc{
    background-position: 0 -99px;
    width: 13px;
    height: 24px;
}

.to-top{
    background: transparent;
    width: 40px;
    height: 40px;
    margin-left: 30px;
    display: block;
    font-size: 0;
    line-height: 40px;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 6px;
    position: absolute;
    top: 0;
    left: 100%;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    cursor: pointer;
}

.to-top:hover{background: #fff;}

.to-top:hover .fa-top{
    background-position: -13px -138px;
}

.fa-top{
    background-position: 0 -138px;
    width: 13px;
    height: 16px;
}

.footer-copyright{
    padding: 22px 0 0;
    text-align: center;
}

/* main
=====================*/

.main{
    background: #fff;
    padding: 27px 0 14px 0;
    color: #333;
}

.breadcrumbs{
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 17px;
    list-style-type: none;
}

.breadcrumbs li{
    margin: 0 0 8px;
    padding: 0;
    display: inline-block;
    font-weight: 300;
    font-size: 14px;
    vertical-align: top;
}

.breadcrumbs li:last-child:after{display: none;}

.breadcrumbs li:after{
    background: #333;
    width: 4px;
    height: 1px;
    margin: -2px 7px 0 6px;
    content: '';
    display: inline-block;
    vertical-align: middle;
}

.breadcrumbs a{
    text-decoration: underline;
}

.breadcrumbs a:hover{
    color: #e30613;
    text-decoration: none;
}

.breadcrumbs li:before{display: none;}

.course-block{
    margin-bottom: 60px;
}

.course-block__left{
    padding: 20px 0 0;
}

.course-block__left-header{
    margin-bottom: 21px;
}

.course-block__left-header > *{
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}

.course-block__left-flag{
    width: 62px;
    min-width: 62px;
    font-size: 0;
}

.course-block__left-flag img{
    width: 100%;
    max-width: 100%;
    height: auto;
}

.course-block__left-name{
    padding-left: 17px;
}

.course-block__left ul,
.course-info__right ul{
    margin: 0 0 34px;
    padding: 0;
    list-style-type: none;
    font-weight: bold;
    font-size: 24px;
}

.course-block__left ul li,
.course-info__right ul li{
    margin: 0;
    padding: 0 0 0 38px;
    position: relative;
}

.course-block__left ul li + li,
.course-info__right ul li + li{margin-top: 14px;}

.course-block__left ul li:before,
.course-info__right ul li:before{
    background: url(images/sprite.png) 0 -123px no-repeat;
    width: 20px;
    height: 15px;
    content: '';
    display: block;
    position: absolute;
    top: 8px;
    left: 0;
}

.btn-course__left{
    width: 100%;
    max-width: 370px;
    margin-bottom: 38px;
}

.course-block__left-desc{
    max-width: 492px;
    line-height: 1.5;
}

.course-block__left-desc__title{
    
}

.course-block__left-desc__text{
    
}

.course-block__right{
    padding: 31px 40px 42px 40px;
    font-size: 18px;
    line-height: 1.333;
    border-radius: 6px;
    -webkit-box-shadow: 0 1px 8px rgba(47,129,183,.2);
            box-shadow: 0 1px 8px rgba(47,129,183,.2);
}

.course-block__right a{
    color: #2f81b7;
    text-decoration: underline;
}

.course-block__right a:hover{
    text-decoration: none;
}

.course-block__right ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.course-block__right ul li{
    margin: 0;
    padding: 0;
}

.course-block__right ul h3{
    font-weight: 300;
    color: #2f81b7;
}

.course-block__right ul h4{
    margin-bottom: 1px;
}

.course-block__right ul li + li{margin-top: 17px;}

.link-file{
    color: #2f81b7;
}
.link-file:hover{text-decoration: none;}

.link-file__icon{
    background: #2f81b7;
    min-width: 40px;
    margin-right: 8px;
    padding: 0 6px;
    display: inline-block;
    font-weight: bold;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    border-radius: 6px;
    vertical-align: middle;
}

.link-file__text{
    text-decoration: underline;
}

.link-file:hover .link-file__text{
    text-decoration: none;
}

.course-numbers{
    margin-bottom: 48px;
    padding: 34px 0;
    font-size: 18px;
    border-radius: 6px;
    -webkit-box-shadow: 0 1px 8px rgba(47,129,183,.2);
            box-shadow: 0 1px 8px rgba(47,129,183,.2);
}

.course-numbers ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.course-numbers ul li{
    margin: 0;
    padding: 0;
}

.course-numbers ul li + li{margin-top: 7px;}

.course-numbers h4{
    margin-bottom: 12px;
}

.course-numbers__left{
    padding: 0 21px 0 45px;
}

.course-numbers__icon,
.course-numbers__left-content{
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}

.course-numbers__icon{
    width: 48px;
    min-width: 48px;
    font-size: 0;
}

.course-numbers__icon img{
    width: 100%;
}

.course-numbers__left-content{
    padding-left: 46px;
}

.course-numbers__right{
    padding: 0 40px;
    border-left: 1px solid #96bfdb;
}

.course-numbers__right-header{
    
}

.course-numbers__right-header h4{
    float: left;
}

.course-numbers__right-header a{
    margin-top: 8px;
    float: right;
}

.course-info{
    padding: 8px 0;
}

.course-info__title{
    margin-bottom: 25px;
}

.course-info__right{
    width: 40.2%;
    margin: 5px 0 20px 40px;
    padding: 35px 42px 35px 39px;
    float: right;
    border-radius: 6px;
    -webkit-box-shadow: 0 1px 8px rgba(47,129,183,.2);
            box-shadow: 0 1px 8px rgba(47,129,183,.2);
}

.course-info__right h4{
    margin-bottom: 20px;
}

.course-info__right ul{
    margin-bottom: 0;
    font-size: 18px;
}

.course-info__right ul span{font-weight: 300;}

.fs-16{font-size: 16px;}
.fs-18{font-size: 18px;}
.fs-24{font-size: 24px;}

.course-info__left{
    padding-right: 20px;
    line-height: 1.5;
}

.course-info__left p{margin-bottom: 24px;}

.course-recom__section{
    padding: 20px 0 48px 0;
}

/* modal
=====================*/

.mfp-zomm.mfp-bg{
    -webkit-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.mfp-zomm.mfp-wrap .mfp-content{
    -webkit-transform: translateX(20%);
        -ms-transform: translateX(20%);
            transform: translateX(20%);
    opacity: 0;
    -webkit-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
}

.mfp-zomm.mfp-wrap.mfp-ready .mfp-content{
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
}

.mfp-zomm.mfp-wrap.mfp-removing .mfp-content{
    -webkit-transform: translateX(20%);
        -ms-transform: translateX(20%);
            transform: translateX(20%);
    opacity: 0;
}

button.mfp-close{
    background: transparent;
    width: 22px;
    height: 22px;
    margin: 0 0 10px 10px;
    font-size: 0;
    line-height: 22px;
    text-align: center;
    border-radius: 0;
    position: absolute;
    top: 14px;
    right: 14px;
    opacity: 1;
    cursor: pointer;
}

button.mfp-close img{
    display: inline-block;
    pointer-events: none;
    vertical-align: middle;
}

.mfp-container{
    padding: 0!important;
}

.mfp-close:active{top: 14px;}

button.mfp-close:hover{
    background: rgba(10,10,10,.1);
}

.mfp-content{
    width: 100%;
    padding: 0;
}

.modal-block__wrapper{
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 65px 15px 15px 15px;
    position: relative;
}

.modal-block{
    background: #fff;
    padding: 40px 50px;
    color: #fff;
    border-radius: 6px;
    position: relative;
}

.modal-body{
    position: relative;
}

.modal-form__title{
    margin-bottom: 4px;
    font-weight: 300;
    font-size: 36px;
    color: #2f81b7;
}

.main-form__line{
    margin-top: 20px;
}

.modal-thank{
    color: #333;
    text-align: center;
}

.modal-thank__icon{
    margin-bottom: 10px;
    font-size: 0;
}

.modal-thank__title{
    margin-bottom: 8px;
    font-weight: 300;
    font-size: 36px;
    color: #2f81b7;
}

.modal-thank__text{
    margin-bottom: 24px;
    line-height: 1.5;
}



.contact-section .block_lists {
	column-count: 3;
}
.contact-section h5 {
	margin-bottom: 15px;
}
.contact-section .item {
	margin-bottom: 30px;
}
.contact-section .section-title {
	margin: 20px auto 60px;
}
.contact-section .desc {
	min-height: 150px;
}



.screen-reader-response, .wpcf7-response-output {
	color:#000;
}
.wpcf7-not-valid-tip {
	color:#f00;
	margin-top:7px;
}
input.wpcf7-not-valid {
	border-color:#f00;
}
.wpcf7-response-output.wpcf7-display-none {
	display:none !important;
}
.main-form__wrap {
	min-height: auto !important;
}

.notfound-section .wrapper {
	padding: 100px 0 140px;
}
.notfound-section h2, .notfound-section  div {
	text-align: center;
}
.notfound-section h5 {
	margin: 50px 0;
}


#submit_order {
    margin:0 auto;
}
.collapse-expand_block {
    overflow: hidden;
}
.collapse-expand_label {
    cursor: pointer;
    font-weight: bold;
}
.collapse-expand_label:hover {
    text-decoration: underline;
}
.collapse-expand_content {
    display: none;
}

#lg-download {
    display: none;
}

/* content
=====================*/

.content{
    
}

.page-title{
    margin-bottom: 34px;
    line-height: 1.2;
}

.main-info__list{
    position: relative;
}

.main-info__contacts:after{
    background: #8ac8ed;
    width: 1px;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 30px;
    left: 50%;
}

.main-info__list + .main-info__list{
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #7fc5e8;
}

.main-info__list-footer{
    
}

.main-info__item{
    margin-bottom: 30px;
}

.main-info__item-100 .main-info__item-text{
    /*-webkit-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 30px;
            column-gap: 30px;
    -webkit-column-width: 300px;
            column-width: 300px;*/
}

.main-info__item-icon{
    width: 70px;
    float: left;
}

.main-info__item-icon > span{
    background: #0f92d5;
    width: 70px;
    height: 70px;
    display: inline-block;
    font-size: 0;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    vertical-align: top;
}

.main-info__item-icon > span i.fa{
    display: inline-block;
    vertical-align: middle;
}

.fa-icon__date{
    background-position: 0 -154px;
    width: 36px;
    height: 36px;
}

.fa-icon__founder{
    background-position: 0 -190px;
    width: 32px;
    height: 36px;
}

.fa-icon__place{
    background-position: 0 -226px;
    width: 36px;
    height: 36px;
}

.fa-icon__time{
    background-position: 0 -262px;
    width: 36px;
    height: 36px;
}

.fa-icon__tell{
    background-position: 0 -298px;
    width: 36px;
    height: 36px;
}

.fa-icon__email{
    background-position: 0 -334px;
    width: 36px;
    height: 29px;
}

.fa-icon__boss{
    background-position: 0 -411px;
    width: 36px;
    height: 32px;
}

.main-info__item-content{
    padding-left: 30px;
    line-height: 1.33;
    overflow: hidden;
}

.main-info__item-text{
    padding-top: 7px;
}

.main-info__item-text > div{
	font-size: 24px;
}

.main-info__item-text .blockquote{
	font-size: 16px;
}

.main-info__item-text > * + *{
    margin-top: 14px;
}

/* 16.08.2018 */

.doc-list{
    padding-bottom: 60px;
}

.doc-item{
    padding: 14px 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-top: 1px solid #7fc5e8;
}

.doc-item:last-child{
    border-bottom: 1px solid #7fc5e8;
}

.doc-item:hover{
    background: #008bd2;
    color: #fff;
    border-radius: 8px;
}

.doc-item:hover .doc-item__type{
    background: #fff;
    color: #008bd2;
}

.doc-item:hover + .doc-item{
    border-top-color: transparent;
}

.doc-item__left{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.doc-item__type{
    background: #2f81b7;
    min-width: 40px;
    margin-right: 22px;
    padding: 0 6px;
    font-weight: 900;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    border-radius: 6px;
}

.doc-item__name{
    
}

.doc-item__right{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    align-items: center;
}

.doc-item:hover .doc-item__icon{background-position: 0 -387px;}
.doc-item:hover .doc-item__icon-view{background-position: 0 -481px;}

.doc-item__icon{
    background-position: 0 -363px;
    width: 24px;
    height: 24px;
    margin: 0 14px;
}

.doc-item__icon-view{
    background-position: 0 -456px;
    width: 25px;
    height: 25px;
    margin: 0 6px;
}

.doc-item:hover .doc-item__link{color: #fff;}

.doc-item__link{
    font-weight: 300;
    color: #008bd2;
    text-decoration: underline;
}

.doc-item__link:hover{
    text-decoration: none;
}

/* new 2 */

.news-list{
    
}

.news-item{
    margin-bottom: 30px;
    color: #333;
    position: relative;
	border: 1px solid #7fc5e8;
}

.news-item__img{
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 200px;
    height: 160px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0;
	margin: 20px 0 0 15px;
}

.news-item__content{
    padding: 30px;
	border-radius:10px;
    
}
a + .news-item__content {
    margin-left: 210px;
    border-left: none;
    border-radius: 0 10px 10px 0;
}

.news-item__title{
    margin-bottom: 18px;
    font-weight: 300;
    line-height: 1;
}

.news-item__link{
    color: #008bd2;
}

.news-item__date{
    margin-bottom: 8px;
    font-size: 14px;
}

.news-item__text{
    line-height: 1.5;
}

.pagination,
.page-numbers{
    margin: 0 0 30px;
    padding: 0;
    font-size: 0;
    font-size: 18px;
    color: #333;
    text-align: center;
    list-style-type: none;
}

.pagination-item,
.page-numbers > li{
    margin: 8px;
    margin-top: 0;
    padding: 0;
    display: inline-block;
    vertical-align: top;
}

.pagination-item .fa,
.page-numbers > li .fa{
    background-position: 0 -443px;
    width: 16px;
    height: 13px;
    display: inline-block;
    vertical-align: middle;
}
.pagination-link:hover .fa,
.page-numbers a:hover .fa {background-position: -16px -443px;}

.pagination-link,
.pagination-current,
.page-numbers a,
.page-numbers .current {
    min-width: 40px;
    display: block;
    line-height: 38px;
    border-radius: 5px;
    border: 1px solid #7fc5e8;
}

.pagination-link{}

.pagination-link:hover,
.page-numbers a:hover{
    background: #008bd2;
    color: #fff;
    text-decoration: none;
    border-color: #008bd2;
}

.pagination-current,
.page-numbers .current{
    background: #008bd2;
    font-weight: bold;
    color: #fff;
    border-color: #008bd2;
}

.pagination-next{
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

/* new 3 */

.body-404{
    background: url(../images/bg-404.jpg) center top no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.site-top{
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.header-404{
    background: none;
}

.content-error{
    padding: 100px 0 80px 0;
    color: #fff;
    text-align: center;
}

.content-error__wrap{
    width: 100%;
    max-width: 534px;
    margin: 0 auto;
}

.content-error__header{
    background: url(../images/icon-error.png) center top no-repeat;
    width: 100px;
    height: 98px;
    margin: 0 auto 24px auto;
    padding: 39px 0 0;
    font-weight: bold;
    text-align: center;
    overflow: hidden;
}

.content-error__header img{
    max-width: 48px;
    max-height: 48px;
    display: inline-block;
    vertical-align: top;
}

.content-error__code{
    font-size: 36px;
    line-height: .7;
}

.content-error__desc{
    font-size: 16px;
}

.content-error__title{
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 48px;
    line-height: 1;
}

.content-error__text{
    width: 100%;
    max-width: 520px;
    margin: 0 auto 24px auto;
    font-size: 18px;
    line-height: 1.333;
}

.content-error__btn{
    
}

.content-error__btn a{
    width: 100%;
    max-width: 370px;
    padding-top: 16px;
    padding-bottom: 17px;
    font-weight: 900;
    font-size: 18px;
}

.footer-404{
    background: rgba(10,33,81,.1);
}

.filling{
    padding: 5%;
    line-height: 1.5;
    color: #333;
}

.filling h1{margin-bottom: 32px;}

.filling h2,
.filling h3,
.filling h4,
.filling h5,
.filling h6{
    margin-bottom: 24px;
    line-height: 1.2;
}

.filling p{margin-bottom: 20px;}

.filling blockquote{
    margin-bottom: 24px;
    padding: 24px 54px 24px 124px;
    font-size: 24px;
    line-height: 1.2;
    border: 3px solid #b2dcf1;
    border-radius: 10px;
    position: relative;
}

.filling blockquote:before{
    background: url(../images/icon-blockquote.png) 0 0 no-repeat;
    width: 48px;
    height: 48px;
    content: '';
    display: block;
    position: absolute;
    top: 27px;
    left: 38px;
}

.filling ul,
.filling ol{
    margin: 0 0 18px;
    padding: 0;
    list-style-type: none;
}

.filling ul li,
.filling ol li{
    margin: 0;
    padding: 0 0 0 24px;
    position: relative;
}

.filling ul li:before{
    background: #ec8b23;
    width: 10px;
    height: 10px;
    content: '';
    display: block;
    box-shadow: 0 0 0 1px #ec8b23;
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 0;
}

.filling ul li + li,
.filling ol li + li{margin-top: 16px;}

.filling ol{
    counter-reset: counter__ol;
}

.filling ol li:before{
    counter-increment: counter__ol;
    content: counters(counter__ol, '.')'. ';
    font-weight: bold;
    font-size: 16px;
    color: #ec8b23;
    position: absolute;
    top: 0;
    left: 0;
}

.filling-img{
    margin-bottom: 30px;
    display: inline-block;
    vertical-align: top;
}

.filling-img img{
    max-width: 100%;
    height: auto;
    display: inline-block;
    border-radius: 8px 8px 0 0;
    vertical-align: top;
}

.filling-img figcaption{
    background: #eee;
    padding: 10px 30px 11px 30px;
    font-size: 14px;
    color: #333;
    border-radius: 0 0 8px 8px;
}

.filling-img__left,
.filling-blue__left{
    margin-right: 30px;
    float: left;
}

.filling-img__right,
.filling-blue__right{
    margin-left: 30px;
    float: right;
}

.filling-blue__left,
.filling-blue__right{
    max-width: 370px;
}

.filling-blue{
    background: #008bd2;
    margin-bottom: 18px;
    padding: 24px 28px;
    display: inline-block;
    line-height: 1.6;
    color: #fff;
    border-radius: 9px;
    vertical-align: top;
}

.filling-col__2{
    column-count: 2;
    column-gap: 30px;
}

.filling table{
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.filling table th{
    background: #eee;
    padding: 12px 10px;
    font-weight: bold;
    font-size: 18px;
    text-align: left;
}

.filling table th:first-child{
    border-radius: 10px 0 0 10px;
}

.filling table th:last-child{
    border-radius: 0 10px 10px 0;
}

.filling table td{
    padding: 16px 10px;
    font-weight: bold;
    font-size: 18px;
    text-align: left;
    border-bottom: 1px solid #7fc5e8;
    vertical-align: middle;
}

.filling table td:first-child,
.filling table th:first-child{
    padding-left: 30px;
}

.filling table td:last-child,
.filling table th:last-child{
    padding-right: 30px;
}

.filling table tbody tr:hover{
    background: #008bd2;
    color: #fff;
}

.filling table tbody tr:hover .doc-item__type{
    background: #fff;
    color: #008bd2;
}

.filling table tbody tr:hover .doc-item__icon{
    background-position: 0 -387px;
}

.filling table tbody tr:hover .doc-item__link{
    color: #fff;
}

.filling.filling2 table {
	border-top: 1px solid #7fc5e8;
	border-left: 1px solid #7fc5e8;
}
.filling.filling2 table td {
	font: 300 16px 'Roboto', Tahoma, sans-serif;
    line-height: normal;
	color: #333;
	border-spacing: 0;
	font-weight:normal;
	border-right: 1px solid #7fc5e8;
	border-bottom: 1px solid #7fc5e8;
}
.filling.filling2 ul li::before {
	background: unset;
	width: unset;
	height: unset;
	content: unset;
	display: unset;
	box-shadow: unset;
	border: unset;
	border-radius: unset;
	position: unset;
	top: unset;
	left: unset;
}
.filling.filling2 ul {
	list-style-type: unset;
}
.filling.filling2 li {
	padding-left:0;
	margin-left: 5%;
}
.filling.filling2 table tbody tr:hover td {
	color: #fff;
}


.course-block__right table a:link {
	color: #666;
	font-weight: bold;
	text-decoration:none;
}
.course-block__right table a:visited {
	color: #999999;
	font-weight:bold;
	text-decoration:none;
}
.course-block__right table a:active,
.course-block__right table a:hover {
	color: #bd5a35;
	text-decoration:underline;
}
.course-block__right table, .prepare > table {
	color:#666;
	font-size:14px;
	text-shadow: 1px 1px 0px #fff;
	background:#eaebec;
	border:#ccc 1px solid;
	margin:20px 0 0;

	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;

	-moz-box-shadow: 0 1px 2px #d1d1d1;
	-webkit-box-shadow: 0 1px 2px #d1d1d1;
	box-shadow: 0 1px 2px #d1d1d1;
	border-spacing: 0;
}
.course-block__right table th, .prepare > table th {
	padding:21px 25px 22px 25px;
	border-top:1px solid #fafafa;
	border-bottom:1px solid #e0e0e0;

	background: #ededed;
	background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#ebebeb));
	background: -moz-linear-gradient(top,  #ededed,  #ebebeb);
}
.course-block__right table th:first-child, .prepare > table th:first-child {
	text-align: left;
	padding-left:20px;
}
.course-block__right table tr:first-child th:first-child, .prepare > table tr:first-child th:first-child {
	-moz-border-radius-topleft:3px;
	-webkit-border-top-left-radius:3px;
	border-top-left-radius:3px;
}
.course-block__right table tr:first-child th:last-child, .prepare > table tr:first-child th:last-child {
	-moz-border-radius-topright:3px;
	-webkit-border-top-right-radius:3px;
	border-top-right-radius:3px;
}
.course-block__right table tr {
	text-align: center;
	padding-left:20px;
}
.prepare > table tr {
	padding-left:20px;
}
.course-block__right table td:first-child, .prepare > table td:first-child {
	text-align: left;
	padding-left:20px;
	border-left: 0;
}
.course-block__right table td, .prepare > table td {
	padding:18px;
	border-top: 1px solid #ffffff;
	border-bottom:1px solid #e0e0e0;
	border-left: 1px solid #e0e0e0;

	background: #fafafa;
	background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#fafafa));
	background: -moz-linear-gradient(top,  #fbfbfb,  #fafafa);
}
.course-block__right table tr.even td, .prepare > table tr.even td {
	background: #f6f6f6;
	background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f6f6f6));
	background: -moz-linear-gradient(top,  #f8f8f8,  #f6f6f6);
}
.course-block__right table tr:last-child td, .prepare > table tr:last-child td {
	border-bottom:0;
}
.course-block__right table tr:last-child td:first-child, .prepare > table tr:last-child td:first-child {
	-moz-border-radius-bottomleft:3px;
	-webkit-border-bottom-left-radius:3px;
	border-bottom-left-radius:3px;
}
.course-block__right table tr:last-child td:last-child, .prepare > table tr:last-child td:last-child {
	-moz-border-radius-bottomright:3px;
	-webkit-border-bottom-right-radius:3px;
	border-bottom-right-radius:3px;
}
.course-block__right table tr:hover td, .prepare > table tr:hover td {
	background: #f2f2f2;
	background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#f0f0f0));
	background: -moz-linear-gradient(top,  #f2f2f2,  #f0f0f0);	
}
.course-block__right table [rowspan="4"] {
	vertical-align:middle;
}
.course-block__right table th:first-child, .course-block__right table td:first-child, .prepare > table th:first-child, .prepare > table td:first-child {
	text-align:center;
}


.alignleft {
	float:left;
	margin:0 15px 5px 0;
}
.page-meta {
	margin-bottom:20px;
}

.alignright {
	float:right;
	margin: 0 0 5px 15px;
}
h1.page-title {
	font-size: 30px;
}
.aligncenter {
	display:block;
	margin:0 auto;
}

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: .8;
    filter: alpha(opacity=80);
}

article > h1 {
	font-size:36px;
}
.bvi-link:hover {
	-webkit-box-shadow: unset !important;
	box-shadow: unset !important;
}

.container {
    width: 70%;
	box-sizing: border-box;
	padding: 5% 5% 5% 5%;
    margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-bottom: 1px solid #8c8c8c;
    outline: none;
    text-align: center;
}

.container-title {
    margin: 0 auto;
	max-width: 100%;
	font-family: 'Roboto', Tahoma, sans-serif;
	font-size: 30px;
	color: #26313a;
}

.expo-block {
    display: flex;
	box-sizing: border-box;
	margin: 32px auto 0;
	justify-content: space-between;
	flex-wrap: wrap;
    box-sizing: border-box;
}

.expo-block-item {
    display: flex;
	flex-direction: column;
    margin: 3%;
	max-width: 300px;
    min-height: 300px;
	text-decoration: none;
	position: relative;
    border: 2px solid #f9dcbd;
    border-radius: 10px;
    text-align: center;
    box-sizing: border-box;
}

.expo-block-item-desc {
    padding: 0 10px 0 20px;
}

.expo-block-item:hover {
filter: brightness(120%);
}

.expo-block-img {
    min-width: 75px;
    min-height: 75px;
    padding: 10px 0 0 0;
    position: relative;
    margin: 0 auto;
    box-sizing: border-box;
}

.expo-block-item-circle {
    border: 1px solid #ff8a24;;
    height: 20px;
    width:  20px;
    border-radius: 50%;
    position: absolute;
    margin: 97% 0 0 47% ;
    
}

.expo-block-item-circle-2 {
    border: 1px solid #ff8a24;;
    height: 10px;
    width:  10px;
    border-radius: 50%;
    margin: 20% 0 0 20%;
    background-color: #ff8a24;
}


@media (min-width: 760px) and (max-width: 1200px)  {
    .expo-block-item {
        margin: 0 auto;
         margin-top: 20px;
    }
    .expo-block-item-2 {
        margin: 0 auto;
        margin-top: 20px;
    }
    .expo-block-item-3 {
        margin: 0 auto;
        margin-top: 20px;
    }
    }

@media (min-width: 100px) and (max-width: 760px)  {
	.container {
		flex-direction: column;
		margin: 2px auto;
		width: 100%;
		box-sizing: content-box;
		min-width: 320px;
		max-width: 778px;
		box-sizing: border-box;
    }
    
    .expo-block-item {
        margin: 0 auto;
        margin-top: 20px;
    }
    
    .expo-block-item-2 {
        margin: 0 auto;
        margin-top: 20px;
    }
    .expo-block-item-3 {
        margin: 0 auto;
        margin-top: 20px;
    }
}

.expo-block-item-2 {
      display: flex;
	flex-direction: column;
    margin: 3%;
	max-width: 300px;
    min-height: 300px;
	text-decoration: none;
	position: relative;
    border: 2px solid #b2dcf1;
    border-radius: 10px;
    text-align: center;
    box-sizing: border-box;
}

.expo-block-item-2:hover {
filter: brightness(120%);
}

.expo-block-item-circle-aqua {
    border: 1px solid #068ed3;
    height: 20px;
    width:  20px;
    border-radius: 50%;
    position: absolute;
    margin: 97% 0 0 47%;
    
}


.expo-block-item-3 {
    display: flex;
	flex-direction: column;
    margin: 3%;
	max-width: 300px;
    min-height: 300px;
	text-decoration: none;
	position: relative;
    border: 2px solid #068ed3;
    border-radius: 10px;
    text-align: center;
    box-sizing: border-box;
}

.expo-block-item-3:hover {
filter: brightness(120%);
}