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%; vertical-align: baseline;
}
main, article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html, body {
	margin: 0; padding: 0; min-height: 100%;
}
body {
	position: relative;
	font-size: 14px;
	color: #00243f;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 22px;
	font-family: 'Neo Sans Pro';
	background: url(../img/main-bg.jpg) no-repeat;
	background-size: cover;
}
* {
	outline: none; box-sizing: border-box;
}
img {
	border: none; vertical-align: top;
}
.responsive-image {
	max-width: 100%;
}
form {
	margin: 0; padding: 0;
}
input, textarea, select, button {
	margin: 0;
	padding: 0;
	border: none;
	resize: none;
	display: block;
	width: 100%;
}
input[type="text"] {
	background: #fff;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
button[type="submit"] {
	cursor: pointer;
}
 select::-ms-expand {
    display: none;
}
::-moz-placeholder {
	opacity: 1;
}
::-webkit-input-placeholder {
    opacity: 1;
}
::-ms-placeholder {
    opacity: 1;
}
::placeholder {
    opacity: 1;
}
label {
	cursor: pointer;
}
H1, H2, H3, H4, H5 {
	margin: 0; padding: 0;
}
.hidden {
	display: none;
}
.viewport-wrapper {
	position: relative; min-width: 300px; overflow: hidden;
}
.viewport-wrapper.overflow {
    width: 100%; height: 100vh; -webkit-overflow-scrolling: touch;
}
.container {
	margin: 0 auto;
	min-width: 300px;
	max-width: 1130px;
	padding: 0 15px;
}
.flex-row {
	display: flex; flex-wrap: wrap;
}
.justify-space {
	justify-content: space-between;
}
.justify-center {
	justify-content: center;
}
.justify-end {
	justify-content: flex-end;
}
.align-start {
	align-items: flex-start;
}
.align-center {
	align-items: center;
}
.align-end {
	align-items: flex-end;
}
ul, ul li {
	margin: 0; padding: 0; list-style: none;
}
a {
	color: #00243f; text-decoration: none; transition: all 300ms ease;
}
p {
	margin: 0;
}
.bt {
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: all 300ms ease;
	padding-bottom: 2px;
}


.bt-menu {
	position: relative;
	z-index: 10;
	cursor: pointer;
	width: 24px;
	height: 16px;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	display: none;;
}
.bt-menu span {
	display: block;
	width: 100%;
	height: 2px;
	background: #333333;
	transition: .3s;
	position: relative;
}
.bt-menu span:before {
	content: '';
	display: block;
	height: 2px;
	width: 100%;
	position: absolute;
	top: -6px;
	left: 0;
	background: #333333;
	transition: .3s;
}
.bt-menu span:after {
	content: '';
	display: block;
	height: 2px;
	width: 100%;
	position: absolute;
	top: 6px;
	left: 0;
	background: #333333;
	transition: .3s;
}
.bt-menu.close span {
	background: transparent;
}
.bt-menu.close span:before {
	top: 0;
	transform: rotate(45deg);
}
.bt-menu.close span:after {
	top: 0;
	transform: rotate(-45deg);
}
.text-success {
	color: #ff8000;
}


/* header
------------------------------------------------ */
.site-header {
	position: relative;
	background: #00243f;
	color: #fff;
	padding: 10px 0;
}
.site-header .logo {
	width: 380px;
	text-align: center;
}
.site-header .lang {
	width: 20px;
	text-align: right;
}
.site-header .lang a {
	color: #fff;
	font-size: 17px;
}
.site-header .lang a:hover {
	color: #ff8000;
}
.site-header .menu {
	width: calc(100% - 400px);
	padding-left: 60px;
}
.site-header .menu li {
	margin-right: 40px;
}
.site-header .menu li:last-child {
	margin-right: 0;
}
.site-header .menu li a {
	color: #fff;
	font-size: 17px;
}
.site-header .menu li a:hover {
	color: #ff8000;
}
/* end header */



.page-sidebar {
	width: 380px;
	margin-top: 36px;
	background: rgba(0,36,63,.55);
	padding: 25px 32px 30px;
	display: flex;
}
.page-content {
	width: calc(100% - 440px);
	margin: 36px 0 0 60px;
}
.page-sidebar .wrapper {
	background: rgba(255,255,255,.83);
	padding: 10px 10px 15px;
	width: 100%;
	min-height: 100%;
}
.b-block {
	margin-top: -20px;
}
.b-item {
	margin-top: 20px;
}
.b-item img {
	max-width: 100%;
}



.page-sidebar .info {
	text-align: center;
	font-size: 18px;
	margin-top: 12px;
}
.city-selection {
	padding-top: 10px;
}
.city-selection .subhead {
	font-size: 25px;
	text-align: center;
}
.item-select {
	position: relative;
	z-index: 10;
	font-size: 25px;
	margin-top: 15px;
}


.nice-select {
	position: relative;
	width: 100%;
}
.nice-select .current {
	background: #00243f;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	height: 50px;
	color: #fff;
	cursor: pointer;
}
.nice-select .current:after {
	content: '';
	display: inline-block;
	border: solid 6px transparent;
	border-top: 8px solid #fff;
	width: 6px; height: 6px;
	box-sizing: border-box;
	margin: 10px 0 0 10px;
}
.nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
}
.nice-select .list {
  background-color: #fff;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  min-width: 100%;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
	position: absolute;
	left: 0; top: calc(100% + 4px);
	width: 100%;
	background: #fff;
	text-align: center;
	padding: 0 5px 20px;
}
.nice-select .option {
	cursor: pointer;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	padding: 5px;
	border-bottom: solid 2px #00243f;
	cursor: pointer;
}
.nice-select .option:hover {
	background: #00243f;
	color: #fff;
}


.currency-table {
	margin-top: 20px;
	text-align: center;
}
.currency-table .hr {
	border-bottom: solid 3px #00243f;
	background: #e5e9eb;
	height: 41px;
}
.currency-head {
	display: flex;
	font-size: 16px;
	color: #264b77;
	padding-bottom: 8px;
	border-bottom: solid 3px #00243f;
}
.currency-row {
	display: flex;
	border-bottom: solid 3px #00243f;
	background: #c8d0d5;
	padding:5px 0;
	vertical-align:middle;
	-ms-align-items: flex-start;
	align-items: flex-start;
}
.currency-row:nth-child(2n) {
	background: #e5e9eb;
}
.currency-cell {
	min-height: 1px;
	height: 32px;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.currency-cell:first-child {
	width: 50px;
}
.currency-cell img {
	width: 100%;
	height: auto;
}
.currency-cell span {
	display: inline;
}
.currency-cell:nth-child(2) {
	width: 108px;
}
.currency-cell:nth-child(3) {
	width: 46px;
}
.currency-cell:nth-child(4) {
	width: 108px;
}
.currency-row .currency-cell:nth-child(2),
.currency-row .currency-cell:nth-child(4) {
	font-size: 32px;
	line-height: 31px;
}
.currency-row .currency-cell:nth-child(3) {
	font-size: 17px;
	color: #000;
	line-height: 32px;
}
.currency-row .currency-cell small {
	font-size: 17px;
	color: #000;
}

.item-tel {
	text-align: center;
	margin-top: 20px;
}
.item-tel a {
	position: relative;
	font-size: 29px;
	font-weight: 700;
	font-family: 'Neo Sans Pro';
	padding-left: 46px;
}
.item-tel a:before {
	content: '';
	display: block;
	background: url(../img/phone.png);
	width: 35px; height: 31px;
	position: absolute;
	left: 0; top: 50%; margin-top: -15px;
}


.slider-b {
	overflow: hidden;
}
.slider-b .item {
	float: left;
	width: 100%;
}
.slider-b .item img {
	width: 100%;
	height: auto;
}


.tabs-menu li {
	margin-bottom: 6px;
}
.tabs-menu a {
	position: relative;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	height: 58px;
	color: #fff;
	background: #00243f;
	font-size: 23px;
	padding: 0 30px 0 90px;
}
.tabs-menu a:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
}
.tabs-menu a.icon-money:before {
	background: url(../img/money.png);
	width: 44px; height: 29px;
	left: 13px; margin-top: -14px;
}
.tabs-menu a.icon-incasso:before {
	background: url(../img/incasso.png);
	width: 55px; height: 36px;
	left: 13px; margin-top: -18px;
}
.tabs-menu a.icon-map:before {
	background: url(../img/map.png);
	width: 63px; height: 43px;
	left: 6px; margin-top: -21px;
}
.tabs-menu a.icon-arrows:before {
	background: url(../img/arrows.png);
	width: 34px; height: 43px;
	left: 20px; margin-top: -21px;
}
.tabs-menu a:after {
	content: '';
	display: inline-block;
	border: solid 6px transparent;
	border-top: 8px solid #ff8000;
	width: 6px; height: 6px;
	box-sizing: border-box;
	position: absolute;
	top: 45%; right: 15px;
	transition: .3s;
}
.tabs-menu a.active {
	color: #ff8000;
}
.tabs-menu a.active:after {
	border-top: 6px solid transparent;
	border-left: 8px solid #ff8000;
	top: 38%;
	right: 11px;
}


.page-content.bg {
	background: rgba(0,36,63,.9);
	color: #fff;
	padding: 0 30px 30px;
	min-height: 840px;
}
.page-content H2 {
	text-align: center;
	font-size: 25px;
	text-transform: uppercase;
	font-weight: 400;
	padding-top: 12px;
}
.page-content p {
	font-size: 22px;
	margin-top: 20px;
}


.list a{
	cursor:pointer;
}

.offices-box {
	height: 670px;
	background: #fff;
	margin-right: 2px;
}
.offices-item .title {
	position: relative;
	padding: 6px 10px 9px 40px;
	background: #9ca5ac;
	font-size: 22px;
}
.offices-item .title:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	background: url(../img/save.png);
	width: 9px; height: 13px;
	background-size: 100% 100%;
	left: 10px; margin-top: -6px;
}
.offices-item p {
	font-size: 18px;
	margin: 0;
	padding: 5px;
}
.offices-item p:nth-child(odd) {
	background: #e6e6e6;
}




#map {
	height: 720px; width: 100%;
}








/* footer
------------------------------------------------ */
.site-footer {
	text-align: center;
	padding: 60px 0 10px;
}
.footer-info {
	font-size: 1em;
	color: #fff;
  -webkit-text-stroke: 1px rgba(0,36,63,.45);
}
/* end footer */


/* modal
------------------------------------------------ */
.modal {
 	position: relative;
 	margin: 0 auto;
 	max-width: 550px;
 	background: #fff;
}
.modal .head {
	background: #00243f;
	padding: 10px;
	color: #fff;
	font-size: 27px;
}
.modal .wrapper {
	max-height: 500px;
	overflow-y: scroll;
	padding: 15px 10px 10px;
}
.modal .wrapper p {
	font-size: 19px;
	margin-bottom: 15px;
}
/* end modal */
