#header {
 position: fixed;
 top: 0;
 width: 100%;
 line-height: 1.2;
 z-index: 100;
}

#header,
#header * {
 -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 {
 -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 li {
 padding: 0;
 margin: 0;
 list-style-type: none;
 background-image: none;
}


/* HEADER BOTTOM */

#header_bottom {
 float: left;
 width: 100%;
 background-color: rgba(255, 255, 255, 0.8);
}

#header.int #header_bottom {
 background: url('/img/internal/header-int-bg.png') center no-repeat;
}

#header_bottom .wrapper {
 display: flex;
 align-content: center;
 height: 80px;
}

#header #logo {
 display: flex;
 justify-content: flex-start;
 align-items: center;
 float: left;
 width: 147px;
}

#header #logo a {
 display: flex;
}

#header #logo a img {
 width: 99px;
 height: 65px;
}


/* TOPBAR */

#topbar {
 display: flex;
 justify-content: flex-start;
 align-items: center;
 flex: auto;
 float: left;
}


/* MENU */

#topbar #topbar_menu {
 display: flex;
 justify-content: flex-start;
 align-content: center;
 flex-wrap: wrap;
 float: right;
 width: 100%;
 height: 100%;
}

#topbar .btn_a,
#topbar .btn {
 position: relative;
 display: flex;
 align-content: center;
 float: left;
 margin: 0 0 0 48px;
}

#topbar .btn:first-child {
 margin: 0;
}

#topbar .btn>a,
#topbar .btn>a:link,
#topbar .btn>a:hover,
#topbar .btn>a:visited {
 position: relative;
 display: flex;
 align-items: center;
 padding: 10px 0;
 font-weight: 500;
 font-size: 18px;
 color: #292a2b;
}

#topbar .btn_a>a,
#topbar .btn_a>a:link,
#topbar .btn_a>a:hover,
#topbar .btn_a>a:visited {
 color: #002172;
}

#topbar .btn:hover>a,
#topbar .btn_a:hover>a {
 color: #002172;
}


/* SUBMENU */

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

#topbar .submenu {
 display: none;
 position: absolute;
 top: 100%;
 left: -12px;
 width: 100%;
 min-width: 250px;
 box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.5);
 border-radius: 4px;
 border-bottom: 5px solid #002172;
 background: #fff;
 overflow: auto;
}

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

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

#topbar .btn:last-child .submenu {
 left: auto;
 right: 0;
}

#topbar .child_btn {
 float: left;
 width: 100%;
 border-bottom: 1px solid #ddd;
}

#topbar .child_btn a,
#topbar .child_btn a:link,
#topbar .child_btn a:hover,
#topbar .child_btn a:visited {
 display: flex;
 padding: 10px 20px;
 font-weight: 400;
 font-size: 15px;
 color: #292a2b;
 -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;
}

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

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

#header .right {
 display: flex;
 justify-content: flex-end;
 align-items: center;
 margin: 0 0 0 30px;
 white-space: nowrap;
}

#header .contacts {
 display: flex;
 align-items: center;
}

#header .contacts .icon {
 display: flex;
 justify-content: center;
 align-items: center;
 min-width: 39px;
 width: 39px;
 height: 39px;
 margin: 0 13px 0 0;
 border-radius: 100%;
 border: 1px solid #bfc2c5;
}

#header .contacts .icon img {
 width: 20px;
 height: 20px;
}

#header .contacts .text {
 display: flex;
 flex-direction: column;
}

#header .phone {
 font-weight: 500;
 font-size: 17px;
 letter-spacing: -0.04em;
 color: inherit;
}

#header .email {
 font-weight: 300;
 font-size: 13px;
 color: inherit;
}

#header .s0cials {
 display: flex;
 margin: 0 0 0 22px;
}

#header .s0cials .s0cial {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 38px;
 height: 38px;
 margin: 0 14px 0 0;
 border-radius: 100%;
 border: 1px solid #bfc2c5;
}

#header .s0cials .s0cial:last-child {
 margin: 0;
}

#header .s0cials .s0cial:hover {
 border: 1px solid #002172;
 background-color: #002172;
}

#header .s0cials .s0cial .icon {
 position: relative;
 width: 20px;
 height: 20px;
}

#header .s0cials .s0cial .icon::before {
 content: "";
 -webkit-transition: opacity 0.2s;
 -o-transition: opacity 0.2s;
 transition: opacity 0.2s;
 position: absolute;
 top: 0;
 right: 0;
 bottom: 0;
 left: 0;
}

#header .s0cials .s0cial .icon::after {
 content: "";
 opacity: 0;
 -webkit-transition: opacity 0.2s;
 -o-transition: opacity 0.2s;
 transition: opacity 0.2s;
 position: absolute;
 top: 0;
 right: 0;
 bottom: 0;
 left: 0;
}

#header .s0cials .s0cial.f_b .icon::before {
 background: url('/img/header-s0cial-f_b.svg') 0px 0px no-repeat;
 background-size: 20px 40px;
}

#header .s0cials .s0cial.f_b .icon::after {
 background: url('/img/header-s0cial-f_b.svg') 0px -20px no-repeat;
 background-size: 20px 40px;
}

#header .s0cials .s0cial.i_nstagram .icon::before {
 background: url('/img/header-s0cial-i_nstagram.svg') 0px 0px no-repeat;
 background-size: 20px 40px;
}

#header .s0cials .s0cial.i_nstagram .icon::after {
 background: url('/img/header-s0cial-i_nstagram.svg') 0px -20px no-repeat;
 background-size: 20px 40px;
}

#header .s0cials .s0cial:hover .icon::before {
 opacity: 0;
 -webkit-transition: opacity 0.2s;
 -o-transition: opacity 0.2s;
 transition: opacity 0.2s;
}

#header .s0cials .s0cial:hover .icon::after {
 opacity: 1;
 -webkit-transition: opacity 0.2s;
 -o-transition: opacity 0.2s;
 transition: opacity 0.2s;
}

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

@media screen and (max-width:1100px) {
 #header {
  display: none;
 }
 #mobile_header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
  background: url('/img/internal/header-int-bg.png') center no-repeat;
  background-size: auto 100%;
  z-index: 100;
 }
}


/* MOBILE HEADER */

.mobile_header_logo {
 flex: auto;
 display: flex;
 justify-content: flex-start;
 align-items: center;
 padding: 0 0 0 20px;
}

.mobile_header_logo a {
 display: flex;
}

.mobile_header_logo img {
 width: 61px;
 height: 40px;
}

.mobile_header_phone {
 display: flex;
 align-items: center;
 float: left;
 padding: 0 16px;
}

.mobile_header_phone img {
 width: 20px;
 height: 20px;
}

.mobile_header_phone {
 display: flex;
 justify-content: center;
 align-items: center;
 min-width: 35px;
 width: 35px;
 height: 35px;
 border-radius: 100%;
 border: 1px solid #bfc2c5;
}

.mobile_header_phone img {
 width: 18px;
 height: 18px;
}

.mobile_header_menu {
 float: right;
 margin: 0 20px 0 14px;
}


/* MENU start */

#mobile_menu {
 position: fixed;
 display: flex;
 flex-direction: column;
 top: 50px;
 right: 0;
 width: 100%;
 height: 0;
 /* for Firefox */
 min-height: 0;
 background-color: #fff;
 overflow-x: hidden;
 overflow-y: scroll;
 -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;
 z-index: 999;
}

#mobile_menu .container {
 flex-grow: 1;
 /* for Firefox */
 width: 100%;
 max-width: 1200px;
 min-height: 0;
 padding: 10px 20px 20px 20px;
 scrollbar-width: none;
 -ms-overflow-style: none;
 overflow: auto;
}

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

#mobile_menu ul {
 float: left;
 width: 100%;
}

#mobile_menu ul li {
 padding: 0;
 margin: 0;
 list-style-type: none;
 text-decoration: none;
 background-image: none;
}


/* BTNS */

.main_btns li {
 float: left;
 width: 100%;
}

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

#mobile_menu .btn {
 background: #fff;
 border-bottom: 1px solid #dadfe5;
 -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_a {
 background-color: #fff;
}

#mobile_menu .active .btn {
 background-color: #002172;
}

#mobile_menu .active .btn span,
#mobile_menu .active .btn a:link,
#mobile_menu .active .btn a:hover,
#mobile_menu .active .btn a:visited {
 color: #fff;
}

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

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

#mobile_menu .btn.has_children .icon img {
 width: 15px;
 height: 15px;
 margin: 8px 0 0 0;
 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 .active .btn.has_children .icon 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 {
 flex: auto;
 display: inline-block;
 width: 100%;
 padding: 11px 14px 12px 14px;
 font-weight: 700;
 font-size: 18px;
 line-height: 1.4;
 letter-spacing: -0.03em;
 color: #282828;
 -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_a span,
#mobile_menu .btn_a a,
#mobile_menu .btn_a a:link,
#mobile_menu .btn_a a:hover,
#mobile_menu .btn_a a:visited {
 color: #002172;
}


/* CHILD BTN */

.child_menu {
 float: left;
 width: 100%;
 height: 0;
 border-bottom: 1px solid #fff;
 background-color: #f3f6f8;
 transition: height 0.35s ease-in-out;
 overflow: hidden;
}

.main_btns li:not(.active) .child_menu {
 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: 100%;
 padding: 12px 14px 9px 14px;
 font-weight: 400;
 font-size: 14px;
 line-height: 1.4;
 color: #292a2b;
 background-color: transparent;
 border-bottom: 1px solid #fff;
}

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


/*  */

#mobile_menu .special_btns {
 display: flex;
 flex-wrap: wrap;
 float: left;
 width: 100%;
}

#mobile_menu .special_btns.bottom {
 margin: 25px 0 0 0;
}

#mobile_menu .special_btn {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 100%;
 min-height: 35px;
 padding: 12px 14px;
 font-weight: 500;
 font-size: 16px;
 line-height: 1.1;
 text-transform: uppercase;
 color: #fff;
 border-radius: 4px;
 background-color: #002172;
 border-bottom: none;
 -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 .s0cials {
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
 float: left;
 width: 100%;
 padding: 0 14px;
 margin: 20px 0 20px 0;
}

#mobile_menu .s0cials .s0cial {
 display: flex;
 justify-content: center;
 align-items: center;
 float: left;
 width: 38px;
 height: 38px;
 margin: 0 9px 9px 0;
 border-radius: 100%;
 border: 1px solid #bfc2c5;
}

#mobile_menu .s0cials .s0cial img {
 width: 20px;
 height: 20px;
}


/*  */

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

#menu_toggle span {
 display: block;
 background: #002172;
}

#menu_toggle {
 width: 32px;
 height: 32px;
 position: relative;
 cursor: pointer;
}

#menu_toggle #hamburger {
 position: absolute;
 width: 100%;
 height: 100%;
}

#menu_toggle #hamburger span {
 position: relative;
 width: 24px;
 height: 2px;
 margin: 6px auto 0 auto;
}

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

#menu_toggle #hamburger span:nth-child(2) {
 width: 20px;
 margin-right: 4px;
 transition-delay: 0.625s;
}

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

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

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

#menu_toggle #cross span:nth-child(2) {
 position: absolute;
 top: 50%;
 left: 50%;
 width: 0%;
 height: 2px;
 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;
}