html, body{
	font-family: 'Open Sans', sans-serif;
	font-size:13pt;
	font-weight: 300;
	overflow-x:hidden;
}

/* NEW YEAR BRANCHES */
/* 
body::before {
    content: "";
    display: block;
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 500px;
    background: url('../images/new-year-fixed-top-4.2.png') no-repeat top center / cover;
}
*/

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.loader{
	display: none;
}

.language-trigger img{
	margin-top: 2px;
}

.app-modal{
    display: none;
    position: fixed;
    left: 0; bottom: 0;
    width: calc(100% - 20px);
    margin: 10px;
    z-index: 999;
}

.app-modal .app-modal-message{
    margin-bottom: 10px;
}

.error404{
	width:600px;
	margin:200px auto;
}

.error404 img{
	float:left;
	margin-right:30px;
}

.error404 h1{
	font-size:24pt;
	font-weight:600;
}

.gray{
	color:gray;
}

.black{
	color:black;
}

.white{
	color: #fff;
}

.text-shadow{
	text-shadow: 1px 1px 7px gray;
}

.img-fluid{
	width:100%;
	height:auto;
}

.width-25{
	width:25px;
	height:auto;
}

.width-50{
	width:50px;
	height:auto;
}

.width-75{
	width:75px;
	height:auto;
}

.width-100{
	width:100px;
	height:auto;
}

.width-125{
	width:125px;
	height:auto;
}

.width-150{
	width:150px;
	height:auto;
}

.width-180{
	width:180px;
	height:auto;
}

.width-200{
	width:200px;
	height:auto;
}

.img-left{
	float:left;
	margin-right:20px;
	margin-bottom:10px;
}

.img-right{
	float:right;
	margin-left:20px;
	margin-bottom:10px;
}

.img-border{
	border:2px solid #fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0px 0px 5px gray;
	-moz-box-shadow: 0px 0px 5px gray;
	box-shadow: 0px 0px 5px gray;
}

.img-border-light{
	border:1px solid #eee;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

a .img-border-light:hover{	
	border-color:#3484c7;
}

.img-gallery{
	border:12px solid #fff;
	-webkit-box-shadow: 0px 0px 5px lightgray;
	-moz-box-shadow: 0px 0px 5px lightgray;
	box-shadow: 0px 0px 5px lightgray;
	display:block;
	position:relative;
}

.img-gallery::after{
	content:" ";
	position:absolute;
	top:-5%;left:-5%;
	display:block;
	width:110%;
	height:110%;
	background-color:#fff;
	opacity:1;
	z-index:-1;
	-webkit-box-shadow: 0px 0px 5px lightgray;
	-moz-box-shadow: 0px 0px 5px lightgray;
	box-shadow: 0px 0px 5px lightgray;
	-webkit-transform: rotate(7deg);
	-moz-transform: rotate(7deg);
	-ms-transform: rotate(7deg);
	-o-transform: rotate(7deg);
	transform: rotate(7deg);
}

.img-photo{
	border:12px solid #fff;
	-webkit-box-shadow: 0px 0px 5px lightgray;
	-moz-box-shadow: 0px 0px 5px lightgray;
	box-shadow: 0px 0px 5px lightgray;
	display:block;
}

.a-play, .a-zoom, .a-arrow{
	display:block;
	position:relative;
}

.a-play::after, .a-zoom::after, .a-arrow::after{
	content: " ";
	display:block;
	position:absolute;
	top:0;left:0;
	width:100%;
	height:100%;	
	opacity:0;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.a-play::after{
	background:#000 url('../images/play.png') no-repeat top center;
}

.a-zoom::after{
	background:#000 url('../images/zoom.png') no-repeat top center;
}

.a-arrow::after{
	background:#000 url('../images/arrow.png') no-repeat top center;
}

.a-play:hover::after, .a-zoom:hover::after, .a-arrow:hover::after{
	opacity:0.5;
}

.a-play:hover::after{
	background:#000 url('../images/play.png') no-repeat center center;
}

.a-zoom:hover::after{
	background:#000 url('../images/zoom.png') no-repeat center center;
}

.a-arrow:hover::after{
	background:#000 url('../images/arrow.png') no-repeat center center;
}

ol.skobki{
	list-style-type: none;
	counter-reset: item;
	padding-left:25px;
}

ol.skobki li::before{
	content: counter(item) ') ';
	counter-increment: item;
}

.bold{
	font-weight:600;
}

.light-bold{
	font-weight:400;
}

.blue{
	color:#00619e;
}

.red{
	color:#ff0036;
}

h1{
	text-transform:uppercase;
	color:#fff;
	font-family: 'Istok Web', sans-serif;
	font-size:13pt;
	font-weight:300;
	margin:0;
	margin-top:2px;
}

h2, h3{
	text-transform:uppercase;
	font-size:24pt;
	font-weight:400;
	padding-bottom:13px;
	color:#00619e;
	background: url('../images/red-line.jpg') no-repeat left bottom;
}

h2.h2-in{
	font-size:18pt;
}

h3{
	font-size:18pt;
	padding-bottom:0px;
	text-transform:none;
	background:none;
}

h3.title{
	padding-bottom:15px;
	margin-bottom:25px;
	border-bottom:1px solid lightgray;
	position:relative;
}

h3.title a.more{
	font-size:12pt;
	color:gray;
	position:absolute;
	right:0;
	bottom:15px;
	color: #fe0036;
}

h3.title .fa{
	margin-right:7px;
}

h3.light{
	text-transform:uppercase;
	font-weight:300;
}

h2 > a, h3 > a, h4 > a {
	text-decoration:none;
}

h2 > a:hover, h3 > a:hover, h4 > a:hover{
	text-decoration:underline;
}

a{
	text-decoration:underline;
}

a:hover{
	text-decoration:none;
}

a.btn{
	text-decoration:none;
}

a.btn .fa{
	padding-right:5px;	
}

b{
	font-weight:600;
}

.breadcrumb{
	background-color:transparent;
	border-bottom:2px solid #ebebeb;
	max-width: 1140px;
    white-space: nowrap;
   	overflow: hidden;
    text-overflow: ellipsis;
	padding-left:0px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.breadcrumb > li.active{
	 display: inline;
}

.fa-angle-right{
	margin-right:4px;
}

.fa-caret-right{
	margin-right:6px;
}

.preparation{
	margin-bottom:30px;
}

.list-item{
	padding-bottom:30px;
	margin-bottom:30px;
	border-bottom:1px solid #ebebeb;
}

#materials .list-item:last-child{
	padding-bottom:0px;
	margin-bottom:0px;
	border:none;
}


.events-main-item{
	margin-bottom: 15px;
}

.events-main-item img{
	margin-bottom: 10px;
}

.events-main-item p{
	font-size: 1em;
}

.vebinar-main-item{
	margin-bottom: 25px;
}

.vebinar-main-item h4{
	margin-top: 0px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.vebinar-main-item p{
	font-size: 0.8em;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}

.video-list-main-item{
	margin-bottom: 40px;
}

.video-list-main-item h4{
	margin-top: 0px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.video-list-main-item p{
	font-size: 0.8em;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}

.blog-media-list{
	padding-bottom:30px;
	margin-bottom:30px;
	border-bottom:1px solid #ebebeb;
}

.blog-media-list h4{
	text-transform: uppercase;
	font-size: 1.2em;
	font-weight: 600;
	margin-bottom: 10px;
}

.blog-media-list a{
	text-decoration: none;
}

.blog-last-pub h4 > a{
	text-transform: uppercase;
	font-size: 1.4em;
	font-weight: 700;
}

.blog-last-pub .btn{
	margin-right: 10px;
}

.btn-blog{
	background-color: #e82e89;
	border: 1px solid #e8529b;
}

.btn-blog:hover, .btn-blog:focus {
	background-color: #e8529b;
	border: 1px solid #e8529b;
}

.table{
	margin-top: 30px;
	margin-bottom: 30px;
}

.table caption{
	text-align: center;
}

.table th{
	text-align: center;
	font-weight: 600;
	background-color: #f9f9f9;
}

.margin-bottom{
	margin-bottom:30px;
}

.magin-soft{
	margin-top:15px;
	margin-bottom:15px;
}

/* BLOG */
.section-simple{
	padding-top: 70px;
	padding-bottom: 70px;
}

.bordered-section{
	border: 8px solid #dfe2eb;
	margin-top: 80px;
	margin-bottom: 35px;
	position: relative;
}

h2.blog-h2{
	display: inline-block;
	position: absolute;
	top: -45px;
	left: 30px;
	text-align:left;
	text-transform: uppercase;
	font-size: 2em;
	font-weight: 700;
	margin-top: 0px;
	padding: 20px 20px;
	background-image: none;
	background-color: #fff;
}

.blog-h3{
	text-transform: uppercase;
	font-size: 2em;
	font-weight: 700;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 55px;
}

.blog-2em{
	font-size: 1.2em;
}

.color-pink{
	color: #e82e89;
}

.blog-icon-pack{
	list-style-type: none;
	padding-left: 0;
	margin-top: 40px;
	margin-bottom: 25px;
}

.blog-icon-pack .blog-icon {
	text-align: left;
	padding: 15px;
	margin-bottom: 15px;
}

.blog-icon-pack .blog-icon h4 {
	color: #000;
	font-weight: 700;
	font-size: 1.1em;
	text-transform: uppercase;
	margin-bottom: 0px;
}

.blog-icon-pack .blog-icon p {
	color: gray;
}

.blog-section-bg{
	background: url('../images/blog-section-bg.jpg') no-repeat 0 center;
	background-size: cover;
}

 .blog-section-gray{
	 background-color: #eee;
 }
 
 #blog-subscribe-form .form-control{
	 border: 1px solid #e40886;
 }

/* icon-block */

.icon-block{
	margin-top:60px;
}

.icon-block .icon:nth-child(1){
	-webkit-animation-delay: 0s;
	-moz-animation-delay: 0s;
	-o-animation-delay: 0s;
	animation-delay: 0s;
}

.icon-block .icon:nth-child(2){
	-webkit-animation-delay: 0.2s;
	-moz-animation-delay: 0.2s;
	-o-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

.icon-block .icon:nth-child(3){
	-webkit-animation-delay: 0.4s;
	-moz-animation-delay: 0.4s;
	-o-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

.icon-block .icon:nth-child(4){
	-webkit-animation-delay: 0.6s;
	-moz-animation-delay: 0.6s;
	-o-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

.icon-block .icon:nth-child(5){
	-webkit-animation-delay: 0.8s;
	-moz-animation-delay: 0.8s;
	-o-animation-delay: 0.8s;
	animation-delay: 0.8s;
}

.icon-block .icon:nth-child(6){
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
}

.icon-block small{
	display:block;
	text-align:center;
}

/* sxema */
.sxema{
	margin-top:30px;
	margin-bottom:60px;
}

.sxema .img-list{
	position:relative;
	margin-bottom:30px;
}

.sxema .img-list img{
	position:absolute;
	top:0;left:0;
	width:100%;
	height:auto;
	opacity:0.1;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.sxema .img-list img:nth-child(2){
	opacity:1;
}

.sxema .img-list img.bg{
	position:relative;
	width:100%;
	height:auto;
	opacity:1;
}

.controls div{
	text-align:center;
}

.controls .btn{
	margin-bottom:15px;
}

.controls .btn.active.focus, .controls .btn.active:focus, .controls .btn.focus, .controls .btn.focus:active, .controls .btn:active:focus, .controls .btn:focus{
	outline:none;
}

.controls .bnt-color-1.active{
	background-color:#ff5931;
	color:white;
	font-weight:bold;
}

.controls .bnt-color-2.active{
	background-color:#a8d956;
	color:white;
	font-weight:bold;
	border:transparent;	
}

.controls .bnt-color-3.active{
	background-color:#fddd42;
	color:white;
	font-weight:bold;
	border:transparent;	
}


/* top-banner */
.top-banner{
	width:100%;
	height:300px;
	overflow:hidden;
	text-align:center;
}

.top-banner img{
	margin:0 auto;
}

/* content */
.content .container{
	margin-top:20px;
	margin-bottom:30px;
}

.content ul > li, .content ol > li{
	color:#ff0036;
	margin-bottom:7px;
}

.content ul > li > span, .content ol > li > span, .content li p > span{
	color:#333;
}

.content blockquote footer{
	font-size:12pt;
}

.content .media > .media-left{
	padding-right:17px;
}

.content .media, .media-body{
	overflow:visible;
}

/* right-menu */
.right-menu ul{
	padding-left:20px;
}

.right-menu ul ul{
	padding-left:20px;
	list-style-type:circle;
}

.right-menu ul > li > span{
	cursor:pointer;
	text-decoration:underline;
}

.right-menu ul > li > span:hover{
	text-decoration:none;
}

.right-menu ul > li > i{
	color:#000;
}

.right-menu .archive a, .right-menu .archive i{
	font-size:11pt;
}

/* carousel */
#my-slider-1 {
    z-index: -1;
}

.carousel{
	margin-bottom: 70px;
	background-color:#8da4cd;
}

.carousel-caption{
	font-size:16pt;
	color:#03619f;
	text-shadow:none;
	text-align:left;
	padding-bottom:0;
	left:0;right:0;bottom:4%; 
	
}
.carousel-caption .container{
	padding-left:30px;
	padding-right:30px;
}

/*
.carousel-fade .carousel-inner .item {
	opacity: 0;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
	opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
	left: 0;
	opacity: 0;
	z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
	opacity: 1;
}
*/

.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
  z-index: 2;
}

@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
}

/* navbar */
.navbar{
	position:absolute;
	width:100%;
	top:150px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	-webkit-box-shadow: 0px 0px 6px rgba(90,152,255,0.2);
	-moz-box-shadow: 0px 0px 6px rgba(90,152,255,0.2);
	box-shadow: 0px 0px 6px rgba(90,152,255,0.2);
	z-index:1030;
}

.navbar-default{
	border:none;
	border-top:2px solid rgba(255,255,255,0.4);
	border-bottom:2px solid rgba(255,255,255,0.4);
	/* background-color:rgba(255,255,255,0.2); */
	background-color:rgba(75,147,213,0.6);
}

.navbar-default .navbar-nav > li > a{
	color:#fff;
	font-family: 'Istok Web', sans-serif;
	font-size: 13pt;
	font-weight:400;
	text-transform:uppercase;
	text-decoration:none;
	padding:20px;
	padding-left:15px;
	padding-right:15px;
	background-image:url('../images/red-line.jpg');
	background-repeat:no-repeat;
	background-position:20px 70px;
	outline: none;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > li > a:hover{
	color:#fff;
	background-position:20px 47px;
	background-color:transparent;
}

.navbar-nav .open .dropdown-menu{
	background-color:#fafafa;
}

.navbar-default .navbar-nav .open a:hover, .navbar-default .navbar-nav .open a:focus, .navbar-default .navbar-nav .active a:hover{
	background-color:#FFF;
}

.navbar-default .navbar-nav.navbar-right > li > a {
	background: transparent;
	padding-top: 17px;
	padding-bottom: 17px;
}

.navbar-default .navbar-nav.navbar-right > .active > a, .navbar-default .navbar-nav.navbar-right > li > a:hover{
	background-color: transparent;
}

.navbar-fixed-top{
	position: fixed;
	top:0;left:0;
	background-color: #4b93d5;
	border-top:none;
}

.navbar .navbar-header .navbar-toggle{
	background-color:#eee;
}

.navbar .navbar-header .navbar-toggle:hover{
	background-color:#fff;
}

.navbar-brand{
	padding-top:8px;
}

.navbar-brand img{
	height:35px;
	width:auto;
}

/* megamenu */
.menu-large{
	position: static !important;
}
.menu-large .dropdown-menu{
	width:100%;
}
.dropdown-menu{
	padding:20px;
	padding-top:10px;
	min-width:300px;
	max-height:750px;
	overflow-y:scroll;
	font-size:11pt;
}
.dropdown-menu a{
	font-size: 12pt;
	font-weight:300;
}
.dropdown-menu > li > ul{
	margin:0;
	padding:0;
	list-style-type:none;
	color:gray;
}
.dropdown-menu > li > ul > li{
	margin-bottom:5px;
}

.dropdown-menu > li > ul > li > a{
	text-decoration:none;
}
.dropdown-menu > li > ul > li > a:hover{
	text-decoration:underline;
}

.dropdown-menu .title{
	color:gray;
	display:block;
	font-size: 14pt;
	border-bottom:1px solid #bbb;
	padding-top:15px;
	margin-bottom:7px;
	padding-bottom:7px;
}
.dropdown-menu h4{
	margin-bottom:3px;
}
.dropdown-menu .title a{
	font-size: 14pt;
	text-decoration:none;
	font-weight:400;
}
.dropdown-menu .title a:hover{
	text-decoration:underline;
}

.dropdown-menu .title i{
	padding-right:7px;
}
.dropdown-menu .media{
	margin-top:15px;
	margin-bottom:15px;
}
.dropdown-menu .media img{
	width:100px;
	height:100px;
	background-color:#FFF;
}
.dropdown-menu .media .media-body a{
	text-decoration:none;
}
.dropdown-menu .media .media-body a:hover{
	text-decoration:underline;
}
.dropdown-menu .divider{
	margin:15px 0;
	display:none;
}

.dropdown-menu  .catalog-type {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width:100%;
  padding: 25px 0px 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
		  
.dropdown-menu  .catalog-type span {
    display: inline-block;
    text-align: center;
	text-transform:uppercase;
    white-space: nowrap;
    font-size: 18px;
    color: #888;
    margin: 0 20px;
}

.dropdown-menu  .catalog-type span.ls {
	color:#00619e;
}

.dropdown-menu  .catalog-type span.cosm {
	color:#96c22c;
}



.dropdown-menu  .catalog-type::before, .dropdown-menu  .catalog-type::after {
    content: " ";
    display: inline-block;
    position: relative;
    width: 100%;
    height: 1px;
    background-color: #e7e7e7;
}

/* logo */
.logo-block{
	position:absolute;
	height:150px;
	padding-top:45px;
	width:100%;
	top:0;left:0;
	z-index:1030;
}

.logo-block .logo-img{
	display:block;
	float:left;
	width:180px;
	border-right:1px solid #fff;
	text-align:center;
}

.logo-block .logo-img img{
	width:85%;
	height:auto;
}

.logo-description{
	display:block;
	float:left;
	padding-left:20px;
}

.logo-description > *{
	cursor:pointer;
}

.logo-block .logo-img-30-years{
	display:block;
	margin-top: 0px;
	float:left;
	width:430px;
	text-align:center;
}

.logo-block .logo-img-30-years img{
	width:90%;
	height:auto;
}

/* bottom */
.bottom .boottom-block{
	margin-bottom:40px;
}

.bottom *{
	color:#fff;
}

.bottom a{
	color:#fff;
	text-decoration:none;
}

.bottom a:hover{
	color:#fff;
	text-decoration:underline;
}

.bottom-logo{
	background-color:#f3f3f3;
	padding-top:36px;
	padding-bottom:36px;
}

.bottom-logo .logo-description p {
	color:#4b93d5;
	text-transform:uppercase;
	font-family: 'Istok Web', sans-serif;
	font-size:13pt;
	font-weight:300;
	margin:0;
	margin-top:3px;
	line-height:20px;
}

.bottom-logo .logo-img{
	float:left;
	border-right:1px solid #4b93d5;
	padding-right:15px;
}

.bottom-logo .logo-description{
	float:left;
}

.bottom-logo .logo-link{
	padding-top:35px;
}

.bottom-logo .logo-link a{
	color:#4b93d5;
	text-transform:uppercase;
	text-decoration:none;
}

.bottom-logo .logo-link a:hover{
	text-decoration:underline;
}

.bottom-blocks{
	background-color:#4b93d5;
	padding-top:50px;
	padding-bottom:30px;
	font-size:12pt;
}

.bottom-blocks .title{
	display:block;
	border-bottom:1px solid #fff;
	padding-bottom:7px;
	margin-bottom:15px;
}

.bottom-blocks ul.list{
	list-style-type:square;
	padding-left:15px;
}

.bottom-blocks ul.list > li{
	margin-bottom:4px;
}

.bottom-blocks ul > li > a{
	text-decoration:none;
}

.bottom-blocks ul > li > a:hover{
	text-decoration:underline;
}

.glyphicon{
	margin-right:12px;
}

.bottom-line{
	background-color:#3484c7;
	padding-top:20px;
	padding-bottom:10px;
	font-size:12pt;
}

.bottom-line .bottom-nav{
	list-style-type:none;
	margin:0;
	padding:0;
	float:right;
}

.bottom-line .bottom-nav li{
	display:inline-block;
	margin-left:8px;
}

.bottom-line .bottom-nav li > a{
	text-decoration:none;
}

.bottom-line .bottom-nav li > a:hover{
	text-decoration:underline;
}

.bottom-line .bottom-nav li::after{
	content: "|";
	margin-left:10px;
}

.bottom-line .bottom-nav li:last-child::after{
	content: "";
}

.bottom .media .media-body p > a{
	text-decoration:none;
}

.bottom .media .media-body p > a:hover{
	text-decoration:underline;
}

.bottom .media .media-body{
	padding-top:6px;
}

.bottom .media img{
	width:64px;
	height:auto;
}

/* social-icons */
.social-icons{
	padding:0px;
	margin:0px;
	margin-top: 50px;
	list-style-type:none;
	text-align:left;
}

.social-icons li{
	display:inline-block;
	margin-left:5px;
}

.social-icons li>a{
	display:block;
	width:40px;
	height:40px;
	background-image: url('../images/social-icon-set-40x40-white-plus-rutube.png');
	background-repeat:no-repeat;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.social-icons li>a:hover{	
	-webkit-box-shadow: 0px 0px 5px #fff;
	-moz-box-shadow: 0px 0px 5px #fff;
	box-shadow: 0px 0px 5px #fff;		
}

.icon-ff{background-position: 0px bottom;}
.icon-ff:hover{background-position: 0px top;}

.icon-twitter{background-position: -40px bottom;}
.icon-twitter:hover{background-position: -40px top;}

.icon-in{background-position: -80px bottom;}
.icon-in:hover{background-position: -80px top;}

.icon-vk{background-position: -120px bottom;}
.icon-vk:hover{background-position: -120px top;}

.icon-ok{background-position: -160px bottom;}
.icon-ok:hover{background-position: -160px top;}

.icon-youtube{background-position: -200px bottom;}
.icon-youtube:hover{background-position: -200px top;}

.icon-instagram{background-position: -240px bottom;}
.icon-instagram:hover{background-position: -240px top;}

.icon-tiktok{background-position: -280px bottom;}
.icon-tiktok:hover{background-position: -280px top;}

.icon-rutube{background-position: -320px bottom;}
.icon-rutube:hover{background-position: -320px top;}


/* square */
.square{
	padding-left:0px;
	padding-right:0px;
	text-align:center;
	overflow:hidden;
}

.square img{
	width:100%;
	height:auto;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-ms-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}

.square a{
	display:block;
	position:relative;
}
 
.square a:hover img{
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
 }

.square a span{
	position:absolute;
	display:block;
	width:70%;
	height:70%;
	top:15%;left:15%;
	background-color: rgba(140,177,232,0.6); /*  */
	-webkit-border-radius: 999px;
	-moz-border-radius:  999px;
	border-radius:  999px;
	color:#fff;
	font-weight:700;
	font-size:14pt;
	text-transform:uppercase;
	padding-top:27%;
}

.square a span::after{
	content: " ";
	display:block;
	margin:10px auto;
	width:61px;
	height:4px;
	background:url(../images/white-line.jpg) no-repeat center center;
}

.square a:hover span:after{
	background:url(../images/red-line.jpg) no-repeat center center;
}

/* delimiter */
.delimiter{
	height:40px;
	margin-top:0px;
	background:url(../images/delimiter.jpg) repeat-x center bottom;
	position:relative;
}

.delimiter::before{
	content: " ";
	position:absolute;
	top:0;left:0;
	width:50%;
	height:40px;
	background:url('../images/delimiter-left.png') repeat-y left top;

}

.delimiter::after{
	content: " ";
	position:absolute;
	top:0;right:0;
	width:50%;
	height:40px;
	background:url('../images/delimiter-right.png') repeat-y right top;
}

.delimiter.d-gray{
	background: url('../images/delimiter.jpg') repeat-x center top;
}


/* NEWS */

.vebinar-block{
	background-color:#fafafa;
}

.news-block{
	background-color:#fff;
}

.news{
	margin-top:30px;
	margin-bottom:70px;
	font-size:12pt;
	padding-left: 7px;
	padding-right: 7px;
}

.news .img{
	margin-bottom:10px;	
}

.news .img img{
	border:1px solid lightgray;
}

.news .date{
	color:#7d7d7d;
	font-size:10.5pt;
}

.news .title{
	background: url('../images/gray-line.jpg') no-repeat left bottom;
	padding-bottom:13px;	
}

.news .title a{
	text-decoration:none;
}

.news .title a:hover{
	text-decoration:underline;
}

.news.active .title{
	background: url('../images/red-line.jpg') no-repeat left bottom;
	padding-bottom:13px;
}

.news .img a{
	display:block;
	position:relative;
}

.news .img a::after{	
	content: " ";
	display:block;
	position:absolute;
	top:0;left:0;
	width:100%;
	height:100%;
	background:#000 url('../images/arrow.png') no-repeat top center;	
	opacity:0;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.news.active .img a::after{
	background-position:center center;
	opacity:0.45;
}

.news .description{
	color:#7d7d7d;
}

.news-block .owl-nav {
  position: absolute;
  top: 0;
  width: 100%;
}

.news-block .owl-nav .owl-prev {
  left: -90px;
}

.news-block .owl-nav .owl-next {
  right: -90px;
}

.news-block .owl-nav div {
  position: absolute;
  top: 130px;
  color: #fe0036;
  font-size: 2em;
  padding: 0 10px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: .7;
}

.news-block .owl-nav div.disabled {
	color: #999;
}

.news-block .owl-nav div:hover {
  opacity: 1;
}

/* --- */

#blog-carousel .owl-nav {
  position: absolute;
  top: 0;
  width: 100%;
}

#blog-carousel .owl-nav .owl-prev {
  left: -90px;
}

#blog-carousel .owl-nav .owl-next {
  right: -90px;
}

#blog-carousel .owl-nav div {
  position: absolute;
  top: 80px;
  color: #e82e89;
  font-size: 2em;
  padding: 0 10px;
}

#blog-carousel .owl-nav div.disabled {
	color: #999;
}

#blog-carousel .blog-video-comment{
	padding-left: 7px;
	padding-right: 7px;
}

.blog-category{
	position: relative;
	text-align: center;
	margin-top: 120px;
	background-color: #fafafa;
	border-radius: 15px;
	margin-bottom: 30px;
}

.blog-category img{
	width: 75%;
	height: auto;
	margin-top: -100px;
	border: 10px solid #fafafa;
	border-radius: 999px;
	background-color: #fff;
}

.blog-category h3{
	margin-bottom: 50px;
}

.blog-category h3 a{
	color: #e82e89;
	font-weight: bold;
}


.blog-category .more-materials{
	display: block;
	background-color: #eeeeee;
	width: 100%;
	height: 50px;
	line-height: 50px;
	text-align: center;
	-webkit-border-bottom-right-radius: 15px;
	-webkit-border-bottom-left-radius: 15px;
	-moz-border-radius-bottomright: 15px;
	-moz-border-radius-bottomleft: 15px;
	border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px;
}

ul.blog-category-list{
	padding-left: 30px;
	padding-right: 30px;
	list-style-type: none;
	margin-bottom: 30px;
}

ul.blog-category-list li .delim{
	display: block;
	margin-top: 10px;
	margin-bottom: 5px;
	font-weight: bold;
}

ul.blog-category-list li:last-child {
	display: none;
} 

/* arrow-up */
.arrow-up{
	display:block;
	width: 50px;
	height: 50px;
	line-height:50px;
	text-align:center;
	text-decoration:none;
	color:white;
	background-color:#3484c7;
	-webkit-border-radius: 999px;
	-moz-border-radius: 999px;
	border-radius: 999px;
	position:fixed;
	right:50px;
	bottom:90px;
}

.arrow-up span{
	margin:0;
	padding:0;
}

.arrow-up:focus{
	outline:none;
}

/* nav-tabs */
.nav.nav-tabs > li{
	margin-bottom:-1px;
}

.nav.nav-tabs > li > a{
	outline:none;
}

.nav.nav-tabs > li > a{
	text-decoration:none;
}

.nav.nav-tabs > li > a > i.fa{	
	color:gray;
	padding-right:7px;
}

.nav.nav-tabs > li.active > a > i.fa{
	color:#ff0036;
}

#myTabs > li:nth-child(4){
	-webkit-animation-delay: 0s;
	-moz-animation-delay: 0s;
	-o-animation-delay: 0s;
	animation-delay: 0s;
}

#myTabs > li:nth-child(3){
	-webkit-animation-delay: 0.3s;
	-moz-animation-delay: 0.3s;
	-o-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

#myTabs > li:nth-child(2){
	-webkit-animation-delay: 0.6s;
	-moz-animation-delay: 0.6s;
	-o-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

#myTabs > li:nth-child(1){
	-webkit-animation-delay: 0.9s;
	-moz-animation-delay: 0.9s;
	-o-animation-delay: 0.9s;
	animation-delay: 0.9s;
}

.tab-content{
	border:1px solid #ddd;
	border-top:none;
	padding:35px;
	margin-bottom:30px;
	background-color:#FFF;
}

/* toggle-block */
.toggle-block{
	margin-top:40px;
	margin-bottom:40px;
}

.toggle-block .toggle-left, .toggle-block .toggle-right{
	cursor:pointer;
	display:block;
	text-align:center;
	margin-top:70px;
	color:#777;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.toggle-block .toggle-left:hover, .toggle-block .toggle-right:hover{
	color:#fe0036;
}

.toggle-block .toggle-container{
	position:relative;
	min-height: 100%;
    height: auto;
}

.toggle-block .toggle-container > .row{
    overflow-y:hidden;
	overflow-x:hidden;
    white-space:nowrap;
	font-size: 0;
}

.toggle-block .toggle-container > .row [class*="col-lg"], .toggle-block .toggle-container > .row [class*="col-md"], .toggle-block .toggle-container > .row [class*="col-sm"], .toggle-block .toggle-container > .row [class*="col-xs"]{
	float:none;
    display:inline-block;
    white-space:normal;
    vertical-align:top;
	font-size: 12pt;
}

/* other and random */
.contacts-item{
	min-height:150px;
}

.suppliers-item{
	margin-bottom:25px;
}

.suppliers-item p{
	margin-top:10px;
}

.book-carousel .glyphicon-chevron-left, .book-carousel .glyphicon-chevron-right{
	font-size: 18pt;
	position: absolute;
	top: 40%;
}

.book-carousel .glyphicon-chevron-left:hover, .book-carousel .glyphicon-chevron-right:hover{
	color: #ff0036;
}

.book-carousel .glyphicon-chevron-left{
	left: -35px;
}

.book-carousel .glyphicon-chevron-right{
	right: -45px;
}

.book-item{
	padding: 5px;
}

.book-item-buy{
	padding: 15px;
}

.book-item-buy .book-img{
	margin-bottom: 10px;
}

.presentation-carousel .btn-left, .presentation-carousel .btn-right{
	font-size: 18pt;
	margin-top: 30px;
}

.presentation-carousel .btn-left .glyphicon-chevron-left, .presentation-carousel .btn-right .glyphicon-chevron-right{
	margin-left: 20px;
	margin-right: 20px;
}

.presentation-carousel .btn-left {
	float: left;
}

 .presentation-carousel .btn-right{
	float: right;
 }

.contacts-item blockquote{
	min-height:90px;
	font-size:11pt;
}

.map{
	border:1px solid #eee;
	margin-bottom:30px;
	position:relative;
}

.map .map-lock{
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	left:0;top:0;
	background-color:#fff;
	z-index:999;
	cursor:pointer;
	opacity:0.3;
}

.video-item{
	margin-bottom:25px;
	padding-bottom:25px;
	border-bottom:1px solid #ebebeb;
}

#video .video-item:last-child{
	margin-bottom:0px;
	padding-bottom:0px;
	border:none;
}

.gallery-item{
	margin-top:15px;
	margin-bottom:30px;
}

.photo-item{
	margin-bottom:30px;
}

.histology-item{
	min-height:330px;
}

.histology-item .img-photo{
	border-bottom:36px solid #fff;
}

.histology-img{
	position:relative;
	margin-bottom:5px;
}

.histology-img .nomer{
	position:absolute;
	right:13px; bottom:7px;
}

.histology-img .prep-video{
	position:absolute;
	left:13px; bottom:7px;
}

.almanac-item{
	padding:5px;
	margin-bottom:30px;
}

.almanac-item p{
	margin-top:10px;
	margin-bottom:10px;
}


.person-item{
	margin-bottom:30px;
}

.person-item p{
	padding:20px;
	padding-top:10px;
	padding-bottom:5px;
}

.vacancy-item .media{
	margin-bottom:25px;
}

.article-item{
	margin-bottom:25px;
}

.article-item p{
	margin-bottom:0;
}

.almanac .btn{
	margin-bottom:10px;
}

.almanac img{
	margin-bottom:20px;
}

.almanac dd{
	margin-bottom:7px;
}

.almanac ul{
	padding-left:17px;
}

.almanac ul > li small, ul > li small, ol > li small{
	font-style:italic;
	color:gray;
}

.substance dd{
	margin-bottom:5px;
}

.substance dt{
	font-weight:600;
}

.landing-margin{
	margin-bottom:45px;
}

.landing-margin h3{
	padding-top:25px;
	padding-bottom:25px;
}

.history{
	margin-top:30px;
	margin-bottom:30px;
}

.history .media{
	margin-bottom:50px;
}

.history .media-object{
	background-color:#fe0036;
	text-align:center;
	color:#fff;
	width:80px;
	height:80px;
	line-height:80px;
	font-size:16pt;
	font-weight:300;
	-webkit-border-radius: 999px;
	-moz-border-radius: 999px;
	border-radius: 999px;
}

#calendar #calendar-buttons{
	background: rgb(242,245,246); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(242,245,246,1) 0%, rgba(227,234,237,1) 37%, rgba(200,215,220,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(242,245,246,1) 0%,rgba(227,234,237,1) 37%,rgba(200,215,220,1) 100%);
	background: linear-gradient(to bottom,  rgba(242,245,246,1) 0%,rgba(227,234,237,1) 37%,rgba(200,215,220,1) 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f5f6', endColorstr='#c8d7dc',GradientType=0 );
	min-height:40px;
	padding:10px;
	font-size:16pt;
}

#calendar #calendar-buttons .calendar-button-right, #calendar #calendar-buttons .calendar-button-left{
	cursor:pointer;
	display:block;
	width:100px;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

#calendar #calendar-buttons .calendar-button-left{
	float:left;
	text-align:left;
}

#calendar #calendar-buttons .calendar-button-right{
	float:right;
	text-align:right;
}

#calendar #calendar-buttons .calendar-button-right:hover, #calendar #calendar-buttons .calendar-button-left:hover{
	color:red;
}

#calendar #calendar-container{
    overflow-y:hidden;
	overflow-x:hidden;
    white-space:nowrap;
	font-size: 0;
}

#calendar #calendar-container > div{
	float:none;
	width:100%;
    display:inline-block;
    white-space:normal;
    vertical-align:top;
	font-size: 10.5pt;
}

#calendar .table{
	margin-top:0px;
	margin-bottom:0px;
	text-align:center;
}

#calendar .table th{
	background-color:transparent;
}

#calendar .table > thead tr:first-child{
	color:#000;
	font-size:14pt;
	font-weight:400;
}

#calendar .table > tbody tr:first-child{
	color:#00619e;
}

#calendar .table td{
	background-color:#fff;
}

#calendar .table > tbody > tr > td:nth-child(6),
#calendar .table > tbody > tr > td:nth-child(7),
#calendar .table > tbody > tr > th:nth-child(6),
#calendar .table > tbody > tr > th:nth-child(7){
	color:red;
}

#calendar .table td.event{
	background: #fff url('../images/calendar-event.png') no-repeat center 8px;
	cursor:pointer;
}

#calendar .table td.event a{
	display:block;
	text-align:center;
	text-decoration:none;
	font-size: 10.5pt;
	background-color:transparent;
}

#calendar .table td.today{
	font-weight:bold;
	color:#4b93d5;
}

.counters{
	text-align:left;
	margin-top:40px;
	margin-left:5px;
}

.comment-bq footer{
	position:relative;
}

.comment-bq footer::before{
	display:block;
	content: " ";
	width:70px;
	height:70px;
	position:absolute;
	top:0; left:0;
	margin-right:10px;
	margin-bottom:10px;
	background: url('../images/karpova-av-164x164-3.jpg') no-repeat left top;
	-webkit-background-size: cover;
	background-size: cover;
	-webkit-border-radius: 999px;
	-moz-border-radius: 999px;
	border-radius: 999px;
	border:2px solid lightgray;
}

.comment-bq footer.retinoids-face::before{
	background: url('../images/retinoids-face-164x164.jpg') no-repeat left top;
	-webkit-background-size: cover;
	background-size: cover;
}

.comment-bq footer.guzev-face::before{
	background: url('../images/guzev-164x164.jpg') no-repeat left top;
	-webkit-background-size: cover;
	background-size: cover;
}

.comment-bq footer.dudoladov-face::before{
	background: url('../images/dudoladov-164x164.jpg') no-repeat left top;
	-webkit-background-size: cover;
	background-size: cover;
}

.comment-bq footer.novikova-face::before{
	background: url('../images/novikova-sn-164x164.jpg') no-repeat left top;
	-webkit-background-size: cover;
	background-size: cover;
}

.comment-bq footer.ftitz-face::before{
	background: url('../images/ftitz-164x164.jpg') no-repeat left top;
	-webkit-background-size: cover;
	background-size: cover;
}

.comment-bq footer.fil-face::before{
	background: url('../images/fil-164x164.jpg') no-repeat left top;
	-webkit-background-size: cover;
	background-size: cover;
}

.comment-bq footer p{
	margin-left:90px;
	min-height:65px;
}

.comment-bq footer p::before{
	display: block;
	content: "А.В. Карпова";
	width: 100%;
	font-weight: 400;
	font-style: italic;
	font-size: 17.5px;
	color: #00619e;
}

.comment-bq footer.retinoids-face p::before{
	content: "АО «Ретиноиды»";
}

.comment-bq footer.guzev-face p::before{
	content: "К.С. Гузев";
}

.comment-bq footer.dudoladov-face p::before{
	content: "В.П. Дудоладов";
}

.comment-bq footer.novikova-face p::before{
	content: "С.Н. Новикова";
}

.video-about-company{
	background-color:#fafafa;
	padding-top:45px;
	padding-bottom:30px;
}

.video-about-company h2{
	margin-top:0;
}

.video-about-company video, .video-about-company img{
	cursor:pointer;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.video-about-company video:hover, .video-about-company img:hover{
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}

#vk_groups,
#vk_groups iframe{
	height: 400px !important;
}

#event-block .media{
	margin-top:30px;
	margin-left:7px;
}

#event-block .media p{
	font-size: 1.4em;
	line-height: 75px;
}

/* NEW YEAR */
#new-year-modal{
	margin-top: 100px;
}

#new-year-modal .modal-content{
	background-image: url('../images/bg-ny-gir.png');
	background-repeat: no-repeat;
	background-position: center -55px;
	position:relative;
}

#new-year-modal .modal-content .close{
	position: absolute;
	right: -12px;
	top: -12px;
	float: none;
	width: 35px;
	height: 35px;
	background-color: #222;
	color: #fff;
	opacity: 1;
	-webkit-border-radius: 999px;
	-moz-border-radius: 999px;
	border-radius: 999px;
	z-index: 999;
}

#new-year-modal h3{
	margin-top: 0px;
}

#new-year-modal .modal-body{
	margin-top: 85px;
}