#header {
 position: fixed;
 width: 100%;
 /* height: 160px; */
 top: 0;
 z-index: 100;
 color: #fff;
 transition: all 0.5s linear 0s;
 -moz-transition: all 0.5s linear 0s;
 -webkit-transition: all 0.5s linear 0s;
 -o-transition: all 0.5s linear 0s;
 -ms-transition: all 0.5s linear 0s;
}

#header.fixed {}

#header li {
 padding: 0;
 margin: 0;
 list-style-type: none;
 background-image: none;
}


/* HEADER TOP */

#header_top {
 position: relative;
 float: left;
 width: 100%;
 height: 105px;
 background-color: #fff;
 border-bottom: 5px solid #a0a0a0;
 -webkit-transition: 0.5s ease-in-out;
 -moz-transition: 0.5s ease-in-out;
 -o-transition: 0.5s ease-in-out;
 transition: 0.5s ease-in-out;
}

#header.fixed #header_top {
 height: 70px;
}

#header #logo {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 float: left;
}

#header #logo a {
 display: block;
 line-height: 0;
}

#header #logo img {
 width: 75px;
 height: 75px;
 -webkit-transition: 0.5s ease-in-out;
 -moz-transition: 0.5s ease-in-out;
 -o-transition: 0.5s ease-in-out;
 transition: 0.5s ease-in-out;
}

#header.fixed #logo img {
 width: 50px;
 height: 50px;
}


/* LANGUAGE */

#header .language {
 display: flex;
 align-items: center;
 position: relative;
 float: right;
 height: 31px;
 margin: 10px 0 0 0;
 background: #fff url('../img/lang-arr.png') center right no-repeat;
 cursor: pointer;
}

#header .language .icon {
 display: flex;
 align-items: center;
 float: left;
 margin: 0 0 0 10px;
}

#header .language .icon img {
 width: 20px;
 height: 20px;
 border-radius: 500px;
 border: 1px solid transparent;
}

#header .language >.icon img {
 border-radius: 500px;
 border: 1px solid #ccc;
}

#header .language .text {
 float: left;
 width: 100%;
 padding: 6px 18px 4px 9px;
 font-size: 14px;
 color: #424242;
 text-transform: uppercase;
}

#header .choose_language {
 position: absolute;
 top: 30px;
 left: 0;
 width: 100%;
 display: none;
 border-top: 2px solid transparent;
 -webkit-transition: 0.5s ease-in-out;
 -moz-transition: 0.5s ease-in-out;
 -o-transition: 0.5s ease-in-out;
 transition: 0.5s ease-in-out;
 z-index: 4;
}

#header .choose_language {
 animation: show_choose_language 0.4s ease-in-out;
}

@keyframes show_choose_language {
 0% {
  opacity: 0;
  transform: translateY(10px);
 }
 100% {
  opacity: 1;
  transform: translate(0);
 }
}

#header .language:hover .choose_language {
 display: block;
}

#header .choose_language .row {
 display: flex;
 align-items: center;
 background-color: #dadada;
 -webkit-transition: 0.2s ease-in-out;
 -moz-transition: 0.2s ease-in-out;
 -o-transition: 0.2s ease-in-out;
 transition: 0.2s ease-in-out;
}

#header .choose_language .row:hover {
 background-color: #714194;
}

#header .choose_language .text {
 margin: 1px 0;
}

#header .choose_language .text:hover {
 color: #fff;
}


/* LANGUAGE */


/* HEADER BOTTOM */

#header_bottom {
 float: left;
 width: 100%;
 height: 55px;
 background-color: #424242;
}

#header_bottom .wrapper {
 height: 55px;
}


/* TOPBAR */

#topbar {
 float: left;
 width: 39.8%;
 margin: 13px 0 0 0;
}


/* MENU */

#topbar #topbar_menu {
 float: left;
 width: 100%;
}

#topbar li {
 padding: 0;
 margin: 0;
 list-style-type: none;
 background-image: none;
}

#topbar .btn_a,
#topbar .btn {
 position: relative;
 float: left;
 padding: 0 0 9px 0;
}

#topbar .btn>a>img {
 width: 16px;
 height: 21px;
}

#topbar .btn a,
#topbar .btn a:link,
#topbar .btn a:hover,
#topbar .btn a:visited {
 position: relative;
 display: flex;
 align-items: center;
 padding: 6px 17px;
 font-weight: 700;
 font-size: 16px;
 line-height: 1.3;
 color: #fff;
 text-transform: uppercase;
 border-right: 1px solid rgba(255, 255, 255, 0.3);
}

#topbar .btn_a a,
#topbar .btn_a a:link,
#topbar .btn_a a:hover,
#topbar .btn_a a:visited {
 position: relative;
 display: flex;
 align-items: center;
 padding: 6px 17px;
 font-weight: 700;
 font-size: 16px;
 line-height: 1.3;
 color: #fff;
 text-transform: uppercase;
 background-color: #714194;
 border-right: 1px solid rgba(255, 255, 255, 0.3);
}

#topbar .btn:last-child a {
 margin-right: 0;
 border-right: 1px solid transparent;
}

#topbar li>a:not(:only-child):after {
 content: "";
 width: 11px;
 height: 6px;
 margin: -2px 0 0 8px;
 background: url("../img/topbar-arr.png");
 background-size: 11px 6px;
}


/* SUBMENU */

#topbar .btn:hover .submenu,
#topbar .btn_a:hover .submenu {
 display: block;
}

#topbar .submenu {
 display: none;
 position: absolute;
 top: 42px;
 left: 0;
 width: 100%;
 min-width: 250px;
 background-color: #4e4e4e;
}

#topbar .submenu {
 animation: show_submenu 0.4s ease-in-out;
}

@keyframes show_submenu {
 0% {
  opacity: 0;
  transform: translateY(10px);
 }
 100% {
  opacity: 1;
  transform: translate(0);
 }
}

#topbar .child_btn {
 float: left;
 width: 100%;
}

#topbar .child_btn a,
#topbar .child_btn a:link,
#topbar .child_btn a:hover,
#topbar .child_btn a:visited {
 display: block;
 padding: 12px 18px 8px 18px;
 font-weight: 400;
 font-size: 13px;
 line-height: 1.2;
 color: #fff;
 border-bottom: 1px solid #535353;
 border-right: none;
}

#topbar .child_btn:last-child {
 border-bottom: none;
}

#topbar .child_btn a:hover {
 background-color: #585858;
}


/*  */

#header .site_title {
 float: left;
 width: 20.4%;
 padding: 9px 0 0 0;
 text-align: center;
}

#header .site_title p:nth-child(1) {
 font-weight: 700;
 font-size: 16px;
 line-height: 1.3;
 text-transform: uppercase;
 opacity: 0.6;
}

#header .site_title p:nth-child(2) {
 font-size: 13px;
 line-height: 1.3;
 opacity: 0.5;
}


/*  */

#header .mail {
 float: right;
 width: 39.8%;
 height: 100%;
 line-height: 55px;
 text-align: right;
}

#header .mail a,
#header .mail a:link,
#header .mail a:hover,
#header .mail a:visited {
 font-size: 12px;
 color: #fff;
 opacity: 0.8;
}

#header .mail a:hover {
 opacity: 0.6;
}

#header .mail img {
 width: 14px;
 height: 10px;
 /*margin: 0 8px 0 0*/;
 vertical-align: top;
 margin:24px 4px 0 0;
}

@media screen and (min-width:1200px) {
 #mobile_header {
  display: none;
 }
}

@media screen and (max-width:1200px) {
 #header {
  display: none;
 }
 #mobile_header {
  display: block;
  display: flex;
  justify-content: flex-end;
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.45);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.45);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.45);
  z-index: 100;
 }
}


/* MOBILE HEADER */

.mobile_header_logo {
 flex: auto;
 float: left;
 margin: 15px 0 0 3%;
}

.mobile_header_logo a {
 display: flex;
}
  
.mobile_header_logo .icon {
 min-width: 50px;
}

.mobile_header_logo img {
 width: 50px;
 height: 50px;
}

.mobile_header_logo .title {
 display: flex;
 align-content: center;
 flex-wrap: wrap;
 max-width: 200px;
 height: 50px;
 margin: 0 10px;
 font-weight: 600;
 font-size: 16px;
 color: #424242;
}

.mobile_header_logo .title p {
 float: left;
 width: 100%;
 line-height: 1.3;
}

.mobile_header_logo .title p:nth-child(2) {
 font-weight: 400;
 font-size: 13px;
 line-height: 1.1;
}

#mobile_header .mobile_header_phone {
 float: right;
 margin: 38px 3% 0 0;
}

.mobile_header_menu {
 float: right;
 margin: 21px 3% 0 0;
}



.m_language {
 display: flex;
 float: right;
 margin: 31px 3% 0 0;
 font-size: 14px;
 color: #424242;
 text-transform: uppercase;
 opacity: 1;
 cursor: pointer;
}

.m_language .current_language {
 float: left;
}

.m_language .icon {
 min-width: 15px;
 text-align: right;
}

.m_language .icon img {
 width: 10px;
 height: 6px;
 margin: -2px 0 0 0;
 vertical-align: middle;
}

.m_language_bg {
 display: flex;
 align-items: center;
 justify-content: center;
 display: none;
 position: fixed;
 top: 0;
 left: 0;
 width: 100vw;
 min-width: 100vw;
 height: 100vh;
 z-index: 10000;
 padding: 0;
 background-color: rgba(0, 0, 0, 0.5);
 border: none;
 animation: fade 0.6s ease-in-out;
}

@keyframes fade {
 0% {
  opacity: 0;
 }
 100% {
  opacity: 1;
 }
}

.m_language_box {
 width: 90%;
 max-height: 90vh;
 margin: 0 5%;
 padding: 0 20px 10px 20px;
 color: #424242;
 border: 1px solid #ddd;
 background-color: #fff;
 overflow-x: hidden;
 overflow-y: scroll;
 scrollbar-width: none;
 -ms-overflow-style: none;
 animation: m_move_down 0.6s ease-in-out;
}

.m_language_box::-webkit-scrollbar {
 width: 0;
 height: 0;
}

@keyframes m_move_down {
 0% {
  transform: translateY(-20px)
 }
 100% {
  transform: translate();
 }
}

.m_language_box .title {
 display: block;
 position: relative;
 float: left;
 width: 100%;
 padding: 17px 40px;
 font-weight: 600;
 font-size: 15px;
 color: #714194;
 text-align: center;
 text-transform: uppercase;
 border-bottom: 1px solid #ddd;
}

.m_language_box .close {
 display: block;
 position: absolute;
 top: 50%;
 right: 0;
 width: 20px;
 transform: translateY(-50%);
 cursor: pointer;
}

.m_language_box .close img {
 width: 20px;
 height: 20px;
 vertical-align: middle;
}

.m_language_box .choose_language {
 display: flex;
 align-content: center;
 float: left;
 width: 100%;
 padding: 20px 0 17px 0;
 border-bottom: 1px solid #ddd;
 cursor: pointer;
}

.m_language_box .choose_language:last-child {
 border-bottom: none;
}

.m_language_box .choose_language .icon {
 display: flex;
 align-items: center;
 float: left;
 min-width: 38px;
}

.m_language_box .choose_language .icon img {
 width: 26px;
 border: 1px solid #e0e0e0;
 border-radius: 500px;
}

.m_language_box .choose_language .text {
 align-self: center;
 float: left;
 font-weight: 600;
 font-size: 16px;
 line-height: 1.3;
}


/* MENU start */

#mobile_menu {
 position: fixed;
 z-index: 999;
 top: 80px;
 right: 0;
 height: 0;
 width: 100%;
 display: flex;
 flex-wrap: wrap;
 flex-direction: column;
 background-color: #f5f5f5;
 border-top: 1px solid #ddd;
 overflow-x: hidden;
 overflow-y: scroll;
 transition: 0.5s;
 -webkit-transition: 0.5s;
 -moz-transition: 0.5s;
 -o-transition: 0.5s;
 -webkit-transition: 0.4s ease-in-out;
 -moz-transition: 0.4s ease-in-out;
 -o-transition: 0.4s ease-in-out;
 transition: 0.4s ease-in-out;
 scrollbar-width: none;
 -ms-overflow-style: none;
}

#mobile_menu .container {
 flex: 1 0 auto;
 width: 100%;
 padding: 0 3.5%;
}

#mobile_menu::-webkit-scrollbar {
 width: 0;
 height: 0;
}


/* BTNS */

#mobile_menu .btn,
#mobile_menu .btn_a,
#mobile_menu .menu_link {
 float: left;
 width: 100%;
 margin: 0;
 clear: both;
 cursor: pointer;
}

#mobile_menu .btn:first-child {
 margin-top: 10px;
}

#mobile_menu .btn:last-child {
 margin-bottom: 10px;
}

#mobile_menu .btn,
#mobile_menu .btn_a {
 background: transparent;
 border-top: 1px solid #e9e9e9;
}

#mobile_menu .btn:first-child {
 border-top: none;
}

#mobile_menu .btn.has_children {
 display: flex;
}

#mobile_menu .btn.has_children .icon {
 min-width: 40px;
 padding: 0 10px 0 0;
 align-self: center;
 text-align: right;
}

#mobile_menu .btn.has_children .icon img {
 transform: rotate(-45deg);
 -webkit-transition: 0.2s ease-in-out;
 -moz-transition: 0.2s ease-in-out;
 -o-transition: 0.2s ease-in-out;
 transition: 0.2s ease-in-out;
}

#mobile_menu .btn.has_children .icon.open img {
 transform: rotate(0);
}


/* MAIN BTN */

#mobile_menu .btn span,
#mobile_menu .btn a:link,
#mobile_menu .btn a:hover,
#mobile_menu .btn a:visited,
#mobile_menu .btn_a a,
#mobile_menu .btn_a a:link,
#mobile_menu .btn_a a:hover,
#mobile_menu .btn_a a:visited {
 flex: auto;
 display: inline-block;
 width: 100%;
 padding: 14px 0 12px 0;
 font-weight: 500;
 font-size: 17px;
 line-height: 1.4;
 color: #484848;
}


/* CHILD BTN */

.child_menu {
 float: left;
 width: 100%;
 display: none;
}

#mobile_menu .menu_link a,
#mobile_menu .menu_link a:link,
#mobile_menu .menu_link a:hover,
#mobile_menu .menu_link a:visited {
 display: inline-block;
 width: calc(100% - 20px);
 padding: 11px 0;
 margin: 0 0 0 20px;
 font-weight: 400;
 font-size: 14px;
 line-height: 1.3;
 color: #484848;
 background-color: transparent;
 border-bottom: 1px solid #ddd;
}

#mobile_menu .menu_link:first-child {
 padding-top: 2px;
}

#mobile_menu .menu_link:last-child {
 padding-bottom: 15px;
}

#mobile_menu .menu_link:last-child a {
 border-bottom: none;
}


/*  */

#mobile_menu .info {
 flex: 0 0 auto;
 float: left;
 width: 100%;
 padding: 20px 3%;
 border-top: 1px solid #ddd;
}

@media screen and (max-width:676px) {
 .mobile_header_logo {
  margin-left: 4.5%;
 }
 .mobile_header_menu {
  margin-right: 4%;
 }
 #mobile_header .mobile_header_phone {
  margin-right: 4%;
 }
 .m_language {
  right: 4%;
 }
 .closebtn {
  right: 4.5%;
 }
 #mobile_menu .container {
  padding: 0 4%;
 }
 #mobile_menu .info {
  padding: 20px 4%;
 }
}


/*  */

#menu-toggle * {
 transition: 0.1s ease-in-out;
}

#menu-toggle span {
 display: block;
 background: #424242;
 border-radius: 2px;
}

#menu-toggle {
 width: 36px;
 height: 36px;
 position: relative;
 cursor: pointer;
}

#menu-toggle #hamburger {
 position: absolute;
 height: 100%;
 width: 100%;
}

#menu-toggle #hamburger span {
 width: 27px;
 height: 2px;
 position: relative;
 margin: 8px auto 0 auto;
}

#menu-toggle #hamburger span:nth-child(1) {
 transition-delay: 0.5s;
}

#menu-toggle #hamburger span:nth-child(2) {
 transition-delay: 0.625s;
}

#menu-toggle #hamburger span:nth-child(3) {
 transition-delay: 0.75s;
}

#menu-toggle #cross {
 position: absolute;
 height: 100%;
 width: 100%;
 transform: rotate(45deg);
}

#menu-toggle #cross span:nth-child(1) {
 height: 0%;
 width: 3px;
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 transition-delay: 0s;
}

#menu-toggle #cross span:nth-child(2) {
 width: 0%;
 height: 3px;
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 transition-delay: 0.25s;
}

#menu-toggle.open #hamburger span {
 width: 0%;
}

#menu-toggle.open #hamburger span:nth-child(1) {
 transition-delay: 0s;
}

#menu-toggle.open #hamburger span:nth-child(2) {
 transition-delay: 0.125s;
}

#menu-toggle.open #hamburger span:nth-child(3) {
 transition-delay: 0.25s;
}

#menu-toggle.open #cross span:nth-child(1) {
 height: 80%;
 transition-delay: 0.625s;
}

#menu-toggle.open #cross span:nth-child(2) {
 width: 80%;
 transition-delay: 0.375s;
}










/* NEW MOBILE MENY start */

@media screen and (min-width:1200px) {
 #new_mobile_menu {
  display: none;
 }
}

@media screen and (max-width:1200px) {
 #new_mobile_menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
 }
}

#new_mobile_menu {
 float: left;
 width: 100%;
 height: 50px;
 padding: 10px;
 background-color: #424242;
}

#new_mobile_menu .btn {
 float: left;
 width: 50%;
 border-right: 1px solid rgba(255, 255, 255, 0.3);
}

#new_mobile_menu .btn:nth-child(2) {
 border-right: none;
}

#new_mobile_menu .btn a,
#new_mobile_menu .btn a:link, 
#new_mobile_menu .btn a:hover,
#new_mobile_menu .btn a:visited {
 float: left;
 width: 100%;
 padding: 5px 10px 5px 10px;
 font-weight: 700;
 font-size: 14px;
 line-height: 1.3;
 color: #fff;
 text-transform: uppercase;
 text-align: center;
}

#new_mobile_menu .btn_a a,
#new_mobile_menu .btn_a a:link, 
#new_mobile_menu .btn_a a:hover,
#new_mobile_menu .btn_a a:visited {
 float: left;
 width: 100%;
 padding: 5px 10px 5px 10px;
 font-weight: 700;
 font-size: 14px;
 line-height: 1.3;
 color: #fff;
 background-color: #714194;
 text-transform: uppercase;
 text-align: center;
}




/* NEW MOBILE MENY end */
