@font-face {
    font-family: source-sans-pro;
    src: url("../fonts/SourceSansPro-Regular.otf") format("opentype");
	font-weight: normal;
  	font-style: normal;
}

@font-face {
    font-family: source-sans-pro;
    src: url("../fonts/SourceSansPro-Bold.otf") format("opentype");
	font-weight: bold;
  	font-style: normal;
}

@font-face {
    font-family: source-sans-pro;
    src: url("../fonts/SourceSansPro-It.otf") format("opentype");
	font-weight: normal;
  	font-style: italic;
}

/* Reset CSS*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	text-decoration:none;
}

em {
	font-style: italic;
}


/* MAIN */

body {
	font-family: source-sans-pro, sans-serif;
	font-weight: 400;
	font-style: normal;

	background-color: rgba(33,38,40,1);
	color: #fff;
}

.logo {
	width:10%;
}

.menu {
	font-weight: bold;
	position: absolute;
	right: 0;
	top: 0;
	bottom:0;
}

.menu a {
	color:inherit;
	text-decoration:none;
}

.menu > ul {
	display:table;
	height:100%;
	float:right;
}

.menu > ul > li {
	display: table-cell;
	padding:0 10px;
	vertical-align:middle;
	height:100%;
	box-sizing: border-box;
	/*font-size: 18px;*/
}

.menu ul li ul {
	display: none;
	position: absolute;
	background-color: rgba(70,74,79,1);
	min-width: 320px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 20;
	top:calc(100% + 2px);
	left:-50px;
	padding:10px 0;
}

.menu ul li:last-child ul {
	min-width: 260px;
}

.menu ul li ul li{
	padding:15px 50px;
	font-weight:normal;
}

.menu::after {
	content: '';
	clear: both;
}

.menu-active {
	border-bottom:2px solid rgba(97,137,48,1);
	position:relative;
}

.menu-active ul {
	display:block!important;
}

.menu-active .dropdown-content {
	display:block;
}

.dropdown a {
	color:inherit;
	text-decoration:none;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(70,74,79,1);
  min-width: 320px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 20;
  top:calc(100% + 2px);
  left:-50px;
  padding:20px 0;
}

.dropdown-content div {
	padding:15px 50px;
}

.menu-search img{
	width:20px;
}

.banner {
	position:relative;
}

.banner a {
	color: inherit;
}

.banner-item {
	position: relative;
}

.banner-content {
	position: absolute;
	left: 10%;
	top: 50%;
	transform: translate3d(0,-50%,0);
	-ms-transform: translate3d(0,-50%,0);
	-webkit-transform: translate3d(0,-50%,0);
	-moz-transform: translate3d(0,-50%,0);
	-o-transform: translate3d(0,-50%,0);
	border: 5px solid #fff;
	width:27%;
	height: auto;
  background-color:rgba(0,0,0,0.6);
}

.banner-content h1 {
	font-size:2.5em;
	font-weight:bold;
}

.banner-content p {
	font-size:1em;
	line-height:1.4em;
}

.banner-arrow-left {
	position:absolute;
	top:50%;
	transform: translate3d(0,-50%,0);
	-ms-transform: translate3d(0,-50%,0);
	-webkit-transform: translate3d(0,-50%,0);
	-moz-transform: translate3d(0,-50%,0);
	-o-transform: translate3d(0,-50%,0);
	left:2%;
	z-index:20;
}

.banner-arrow-right {
	position:absolute;
	top:50%;
	transform: translate3d(0,-50%,0);
	-ms-transform: translate3d(0,-50%,0);
	-webkit-transform: translate3d(0,-50%,0);
	-moz-transform: translate3d(0,-50%,0);
	-o-transform: translate3d(0,-50%,0);
	right:2%;
	z-index:20;
}

.sub-banner-item {
	position:absolute;
	left:0;
	top:0;
	bottom:0;
	right:0;
	transition: all 1000ms;
	-webkit-transition: all 1000ms;
    -moz-transition: all 1000ms;
    -o-transition: all 1000ms;
	overflow: hidden;
    height: 0;
	opacity: 0;
}

.sub-banner-img {
	display: none;
	/*position: absolute;
	left: 0;
	top: 0;
	bottom:0;
	right:0;*/
}

.sub-banner-pagination {
	text-align: center;
}

.bullet-con {
	display: inline-block;
}

.sub-banner-bullet {
	width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #fff;
  opacity: .2;
	margin:0 3px;
	cursor: pointer;
}

.sub-banner-bullet-active {
	opacity: 1;
}

.sub-banner-arrow-left {
	width: 8px;
	vertical-align: middle;
	cursor: pointer;
}

.sub-banner-arrow-right {
	width: 8px;
	vertical-align: middle;
	cursor: pointer;
}

.item-active {
	height:auto;
	opacity:1;
	display: block;
}

.sub-banner-content {
	position: relative;
	z-index: 10;
	background-color:rgba(9,46,110,1);
}

.sub-banner-content h2 {
	font-size:1.6em;
}

.sub-banner-content p {
	line-height:1.4em;
}

.sub-banner-content .row .cell {
	height: 500px;
}

.sub-banner-img {
	position: absolute;
	left: 0;
	right: 0;
	top:0;
	bottom:0;
}

.sub-banner-img img {
	height: 100%;
  width: 100%;
	display: block;
}

.sub-banner-content img {
	display: block;
}

.bg-box-up {
	position: absolute;
	left:0;
	top:0;
	width: 200px;
	height: 200px;
	display: block;
	background-color:rgba(112,191,85,1);
	transition: all 1000ms;
	-webkit-transition: all 1000ms;
    -moz-transition: all 1000ms;
    -o-transition: all 1000ms;
}

.bg-box-bt {
	position: absolute;
	right:0;
	bottom:0;
	width: 200px;
	height: 200px;
	display: block;
	background-color:rgba(97,137,48,1);
	transition: all 1000ms;
	-webkit-transition: all 1000ms;
    -moz-transition: all 1000ms;
    -o-transition: all 1000ms;
}

.box-v1 {
	width: 150px;
	height: 150px;
}

.box-v2 {
	width: 200px;
	height: 200px;
}

.box-v3 {
	width: 250px;
	height: 250px;
}

.content-teaser {
	position:relative;
	padding:0 20px 20px 0;
	margin:50px auto 0;
	width:60%;
	
}

.content-teaser-content {
	background-color:rgba(9,46,110,1);
	width:100%;
	z-index:10;
	position:relative;
}

.content-teaser-content h1 {
	color:rgba(112,191,85,1);
	font-size:2em;
	margin:20px 0;
}

.content-teaser-content p {
	line-height: 1.4em;
	font-size:1em;
	padding-bottom:50px;
}

.content-teaser-bg {
	position:absolute;
	bottom:0;
	right:0;
	top:20px;
	left:20px;
	background-color:rgba(112,191,85,1);
	z-index:-1;
}

.content-teaser-item {
	width:50%;
	position:relative;
}

.content-teaser-image {
	width:100%;
	height:100%;
	object-fit:cover;
}


.home-news h4{
	font-size:1.1em;
	font-weight:600;
}

.home-news-title {
	color:rgba(112,191,85,1);
	font-size:1.4em;
	padding-bottom:40px;
}

.home-news-item {
	flex: 1;
	height: 100%;
	margin: 0 10px;
}

.home-news-item {
	line-height: 1.4em;
}

.home-news-item1 {
	background-color:rgba(9,46,110,1);
	margin-right:16px;
}
.home-news-item2 {
	background-color:rgba(9,46,110,1);
	margin-left:8px;
	margin-right:12px;
	height:100%;
}
.home-news-item3 {
	background-color:rgba(9,46,110,1);
	margin-left:12px;
	margin-right:8px;
}
.home-news-item4 {
	background-color:rgba(9,46,110,1);
	margin-left:16px;
}


.home-message {
	background-image:url(../images/message.png);
	background-size: cover;
	background-position: 80% 0;
	min-height: 400px;
	position: relative;
	text-align: center;
}

.home-message-content {
	position: absolute!important;
	top: 50%;
	transform: translate3d(0,-50%,0);
	-ms-transform: translate3d(0,-50%,0);
	-webkit-transform: translate3d(0,-50%,0);
	-moz-transform: translate3d(0,-50%,0);
	-o-transform: translate3d(0,-50%,0);
	width: 50%;
	left: 10%;
}

.home-message-text {
	font-size:1.3em;
	font-style:italic;
}

.home-message-text h4 {
	font-style:normal;
	padding-top:1.5em;
}

.home-message-text span {
	font-size:0.7em;
}


/*inside pages */

.inner-banner-content {
	position: absolute;
	left: 10%;
	top: 50%;
	transform: translate3d(0,-50%,0);
	-ms-transform: translate3d(0,-50%,0);
	-webkit-transform: translate3d(0,-50%,0);
	-moz-transform: translate3d(0,-50%,0);
	-o-transform: translate3d(0,-50%,0);
	border: 5px solid #fff;
	width:23%;
	height: auto;
	background-color:rgba(0,0,0,0.6);
}

.inner-banner-content h1 {
	font-size:2em;
	font-weight:bold;
}

.inner-banner-content p {
	font-size:1.2em;
	line-height:1.4em;
}


.content p{
	margin:20px 0;
	line-height:1.4em;
}

.content strong {
	font-weight:bold;
}

.content ol {
	display: block;
	list-style-type: decimal;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 0;
	margin-right: 0;
	padding-left: 40px;
}

.content ul {
	display: block;
	list-style-type: disc;
	margin-top: 1em;
	margin-bottom: 1 em;
	margin-left: 0;
	margin-right: 0;
	padding-left: 40px;
}

.content li {
	padding:10px 0;
	line-height:1.4em;
}

.content a {
	color:inherit;
	text-decoration:underline;
}

.content table {
	display: table;
	border-collapse: collapse;
	border-spacing: 2px;
	border-color: white;
	border: 1px solid;
	line-height:1.4em;
}

.content tbody {
	display: table-row-group;
	vertical-align: middle;
	border-color: inherit;
}

.content td {
	padding:10px;
	border: 1px solid;
}

.content video {
	width:80%;
	margin: 0 auto;
	display: block;
}

.page-text h3 {
	font-size: 1.4em;
	font-weight: bold;
}

.frequently-asked {
	padding: 20px;
}

.item-hidden {
	display: none;
}

.show {
	display: block;
}

.submenu {
	background-color:rgba(70,74,79,1);
	margin-right:20px;
}

.submenu ul{
	list-style:none;
}

.submenu-main a {
	text-decoration:none;
	color:inherit;
}

.submenu-main li{
	padding:10px 20px 10px 2px;
	margin-left:20px;
}

.submenu-main li::before {
	content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
	color: rgba(112,191,85,1); /* Change the color */
	font-weight: bold; /* If you want it to be bold */
	display: inline-block; /* Needed to add space between the bullet and the text */
	width: 0.5em; /* Also needed for space (tweak if needed) */
	margin-left: -0.7em; /* Also needed for space (tweak if needed) */
	font-size:1.3em;
	vertical-align: top;
	line-height:0.7em;
}

.submenu-main li ul li{
	margin-left:15px;
}

.submenu-main li ul li::before {
	content: "\2218";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
	color: rgba(112,191,85,1); /* Change the color */
	font-weight: bold; /* If you want it to be bold */
	display: inline-block; /* Needed to add space between the bullet and the text */
	width: 0.5em; /* Also needed for space (tweak if needed) */
	margin-left: -0.7em; /* Also needed for space (tweak if needed) */
}

.submenu-main span, .submenu-main > ul > li > a {
	padding-bottom:10px;
	display:inline-block;
}

.submenu-main.collapse li > span {
	cursor: pointer;
}

.submenu-main.collapse li > ul {
	overflow: hidden;
	height: auto;
	max-height: 0;
}

.submenu-active {
	max-height: 1000px!important;
	transition: all 1000ms;
	-webkit-transition: all 1000ms;
    -moz-transition: all 1000ms;
    -o-transition: all 1000ms;
}

.newsbg {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
	background-color:rgba(9,46,110,1);
}

.line {
	border:0;
	height:1px;
	background:#6a6e71;
}

.btn-download {
	color:#70bf55;
	display: inline-block;

}

.btn-download img {
	padding-right:10px;
}


.stocks {
	background-image:url(../images/bg-stocks.png);
	background-size: cover;
	min-height: 100px;
}

.stocks-content span{
	font-weight:bold;
	padding-right:20px;
}

.stocks-item {
	display: inline-block;
	padding: 20px;
	border-right: 1px solid rgba(143, 148, 157,1);
}

.stocks-item-last {
	display: inline-block;
	padding: 20px;
}


.footer {
	background-color:rgba(70,74,79,1);
}

.contacts {
	font-size:0.8em;
}

.contact-item {
	width:17%;
}

.contact-item img {
	padding-right:10px;
	vertical-align:middle;
	width:20px;
}

.copyright {
	padding:10px 0 20px;
	font-size:0.7em;
}

.image-box {
	position: relative;
	height: 0;
	padding-bottom: 60%;
	overflow: hidden;
}

.image-box img {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center center
}

.policy {
	position: fixed;
	bottom:0;
	right: 15%;
	z-index: 100;
	transform: translate3d(0,200%,0);
	-ms-transform: translate3d(0,200%,0);
	-webkit-transform: translate3d(0,200%,0);
	-moz-transform: translate3d(0,200%,0);
	-o-transform: translate3d(0,200%,0);
	transition: all 500ms;
	-webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
}

.policy span{
	padding: 5px 10px;
	background-color:rgba(9,46,110,1);
	box-shadow: 2px 2px 10px black;
	display: inline-block;
	cursor: pointer;
}

.policy-text {
	position: fixed;
	z-index: 100;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	transform: translate3d(0,200%,0);
	-ms-transform: translate3d(0,200%,0);
	-webkit-transform: translate3d(0,200%,0);
	-moz-transform: translate3d(0,200%,0);
	-o-transform: translate3d(0,200%,0);
	background-color:rgba(9,46,110,1);
	transition: all 500ms;
	-webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
}

.policy-text span {
	padding: 20px;
	display: inline-block;
	width: 80%;
}

.policy-text a {
	color: inherit;
	text-decoration: underline;
}

.btn-accept {
	text-decoration: underline;
	font-weight: bold;
	cursor: pointer;
}

.policy-active {
	transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
}


hr {
	border:0;
	height:1px;
	background:#fff;
}




.sub-title {
	position: relative;
	padding-left:35px;
	font-size:0.8em;
}

.sub-title img{
	position:absolute;
	top:50%;
	left:0;
	transform: translate3d(0,-50%,0);
	-ms-transform: translate3d(0,-50%,0);
	-webkit-transform: translate3d(0,-50%,0);
	-moz-transform: translate3d(0,-50%,0);
	-o-transform: translate3d(0,-50%,0);
}


.read-more {
	position: relative;
	padding-left:25px;
	color: rgba(112,191,85,1);
	font-size:0.8em;
	font-weight:bold;
}

.read-more img{
	position:absolute;
	top:50%;
	left:0;
	transform: translate3d(0,-50%,0);
	-ms-transform: translate3d(0,-50%,0);
	-webkit-transform: translate3d(0,-50%,0);
	-moz-transform: translate3d(0,-50%,0);
	-o-transform: translate3d(0,-50%,0);
}

.search-container {
    display: flex;
    align-items: center;
    max-width: 300px;
    margin: 20px 0 0 0;
    border: 1px solid #ccc;
    border-radius: 25px;
    overflow: hidden;
    background-color: white;
  }

  .search-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 16px;
  }

  .search-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
  }
    .search-button img{
        width:10px;
    }

  .search-button:hover {
    background-color: #45a049;
  }

.flex {
	display: flex;
  flex-wrap: wrap;
}

/* Table */

.table {
	display: table;
}

.row {
	display: table-row;
}

.cell {
	display: table-cell;
	vertical-align: middle;
	height:100%;
}

/* AREA */

.container {
	max-width: 1400px;
	margin: 0 auto;
	width: 90%;
	position: relative;
}

.pd20b50 {
	padding: 20px 20px 50px 20px;
}

.pd2040 {
	padding: 20px 40px;
}

.pdtb10 {
	padding: 10px 0;
}

.pdtb15 {
	padding: 15px 0;
}

.pdtb20 {
	padding: 20px 0;
}

.pdtb30 {
	padding: 30px 0;
}

.pdtb50 {
	padding: 50px 0;
}

.pdb50 {
	padding-bottom: 50px;
}

.pdb20 {
	padding-bottom: 20px;
}

.pdt10 {
	padding-top: 10px;
}

.pdt20 {
	padding-top: 20px;
}

.pdt50 {
	padding-top: 50px;
}

.pdl20 {
	padding-left: 20px;
}

.pd10 {
	padding: 10px;
}

.pd20 {
	padding: 20px;
}

.pd50 {
	padding: 50px;
}

.h500 {
	height: 500px;
}

.wd10 {
	width: 10%;
}

.wd25 {
	width: 25%;
}

.wd24 {
	width: 24%;
}

.wd30 {
	width: 30%;
}

.wd35 {
	width: 35%;
}

.wd40 {
	width: 40%;
}

.wd60 {
	width: 60%;
}

.wd65 {
	width: 65%;
}

.wd70 {
	width: 70%;
}

.wd75 {
	width: 75%;
}

.wd90 {
	width: 90%;
}

.fw {
	width: 100%;
}

/* position */

.left {
	float: left;
}

.right {
	float: right;
}

.clear {
	clear: both;
}

.relative {
	position:relative;
}

.abs-rb20 {
	position:absolute;
	right:20px;
	bottom:20px;
}

.abs-rb50 {
	position:absolute;
	right:50px;
	bottom:50px;
}

.abs-full {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
}


.valign-top {
	vertical-align:top;
}

.calign {
	text-align: center;
}

.ralign {
	text-align: right;
}


/* display */

.inline {
	display: inline-block;
}

.cover {
	object-fit: cover;
}

/* text */

.italic {
	font-style:italic;
}

.fsize13 {
	font-size:0.8em;
}

.title {
	font-size: 2em;
	color:#70bf55;
}

.subtitle {
	/*font-weight:bold;*/
	font-size:1.8em;
}

.subtitlefile {
	/*font-weight:bold;*/
	font-size:1.6em;
	color:#70bf55;
}

.text-compact {
	line-height:1em!important;
}

.tgreen {
	color:#70bf55!important;
	text-decoration:none!important;
}

.tdnone {
	text-decoration: none!important;
}

.treset {
	color: inherit;
	text-decoration: none;
}

.strong {
	font-weight: bold;
}

/* color */

.bgc-violet {
	background-color:rgba(9,46,110,1);
}

.inherit {
	color: inherit;
}

/* swiper */
.swiper-pagination-bullet {
	border: 1px solid #fff;
	background-color: transparent;
	opacity: 0.8;
}

.swiper-pagination-bullet-active {
	background-color: #fff;
}

/* committee */

.page-head {
	font-size: 2em;
	color:#70bf55;
	padding: 20px 0;
}

.srmgt .row {
	display: flex;
  flex-wrap: wrap;
}

.large-4 {
	width: 33.33%;
}

.large-8 {
	width: 66.66%;
}

.srmgt-image {
	padding: 20px;
}

.srmgt-image img {
	width: 100%;
}

.name-position ul {
	list-style:none;
}

.name-position li {
	padding: 0;
}

/* board of directors */

.mgt-single {
	display: flex;
  flex-wrap: wrap;
	padding-bottom: 50px;
}

.mgt-img {
	text-align: left;
}

.mgt-img img {
	width: 90%;
}

/* pagination */

.pagination {
	text-align: right;
	padding-bottom: 20px;
}

.pagination li{
	display: inline-block;
	padding: 10px;
}

.pagination .active {
	font-weight: bold;
}

.mmenu {
	display: none;
}

.submenu-btn {
	display: none;
}

/*@media screen and (max-width: 1400px) {
  body {
    font-size:70%;
  }

	.menu ul li:last-child ul {
		min-width: 200px;
	}
}*/

.desktop-absolute {
    position:absolute;
    right:0;
    top:0;
}

.mshow {
    display:none;
}

@media screen and (max-width: 1300px) {
	.h500 {
		height: 550px;
	}
}

@media screen and (max-width: 1100px) {
	.minh {
		min-height: 300px;
	}

	.minh360 {
		min-height: 360px;
	}
}

@media only screen and (max-width: 767px) {
	
	header {
		background-color: rgba(33,38,40,1);
		position: fixed;
		height: 70px;
		overflow: hidden;
		z-index: 100;
		left:0;
		right: 0;
	}

	.logo {
		width: 20%;
		position: relative;
		z-index: 50;
	}

	.burger {
    width: 25px;
    height: 20px;
    display: block;
    position: absolute;
    right: 15px;
    z-index: 100;
    top: 50%;
    transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
    cursor: pointer;
	}

	.burger-top {
		width: 100%;
		height: 4px;
		transform: translate3d(0,0,0) rotate(0deg);
		-ms-transform: translate3d(0,0,0) rotate(0deg);
		-webkit-transform: translate3d(0,0,0) rotate(0deg);
		-moz-transform: translate3d(0,0,0) rotate(0deg);
		-o-transform: translate3d(0,0,0) rotate(0deg);
		display: block;
		background-color: #fff;
		position: absolute;
		top: 0;
		left: 0;
	}

	.burger-mid {
		width: 100%;
		height: 4px;
		transform: translate3d(0,8px,0) rotate(0deg);
		-ms-transform: translate3d(0,8px,0) rotate(0deg);
		-webkit-transform: translate3d(0,8px,0) rotate(0deg);
		-moz-transform: translate3d(0,8px,0) rotate(0deg);
		-o-transform: translate3d(0,8px,0) rotate(0deg);
		display: block;
		background-color: #fff;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 1;
	}

	.burger-bot {
		width: 100%;
    height: 4px;
		transform: translate3d(0,16px,0) rotate(0deg);
		-ms-transform: translate3d(0,16px,0) rotate(0deg);
		-webkit-transform: translate3d(0,16px,0) rotate(0deg);
		-moz-transform: translate3d(0,16px,0) rotate(0deg);
		-o-transform: translate3d(0,16px,0) rotate(0deg);
    display: block;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
	}

	.burger div {
		transition: all 500ms ease-in-out;
		-webkit-transition: all 500ms ease-in-out;
		-moz-transition: all 500ms ease-in-out;
		-o-transition: all 500ms ease-in-out;
	}

	.animate-menu .burger-top{
		transform: translate3d(0,8px,0) rotate(45deg);
		-ms-transform: translate3d(0,8px,0) rotate(45deg);
		-webkit-transform: translate3d(0,8px,0) rotate(45deg);
		-moz-transform: translate3d(0,8px,0) rotate(45deg);
		-o-transform: translate3d(0,8px,0) rotate(45deg);
	}

	.animate-menu .burger-mid{

		transform: translate3d(0,8px,0) rotate(-45deg);
		-ms-transform: translate3d(0,8px,0) rotate(-45deg);
		-webkit-transform: translate3d(0,8px,0) rotate(-45deg);
		-moz-transform: translate3d(0,8px,0) rotate(-45deg);
		-o-transform: translate3d(0,8px,0) rotate(-45deg);

	}
	
	#layout-content {
		padding-top: 70px;
	}

	.animate-menu .burger-bot{
		/*transform: translate3d(0,8px,0) rotate(360deg);*/
		opacity: 0;
	}
	
	.submenu {
		position: fixed;
		transform: translate3d(-100%,0,0);
		-ms-transform: translate3d(-100%,0,0);
		-webkit-transform: translate3d(-100%,0,0);
		-moz-transform: translate3d(-100%,0,0);
		-o-transform: translate3d(-100%,0,0);
		z-index: 100;
		top:70px;
		left: 0;
		transition: all 500ms;
		-webkit-transition: all 500ms;
		-moz-transition: all 500ms;
		-o-transition: all 500ms;
		bottom:0;
		right: 10px;
	}

	.submenu-con {
		position: absolute;
		top:0;
		left: 0;
		bottom: 0;
		right: 0;
		overflow-x: auto;
	}

	.submenu-btn {
		display: block;
		position:absolute ;
		writing-mode: vertical-rl;
		text-orientation: mixed;
		z-index: 100;
		top:10%;
		right: 1px;
		padding: 15px 8px;
		background-color: rgba(70,74,79,1);
		font-size: 15px;
		transition: all 500ms;
		-webkit-transition: all 500ms;
		-moz-transition: all 500ms;
		-o-transition: all 500ms;
		transform: translate3d(100%,0,0);
		-ms-transform: translate3d(100%,0,0);
		-webkit-transform: translate3d(100%,0,0);
		-moz-transform: translate3d(100%,0,0);
		-o-transform: translate3d(100%,0,0);
	}

	.msubmenu-active {
		transform: translate3d(0,0,0);
		-ms-transform: translate3d(0,0,0);
		-webkit-transform: translate3d(0,0,0);
		-moz-transform: translate3d(0,0,0);
		-o-transform: translate3d(0,0,0);
	}

	.mmenu {
		height: 100vh;
    float: none;
    padding-top: 60px;
    background-color: rgba(33,38,40,1);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    transform: translate3d(100%,0,0);
	-ms-transform: translate3d(100%,0,0);
		-webkit-transform: translate3d(100%,0,0);
		-moz-transform: translate3d(100%,0,0);
		-o-transform: translate3d(100%,0,0);
    transition: all 500ms ease-in-out;
	-webkit-transition: all 500ms ease-in-out;
		-moz-transition: all 500ms ease-in-out;
		-o-transition: all 500ms ease-in-out;
		z-index: 30;
		display: block;
		font-size: 1.2em;
	}

	.mmenu a, .mmenu span{
		color: #fff;
	}

	.mmenu ul {
		padding: 30px;
	}

	.mmenu ul li {
		padding:10px 20px;
	}

	.mmenu ul li ul {
		position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    padding-top: 90px;
    transition: all 500ms ease-in-out;
    opacity: 1!important;
    transform: translate3d(200%,0,0);
    display: block!important;
    z-index: 50;
    width: 100%;
		background-color: rgba(33,38,40,1);
	}

	.mmenu-active {
		transform: translate3d(0,0,0)!important;
		-ms-transform: translate3d(0,0,0)!important;
		-webkit-transform: translate3d(0,0,0)!important;
		-moz-transform: translate3d(0,0,0)!important;
		-o-transform: translate3d(0,0,0)!important;
	}

	.menu {
		position: relative;
		z-index: 100;
		background-color: rgba(33,38,40,1);
		display: none;
	}

	.menu ul {
		float: left;
		display: block;
		background-color: rgba(33,38,40,1);
		padding: 20px 10px;
	}

	.menu ul li {
		display: block;
		padding: 5px 0;
		font-size: 1.5em;
	}

	.banner-content {
		width:80%;
	}

	.banner-content h1 {
		font-size: 1.7em;
	}

	.banner-content p {
    font-size: 0.8em;
    line-height: 1em;
	}
	
	.content-teaser {
		width:80%;
	}

	.home-message-content {
	 	width: 80%;
	}

	.home-message-text {
		font-size: 1.1em;
	}

	.inner-banner-content {
		width:80%;
	}

	.inner-banner-content h1 {
		font-size: 1.7em;
	}

	.inner-banner-content p {
    font-size: 0.8em;
    line-height: 1em;
	}

	.sub-banner-item {
		position: relative;
	}


	.contact-item {
		text-align: left;
		padding: 10px 0;
	}

	.container {
		width:95%;
	}

	.mfw {
		width: 100%;
	}

	.mwd50 {
		width: 50%;
	}

	.mflex {
		display: flex;
		flex-wrap: wrap;
	}

	.mblock {
		display: block;
	}

	.mlalign {
		text-align: left;
	}

	.mpdtb {
		padding:10px 0;
	}

	.mpd10 {
		padding: 10px;
	}

	.mpdb50 {
		padding-bottom: 50px;
	}

	.mmg10 {
		margin: 10px;
	}

	.mmg5 {
		margin: 5px;
	}

	.mmgb20 {
		margin-bottom: 20px;
	}

	.mhauto {
		height: auto;
	}

	.mh300 {
		height: 300px;
	}

	.mfixed {
		position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
	}
	
	.desktop-absolute {
	    position:relative;
	}
	
	.search-con-m {
	    display:flex;
	    justify-contents: center;
	}
}
