/* 
	Main style start 
*/

body {
	font-family: 'Merriweather', serif;
	color: #666;
}

h1,h2,h3,h4,h5,h6 {
	font-family: 'Playfair Display', serif;
	color: #000;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

a {
    color: #d61111;
}


#site-header {
   
    height: 150px;
    background: url(../images/header-left.png) no-repeat center left 5%, url(../images/header-right.png) no-repeat bottom right 5%;


}
#site-header .container, #site-header .row {
	height: 100%;
}
.soc-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-left: 10px;
}
.soc-icon a {
	margin-right: 10px;
	cursor: pointer;
}
.soc-icon svg {
    width: 36px;
}
#main-nav {
	height: 60px;
    border-top: 1px solid gainsboro;
    border-bottom: 1px solid gainsboro;
}
#main-nav nav {
	width: 100%;
	padding: 0;
}
#main-nav .navbar-nav {
	width: 100%;
	height: 60px;
	justify-content: space-around;
	align-items: center;
}

#site-content {
    padding-top: 30px;
}
a.logo,a.logo:not([href]):not([tabindex]) {
    display: flex;
    height: 100%;
    /*align-items: center;*/
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-size: 3vmin;
    color: #31849b;
}
.card {
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.card:hover {
    box-shadow: 0 0 15px 0px rgba(84, 84, 84, 0.25);
}

.publishedon {
    margin: 20px 0;
    color: #5d5d5d;
	font-size: 16px;
	font-weight: 400;
}
.news-media {
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.231em;
    color: #000;
}

.navbar-light .navbar-nav .nav-link,.nav-item.dropdown,.nav-link.dropdown-toggle {
    color: #31849b;
}

.navbar-default .navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
    color: #d61111;
}

.dropdown-menu,.dropdown-item
{
    color: #31849b;
    
}

input, label{
  display: inline-block;
  vertical-align: baseline;
}
._middle input, ._middle label{
  vertical-align: middle;
}
._top input, ._top label{
  vertical-align: top;
}
._bottom input, ._bottom label{
  vertical-align: bottom;
}


/*right-menu*/
.ac-container{
	width: auto;
	margin: 10px auto 30px auto;
	text-align: left;
}
.ac-container label{
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	padding: 1px  20px;
	position: relative;
	z-index: 20;
	display: block;
	height: 30px;
	cursor: pointer;
	color: #777;
	text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
	line-height: 33px;
	font-size: 19px;
	background: #ffffff;
	background: -moz-linear-gradient(top, #ffffff 1%, #eaeaea 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#ffffff), color-stop(100%,#eaeaea));
	background: -webkit-linear-gradient(top, #ffffff 1%,#eaeaea 100%);
	background: -o-linear-gradient(top, #ffffff 1%,#eaeaea 100%);
	background: -ms-linear-gradient(top, #ffffff 1%,#eaeaea 100%);
	background: linear-gradient(top, #ffffff 1%,#eaeaea 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eaeaea',GradientType=0 );
	box-shadow: 
		0px 0px 0px 1px rgba(155,155,155,0.3), 
		1px 0px 0px 0px rgba(255,255,255,0.9) inset, 
		0px 2px 2px rgba(0,0,0,0.1);
}
.ac-container label:hover{
	background: #fff;
}
.ac-container input:checked + label,
.ac-container input:checked + label:hover{
	background: #c6e1ec;
	color: #3d7489;
	text-shadow: 0px 1px 1px rgba(255,255,255, 0.6);
	box-shadow: 
		0px 0px 0px 1px rgba(155,155,155,0.3), 
		0px 2px 2px rgba(0,0,0,0.1);
}
.ac-container label:hover:after,
.ac-container input:checked + label:hover:after{
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	right: 13px;
	top: 7px;
	background: transparent url(../images/arrow_down.png) no-repeat center center;	
}
.ac-container input:checked + label:hover:after{
	background-image: url(../images/arrow_up.png);
}
.ac-container input{
	display: none;
}
.ac-container article{
	background: rgba(255, 255, 255, 0.5);
	margin-top: -1px;
	overflow: hidden;
	height: 0px;
	position: relative;
	z-index: 10;
	-webkit-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	-moz-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	-o-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	-ms-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
}
.ac-container article p{
	font-style: italic;
	color: #777;
	line-height: 23px;
	font-size: 14px;
	padding: 20px;
	text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
}
.ac-container input:checked ~ article{
	-webkit-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	-moz-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	-o-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	-ms-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	box-shadow: 0px 0px 0px 1px rgba(155,155,155,0.3);
}
.ac-container input:checked ~ article.ac-small{
	height: 100px;
}
.ac-container input:checked ~ article.ac-medium{
	height: 180px;
}
.ac-container input:checked ~ article.ac-large{
	height: 230px;
}
@font-face {
    font-family: 'BebasNeueRegular';
    src: url('fonts/BebasNeue-webfont.eot');
    src: url('fonts/BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/BebasNeue-webfont.woff') format('woff'),
         url('fonts/BebasNeue-webfont.ttf') format('truetype'),
         url('fonts/BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}



/* newpanel*/
.panel {
  margin-bottom: 20px;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
  padding: 15px;
}

.panel-body:before,
.panel-body:after {
  display: table;
  content: " ";
}

.panel-body:after {
  clear: both;
}

.panel-body:before,
.panel-body:after {
  display: table;
  content: " ";
}

.panel-body:after {
  clear: both;
}

.panel > .list-group {
  margin-bottom: 0;
}

.panel > .list-group .list-group-item {
  border-width: 1px 0;
}

.panel > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.panel > .list-group .list-group-item:last-child {
  border-bottom: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

.panel > .table {
  margin-bottom: 0;
}

.panel > .panel-body + .table {
  border-top: 1px solid #dddddd;
}

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
}

.panel-title > a {
  color: inherit;
}

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #dddddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel-group .panel {
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 4px;
}

.panel-group .panel + .panel {
  margin-top: 5px;
}

.panel-group .panel-heading {
  border-bottom: 0;
}

.panel-group .panel-heading + .panel-collapse .panel-body {
  border-top: 1px solid #dddddd;
}

.panel-group .panel-footer {
  border-top: 0;
}

.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #dddddd;
}

.panel-default {
  border-color: #dddddd;
}

.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #dddddd;
}

.panel-default > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #dddddd;
}

.panel-default > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #dddddd;
}

.panel-primary {
  border-color: #428bca;
}

.panel-primary > .panel-heading {
  color: #ffffff;
  background-color: #428bca;
  border-color: #428bca;
}

.panel-primary > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #428bca;
}

.panel-primary > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #428bca;
}

.panel-success {
  border-color: #d6e9c6;
}

.panel-success > .panel-heading {
  color: #468847;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.panel-success > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #d6e9c6;
}

.panel-success > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #d6e9c6;
}

.panel-warning {
  border-color: #fbeed5;
}

.panel-warning > .panel-heading {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #fbeed5;
}

.panel-warning > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #fbeed5;
}

.panel-warning > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #fbeed5;
}

.panel-danger {
  border-color: #eed3d7;
}

.panel-danger > .panel-heading {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

.panel-danger > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #eed3d7;
}

.panel-danger > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #eed3d7;
}

.panel-info {
  border-color: #bce8f1;
}

.panel-info > .panel-heading {
  color: #3a87ad;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.panel-info > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #bce8f1;
}

.panel-info > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #bce8f1;
}
/* aditional style for webinar's tables*/
.icon-www {
    background-image:url(https://laravel.ru/favicon.ico); 
    width:16px; 
    height:16px; 
    display:inline-block;
    vertical-align:bottom;
}
/* new gallery of report's photos*/
.report-gallery-item {
    display:inline-block;   
    position:relative;
}
.report-gallery-item div { 
    display: inline-block; 
    position: absolute; 
    bottom: 10px; left: 0px; 
    background-color: rgba(0,0,0,.4); 
    padding: 5px 5px 5px 10px;
    color: white
}
td {
padding: 15px 3px;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
	#site-header {
	    background: none;
	}
	#main-nav nav {
	    background: white;
	}
	#main-nav .navbar-nav {
		height: auto;
	}


}






/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
#site-header {
	    background: none;
	}
	#main-nav nav {
	    background: white;
	}
	#main-nav .navbar-nav {
		height: auto;
	}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
#site-header {
	    background: none;
	}
	#main-nav nav {
	    background: white;
	}
	#main-nav .navbar-nav {
		height: auto;
	}	
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
#site-header {
	    background: none;}	
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1449px) {

	.card-columns {
		column-count: 4;
	}
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1450px)  {
#site-header {
    height: 150px;
     background: url(../images/header-left.png) no-repeat center left 5%, url(../images/header-right.png) no-repeat bottom right 5%;
    
    
    
}	
    
	.card-columns {
		column-count: 4;
	}
}


            .floating {
            background: #FFFFFF;
            color: #fff;
            font: normal normal 0.9vw Merriwheater;
            padding: 0px;
            margin: 5px;
            width: auto; 
            }
            .fixed {
            position: fixed;
            top: 10px; 
            z-index: 9999; 
            }
            
            #sitemap ul {
              margin: 0 0 0 1px;
              padding: 0 0 0 3px;
              background-image: url(https://modx-iglusjax.stackpathdns.com/"t1.gif");
              background-repeat: repeat-y;
              
            }
             
            #sitemap ul li {
              margin: 0;
              padding: 0 0 0 14px;
              list-style: none;
              background-image: url(https://modx-iglusjax.stackpathdns.com/"t2.gif");
              background-repeat: no-repeat;
              background-position: -3px 0;
            }
             
            #sitemap ul li .last {
              margin-bottom: 6px;
              background-image: url(https://modx-iglusjax.stackpathdns.com/"t3.gif");
              background-repeat: no-repeat;
              background-position: -3px 9px;
            }            
              
            .floating ul { color: #31849b; padding: 0 0 0 0; margin: 0 0 0 14px}
            .floating ul li { color: #31849b; padding: 0 0 0 0; margin: 0 0 0 0}
            .floating ul li .last { color: #31849b; padding: 0 0 0 0; margin: 0 0 0 0}
            .floating ul li .first { color: #31849b; padding: 0 0 0 0; margin: 0 0 0 0}
            .floating a { color: #31849b; padding: 0 0 0 0; margin: 0 0 0 0}
            
            
          /*@media screen and (device-width: 500px ) {#image img {width: 80px; height: auto;}}  */
            

            

.hr-dashed {
	margin: 0px 0;
	padding: 0;
	height: 2px;
	border: none;
	border-top: dashed #b2a1c7;
}

a2 {
     text-decoration: none; /* Убираем подчёркивание */
   }
   a2:hover {
    border-bottom: 1px dashed #31849b; /* Добавляем синее пунктирное подчёркивание */
   }