/*----------------------------
	GENERAL
-----------------------------*/
#pn-currently-edited-area p.more{
	display: block !important;
	border: 1px dotted #ccc;
}
.border {border:1px solid black;}

* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing:border-box;
}

body {
	font-size: 100%;
	margin-top: 170px;
	transition: 0.3s;
}

body, p, h1, h2, h3, h4, h5, h6, a, a:hover {
	font-family: 'Open Sans', sans-serif !important;
}

a {
	text-decoration: none;
}

a img {
	border: 0;
}

#logo img{
	transition: 0.3s;
	width: 100%;
	height: auto;

}
div#site{
	min-height: 82vh;
    display: flex;
    flex-direction: column;
}
div#main-content{
	flex: 1;
}



/*----------------------------
	SVG SHAPES
-----------------------------*/
.svg {
	width: 100%;
	height: 100px;
	z-index: 5;
}
.shape1, .shape2 {
	background-repeat: no-repeat;
	background-size: cover;
	height: 100px;
	background-position: top;
}
.shape1 {
	background-image: url('../images/shape1.svg');
}
.shape2 {
	background-image: url('../images/shape2.svg');
}
.top {
	position: relative;
	top: 0;
	left: 0;
}
.bottom {
	position: relative;
	bottom: 0;
	left: 0;
}
.bluefill {
	fill: #114c82;
}
.lightbluefill {
	fill: #e7f2f8;
}



/*----------------------------
	HEADER & NAV
-----------------------------*/
header {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	background-color: #114c82;
	position: fixed;
  	top: 0;
  	z-index: 9999;
  	height: auto;
  	transition: 0.3s;
  	width: 100%;
}


nav {
	margin-left: auto;
}

nav ul{
	display: flex;
	align-items: center;
}
nav ul li {
	display: flex;
	align-items: center;
	font-size: 28px;
	padding: 0px 30px;
	transition: 0.3s;
}

header img{
	height: 35px;
	width: 35px;
}
header.shrink nav ul li{
	font-size: 18px;
}
header.shrink #logo img{
	height: auto;
	width: 50%;
}
header.shrink #nav-extend img{
	width: 25px;
	height: 25px;

}

nav ul li:not(:last-child){
	border-right: 1px solid #2089bf;
}

nav ul li:last-child::after {
	display: none;
}

nav ul li a {
	color: #fff;
}

nav ul li a:hover {
	text-decoration: underline;
}

nav ul li a:first-child {
	margin-left: 0;
}

header div#logo {
	padding: 15px 30px;
}

input.search-input {
	padding: 10px;
	font-size: 20px;
	width: 280px;
	color: #114c82;
	font-weight: 300;
	margin-right: 10px;
	transition: 0.3s;
}


input.search-input::placeholder {
	color: #114c82;
	font-weight: 300;
}

button.search-btn {
	border: 0;
	background: none;
	color: #2089bf;
	font-size: 30px;
		-webkit-appearance: none;
	border-radius: 0;
}

button.search-btn:hover {
	cursor: pointer;
}

header #nav-extend {
	margin-left: auto;
}

header #nav-extend a span.icon-hamburger, header #nav-extend a span.icon-search {
	color: #2089bf;
	display: none;
}

header #nav-extend span {
	font-size: 43px;
}

header #nav-extend a:hover {
	text-decoration: none;
	border: none;
}

header #nav-extend img{
	transition: 0.3s;
}

#mobile_nav {
	display: none;
	width: 100%;
	z-index: 40;
	position: fixed;
	top: 116px;
	transition: 0.3s top;
}

#mobile_nav ul {
	width: 100%;
}

#mobile_nav ul li {
	text-align: center;
	list-style-type: none;
	background: url('../images/mobile_nav_separator.png') repeat-x bottom;
	background-color: #2089bf;
	padding: 20px 0;
	font-size: 26px;
}

#mobile_nav ul li a {
	color: #fff;
}

#mobile_nav ul li a:hover {
	color: #114c82;
}



#mobile_search {
	display: none;
	width: 100%;
	z-index: 30;
	position: fixed;
	top: 116px;
	padding: 20px 0;
	text-align: center;
	background: url('../images/mobile_nav_separator.png') repeat-x bottom;
	background-color: #2089bf;
	transition: 0.3s top;
}

#mobile_search .icon-search {
	color: #fff;
}


/*=======================================
=            LEFT SIDE BOXES            =
=======================================*/


#left_side_boxes{
	position: fixed;
	z-index: 20;
	width: 280px;
	top: 140px;
	left: 30px;
	transition: 0.3s;
}
#left_side_boxes.shrink{
	top: 100px;
	left: 15px;
}

#left_side_boxes .editIconDiv:nth-child(2){
	margin-top: 20px;
}

#left_side_boxes i{
	padding: 0 2px 0 0;
}

.currency, .dictionary, .last-mod, .my-documents, .downloads{
	background: #114C82;
	width: 280px;
	padding: 15px;
	text-align: left;
}

.dictionary,
.last-modified, .my-documents, .downloads{
	margin-top: 10px;
}

.currency, .last-mod{
	cursor: pointer;
}

.currency:before, #login:before {
	bottom: 100%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: transparent;
	border-bottom-color: #114C82;
	border-width: 16px;
	margin-left: -16px;
}

.currency h4, .last-mod h4{
	color: #fff;

}
.currency .currency-inner, .last-mod .last-mod-inner{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	color: #fff;
	height: auto;
	max-height: 0px;
	transition: 0.75s max-height ease-in-out;
	transition-delay: 0s;
	overflow: hidden;

}

/*-----------CURRENCY HOVER-------------*/

.currency:hover .currency-inner, .last-mod:hover .last-mod-inner{
	max-height: 10vh;
}
/*----------------------------------------*/


.dictionary, .my-documents {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: flex-start;
	margin-top: 10px;
}
.dictionary div:first-child, .my-documents div:first-child{
	display: flex;
	justify-content: center;
  	align-items: center;

}

/*.dictionary div:last-child {
	margin-left: 15px;
	padding-top: 5px;
}*/

.dictionary a, .my-documents a, .downloads a{
	color: #fff;
	font-weight: 600;
}


.dictionary img {
	width: 38px;
	height: 38px;
}

.dictionary a, .last-mod a {
	color: #fff;
}

.dictionary a:hover, .last-mod a:hover, .my-documents a:hover, .downloads a:hover {
	text-decoration: underline;
}






/*----------------------------
	HEADER EXTEND
-----------------------------*/

.currency:before {
	left: 60px;
}

#login {
	display: flex;
	display: none;
	position: fixed;
	top: 140px;
	right: 0;
	flex-direction: column;
	flex-wrap: nowrap;
	margin-right: 15px;
	width: 250px;
	background: #114C82;
	padding: 15px;
	z-index: 9999;
}

#login .remember_me label {
	color: #2089bf;
}

#login div:last-child {
	text-align: center;
}

#login div:last-child a {
	color: #fff;
}

#login div:last-child a:hover {
	text-decoration: underline;
}

#login:before {
	right: 40px;
}






.carousel-content p {
	font-size: 100px;
}



/*-------------	FORM -------------*/
button{
	-webkit-appearance: none;
	border-radius: 0;
}

.form-input{
	padding: 8px 15px;
	margin-bottom: 15px;
	font-size: 16px;
	font-weight: 300;
	color: #114C82;
	border: 1px solid #2089bf;
}
.login-input {
	width: 220px;
}

header form{
	display: flex;
}

header form input.search-input{
	width: 200px;
}


form img{
	transition: 0.3s;
}

button.form-btn, input.form-btn {
	text-align: center;
	font-weight: 700;
	background: #2089bf;
	padding: 8px 30px;
	font-size: 20px;
	color: #fff;
	margin: 15px 0;
	-webkit-appearance: none;
	border-radius: 0;

}
button.form-btn:hover, input.form-btn:hover {
	cursor: pointer;
	background: #114c82;

}
button.login-btn {
	text-align: center;
	font-weight: 700;
	background: #2089bf;
	padding: 8px 0;
	font-size: 20px;
	color: #fff;
	margin: 15px 0;
	width: 100%;
}
button.login-btn:hover {
	cursor: pointer;
}

.contact-form {
	width: 490px;
	margin: 0 auto;
}

.contact-form input[type=text], .contact-form input[type=password], .contact-form select, .contact-form textarea {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #2089bf;
	border-radius: 4px;
	box-sizing: border-box;
}


/*----------------------------
	CONTENT
-----------------------------*/
section.content_mic {
	width: 100%;
	margin-top: 30px;
}

section.content_mic h1 {
	font-size: 48px;
	padding-bottom: 30px;
}

section.content_mic h2 {
	font-size: 36px;
	padding-bottom: 30px;
}

section.content_mic h3 {
	font-size: 30px;
	color: #114c82;
	padding-bottom: 20px;
}

section.white { background-color: #fff; }
section.blue { background-color: #114c82; color: #fff; }
section.lightblue { background-color: #e7f2f8; }

section.white h1,
section.white h2,
section.white h3,
section.white p,
section.white ul li,
section.lightblue h1,
section.lightblue h2,
section.lightblue p,
section.lightblue ul li {
	color: #114c82;
}
section.blue h1,
section.blue h2,
section.blue h3,
section.blue p,
section.blue ul li {
	color: #fff;
}

section.blue p, section.lightblue p {
	padding-bottom: 30px;
}

section.content_mic a {
	color: #114cbe;
}

section.content_mic a:hover {
	text-decoration: underline;
}

section.content_mic a:visited {
	color: #114cbe;
}

section.content_mic .content-inner, section.content_mic .product-item {
	margin: 0 auto;
	width: 1208px;
	margin-bottom: 15px;
	padding-bottom: 15px;
	padding-top: 15px;
}

section.content_mic .products, section.content_mic .contacts-front {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0 280px 50px 280px;
}

section.content_mic .products div, section.content_mic .contacts-front div {
	text-align: center;
	/* flex: 1 1 16.6%; */
	/* flex: 1 1 13.6%; */
	flex: 1 1 12.5%;
}

section.content_mic .products div span {
	font-size: 70px;
	color: #2089bf;
	display: block;
	padding-bottom: 20px;
}

section.content_mic .products div p {
	color: #fff;
	font-size: 18px;
	font-weight: 300;
}

section.content_mic .txtblue p {
	color: #114c82 !important;
}
.txtblue{
	color: #114c82;
}

section.content_mic .products div a:hover {
	text-decoration: none;
}

section.content_mic .products div a:hover p {
	text-decoration: underline;
}

section.content_mic .products div img.product-image {
	width: 70px;
	height: 70px;
}

.contacts-front img.cont-image{
	width: 80%;
	transition: 0.3s;
}
.contacts-front img.cont-image:hover{
	transform: scale(0.9);
}


p.more {
	margin-top: 20px;
}

#contacts-front-id{
	padding: 15px 15px;
}

#seminars-id{
	padding-bottom: 15px;
}



/*----------------------------
	PRODUCTS
-----------------------------*/
section.content_mic .product-item {
	border-bottom: 2px solid #cfdbe6;
}
section.content_mic .product-item:last-child {
	border: 0;
}
section.content_mic .product-item p, section.content_mic  .product-item ul {
	padding: 10px 0;
}

section.content_mic .product-item ul li {
	margin-left: 17px;
	color: #114c82;
}

section.content_mic .product-item a {
	font-style: italic;
	color: #114c82;
	text-decoration: underline;
}
.product-item img{
	width: 160px;
}


/*----------------------------
	NEWS
-----------------------------*/
.news {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-start;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 2px solid #cfdbe6;
}
h1.news-header, h2.news-header {
	padding-top: 30px;
}
.news:last-child {
	padding-bottom: 5px;
	margin-bottom: 5px;
	border: 0;
}
.news-image {
	padding-right: 15px;
}
.news-image img {
	max-width: 200px;
}
.news-text {
	padding-left: 15px;
}
.news-text p {
	font-weight: 300;
	color: #114c82;
	font-size: 16px;
}
.news-text h3 {

}
.news-text h3 a {
	color: #114c82;
}
.news-text h3 a:hover {
	text-decoration: underline;
}
.news-text h3 a:visited {
	color: #114c82;
}
.news-text p.date {
	padding-bottom: 20px;
}
.news-text p.continue {
	padding-top: 20px;
}
.news-text p.continue a {
	color: #114c82;
}
.news-text p.continue a:hover {
	text-decoration: underline;
}



/*----------------------------
	PARTNERS
-----------------------------*/
.partners {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	margin-bottom: 30px;
}

.partners img {
	margin-bottom: 10px;
	height: 87px;
}



/*----------------------------
	MEMBERS
-----------------------------*/
section.content_mic .members {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-around;
	/* justify-content: center; */
}

section.content_mic .gremium {
	align-items: flex-end;
}

section.content_mic .members div {
    flex: 1 1 16.6%;
    /* width: 16.6%; */
	text-align: center;
	margin-bottom: 15px;
}

section.content_mic .members div img {
	/*height: 250px;*/
}

section.content_mic .members p {
	font-size: 13px;
	text-align: center;
	padding-bottom: 5px !important;
}

section.content_mic .members p.name {
	font-weight: bold;
}

section.content_mic .members p.task {
	font-style: italic;
}




/*----------------------------
	GALLERY
-----------------------------*/
section.content_mic .gallery, section.content_mic .sub-gallery {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;

}
section.content_mic .gallery div.gallery-box {
	text-align: center;
	margin: 15px auto;
	width: 45%;
	display: flex;
	flex-direction: row;
	background:#114C82;
	border: 1px solid #114C82;
	transition: 0.3s;
}
section.content_mic .gallery div.gallery-box .img-box{
	width: 50%;
	display: flex;
}
section.content_mic .gallery div.gallery-box .img-box img{
	width: 100%;
	max-height: 200px;
    min-height: 200px;
}
section.content_mic .gallery div.gallery-box .desc-box{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 50%;
	padding: 0 10px;
}
section.content_mic .sub-gallery .sub-gallery-box{
	margin: 10px;
}
section.content_mic .sub-gallery .sub-gallery-box .sub-gallery-img{
	width: 150px;
	height: 150px;
	max-width: 150px;
	max-height: 150px;
	display: block;
	/*background-size: cover;
	background-position: center;
	background-repeat: no-repeat;*/
}
section.content_mic .sub-gallery .sub-gallery-box .sub-gallery-img a{
	display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}






section.content_mic .gallery div.gallery-box .desc-box a{

}
section.content_mic .gallery div.gallery-box .desc-box a span{
	font-size: 22px;
	color: white;
}
section.content_mic .gallery div.gallery-box .desc-box a:hover{
	text-decoration: none;
}
section.content_mic .gallery div.gallery-box:hover{
	box-shadow: 2px 2px 10px #7d7d7d;
}

/*section.content_mic .sub-gallery div {
    flex: 1 1 16.6%;
	text-align: center;
	margin-bottom: 15px;
}/*



/*----------------------------
	FOOTER
-----------------------------*/
footer {
	width: 100%;
	padding: 60px 0;
	margin-top: 20px;
	background-color: #114c82;
}

footer #footer-inner {
	/*width: 1208px;
	margin: 0 auto;*/
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
}

footer #footer-inner h4 {
	color: #fff;
	font-size: 24px;
	margin-bottom: 28px;
}

footer #footer-inner .footer-segment:first-child, footer #footer-inner .footer-segment:last-child {
	width: 30%;
}

footer #footer-inner .footer-segment:first-child div {
	display: flex;
  	justify-content: space-between;
}

footer #footer-inner .footer-separator {
	width: 2px;
	background-color: #2089bf;
	background-repeat: repeat-y;
}

footer #footer-inner ul {
	display: block;
}

footer #footer-inner ul li {
	list-style-type: none;
}

footer #footer-inner ul li a, footer ul li {
	color: #fff;
	font-size: 18px;
}

footer #footer-inner ul li a:hover {
	text-decoration: underline;
}

footer #footer-inner span.icon-facebook {
	display: block;
	color: #2089bf;
	font-size: 38px;
	margin-top: 35px;
}



/*----------------------------
	OTHERS
-----------------------------*/
.nomargin {
	margin: 0 !important;
}
.nomargin-t {
	margin-top: 0 !important;
}
.nomargin-b {
	margin-bottom: 0 !important;
}
.nopadding {
	padding: 0 !important;
}
.nopadding-t {
	padding-top: 0 !important;
}
.nopadding-b {
	padding-bottom: 0 !important;
}
.fullwidth {
	width: 100%;
}
.hidden {
	display: none !important;
}
.fb-icon {
	width: 35px;
	height: 35px;
	margin-top: 10px;
}
img.mobile-seach-btn {
	width: 30px;
	height: 30px;
}
.center-block {
	display: block;
	margin: 0 auto;
}
#mesg_prg {
	padding-bottom: 10px;
	color: #fff;
	font-size: 12px;
}
.ext-gremium {
	text-align: center;
	padding-left: 26%;
}

.contact-top {
	text-align: center;
}


.career img {
	display: block;
	margin: 0 auto;
	width: 600px;
}

.bl-version:hover {
	cursor: pointer;
}

.pagination {
  display: block;
  text-align: center;
}

.pagination a {
  color: black;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
  border: 1px solid #2089bf;
  margin-bottom: 15px;
  display: inline-block;
}

.pagination a.active {
  background-color: #2089bf;
  color: white;
  border: 1px solid #114c82;
}

.pagination a:hover:not(.active) {background-color: #2089bf; color: #fff;}


#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 30px;
    background: #f5f5f5;
    color: #444;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
}
#back-to-top:hover {
    background: #e9ebec;
}
#back-to-top.show {
    opacity: 1;
}

.mic_zip, .mic_month {
	margin-bottom: 10px;
}
.contacts p {
	margin-bottom: 10px;
}

.partner-contact {
	margin-bottom: 15px;
	border-bottom: 2px solid #cfdbe6;
}

.partner-contact img {
	margin: 10px 0;
}

div.hr {
	width: 100%;
	height: 1px;
	border-bottom: 2px solid #cfdbe6;
}

.leaflet-container {
	z-index: 15;
}

.carousel{
	margin-top: -60px;
}
.contacts-front div{
	max-width: 25%;
	display: flex;
	flex-direction: column;
}
.contacts-front p{
	width:100%;
	max-height: 0px;
	overflow: hidden;
	transition: .3s;
}
.contacts-front button{
	border: 0px;
	background: none;
	cursor: pointer;
	min-height: 120px;
}
.contacts-front button:focus{
	outline: 0px;
}
.contacts-front button:focus ~ p{
	display: block;
	max-height: 1000px;
}

.contacts-front button p{
	transition: 0.5s;
}


.seminars{
	padding-top: 15px;
	padding-bottom: 15px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.seminars div{
	text-align: center;
	color: #fff;
}

.seminars div div{
	padding: 5px 0;
	color: #fff;
}
.footer-segment{
	width: 300px;
}
