/*------------------------------------------------------------------
[Table of contents]

1. CSS Reset
2. Global variables
3. Header (inner page) and (logo/ navigation bar and menu) / header, nav.navbar
4. Homepage top blocks 
5. Services Block / .services
6. Tariffs Block / .tariffs
7. Download App Block / #download
8. Text block with large car on the right / #car-block
9. Testimonials / #testimonials
10. Banners homepage / #homepage-banners
11. Partners block / #partners
12. Bottom block with address/menu/form/mini-gallery goes before footer
13. Footer and copyrights
14. Widgets
15. Contacts inner page width full-width map
16. Typography (for text page) / .text-page
17. Blog posts and blog inner page
18. Gallery
19. Shortcodes
20. Forms (buttons/radio/inputs)
21. Pagination
22. Common classes (hover/transition effect/etc)

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Fonts]

Font-family: 'Open Sane', sans-serif;
Font-family: 'Fjalla', sans-serif;

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Color codes]

	Black (headers, btns, backgrounds): #1F1F1F
	Yellow (headers, hrefs, backgrounds): #1b5d97
	Gray-darker:	#868686;
	Gray-dark:		#777;
	Gray:			#CCCCCC;
	Gray-light:     #E6E6E6;
	Gray-lighter:	#F5F5F5;
*/
.black {
  color: #1F1F1F;
}
.white {
  color: #fff;
}
.yellow {
  color: #1b5d97;
}
.red {
  color: #1b5d97;
}
/*
  1. CSS Reset
*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/* 2. Global classes */
*:not(#fancybox-lock) {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  overflow-y: scroll;
}

body {
  color: #1F1F1F;
  background: #fff;
}
body,
div,
table {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6em;
}
a {
  color: #1F1F1F;
  text-decoration: none;
}
a:hover {
  color: #1F1F1F;
  text-decoration: none;
}
a:focus {
  outline: 0 none;
  text-decoration: none;
}
a img {
  border: 0;
  outline: 0 none;
}
.form-control:focus,
input:focus {
  outline: none;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
.margin-top-0 {
  margin-top: 0 !important;
}
.margin-bottom-0 {
  margin-bottom: 0 !important;
}
.margin-0 {
  margin: 0 !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1 {
  font-weight: 500;
  text-transform: uppercase;
  /*    font-family: 'Fjalla One', sans-serif;*/
  font-family: 'Fira Sans Condensed', sans-serif;
}
h1.yellow,
h2.yellow,
h3.yellow,
h4.yellow,
h5.yellow,
h6.yellow,
.h1.yellow {
  color: #1b5d97;
}
h1,
.h1 {
  margin: 0 0 20px;
  font-size: 48px;
}
@media (max-width: 768px) {
  h1,
  .h1 {
    font-size: 40px;
  }
}
@media (max-width: 479px) {
  h1,
  .h1 {
    font-size: 34px;
  }
}
h2 {
  margin: 30px 0 20px;
  font-size: 36px;
}
h2.spanned {
  font-size: 48px;
  margin: 0 0 25px;
}
h2.spanned span {
  font-size: 24px;
  color: #1b5d97;
  margin-right: 24px;
  vertical-align: middle;
}
h3 {
  margin: 30px 0 20px;
  font-size: 30px;
}
h4 {
  margin: 60px 0 20px;
  font-size: 22px;
}
h5,
h6 {
  margin: 60px 0 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
}
h4 + h3,
h4 + h2 {
  margin: -16px 0 0 0 !important;
}

.text-page h4, .text-page h5 {margin-top: 20px;}

section {
  overflow: hidden;
}
.inner {
  margin-bottom: 75px;
}
@media (min-width: 991px) {
  p.short-width {
    width: 60%;
    margin-bottom: 70px;
  }
}
/*
	3. Header, navigation bar and menu
*/
header.page-header {
  background: #2C2C2C;
  padding: 35px 0 50px 0;
  text-align: center;
  overflow: hidden;
  margin-top: 124px;
  margin-bottom: 25px;
  color: #fff;
  position: relative;
}
@media (min-width: 768px) {
  header.page-header:after {
    background: rgba(51, 51, 51, 0.59) url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4RpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMjNkYTEyYy1jOGMyLTcwNDItODg2Ny0xZmZhZWI3MmViOTMiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QkFGM0ExREExQTA3MTFFN0E4OEU4RkY3Q0VEQzAyRTkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QkFGM0ExRDkxQTA3MTFFN0E4OEU4RkY3Q0VEQzAyRTkiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6YzJkM2FhYWItMDUyZi05NDQ4LTlhM2UtMjk1OTkzMDQyOGI2IiBzdFJlZjpkb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6ZTA5ZDg5ZmQtMDA2NS0xMWU3LThiMWMtZTE0MmJhNWM4NzA3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+vyDTwQAAABlJREFUeNpiYkCA/0wwBhAzMsEYIBGAAAMANqADBoMGgUwAAAAASUVORK5CYII=");
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
}
header.page-header .container {
  position: relative;
  z-index: 2;
}
header.page-header.menu-hidden {
  padding-top: 50px;
}
header.page-header .bread {
  text-align: center;
  list-style: none;
  margin: 0px 0 5px 0;
  padding: 0;
}
header.page-header .bread li {
  display: inline-block;
  margin: 0 0 0 0px;
  color: #1b5d97;
  font-size: 14px;
}
header.page-header .bread li a {
  color: #CCCCCC;
}
header.page-header .bread li a:hover {
  color: #1b5d97;
}
header.page-header .bread li.divider {
  color: #1b5d97;
}
@media (max-width: 768px) {
  header.page-header .bread {
    display: none;
  }
}
@media (max-width: 768px) {
  header.page-header {
    background-image: none !important;
    height: auto;
    padding: 35px 0;
  }
  header.page-header h1 {
    margin: 0;
  }
}
header.page-header h1 {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}
#top-bar {
  background: #1b5d97;
  padding: 4px 0 0 0;
  overflow: hidden;
    height: 42px;
  color: #fff;

  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}
#top-bar .contacts {
  margin: 0 0 0 -40px;
}
#top-bar .contacts div {
  /*    font-family: 'Fjalla One', sans-serif;*/
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 14px;
  float: left;
  text-transform: uppercase;
  margin: 0 0 0 20px;
}
#top-bar .contacts div span {
  font-size: 18px;
  margin-right: 5px;
}
#top-bar .contacts div .fa-phone {
  vertical-align: middle;
}
@media (min-width: 1200px) {
  #top-bar .btn.pull-right {
    margin-top: -30px;
  }
}
@media (max-width: 1199px) {
  #top-bar .btn.pull-right {
    margin-top: -3px;
  }
}
.nav-wrapper {
  background: #2C2C2C;
  height: 82px;
  top: 42px;
}

.breadcrumbs{margin-bottom:15px;}
.breadcrumbs a{font-size:14px !important;color:#ffffff;}
.breadcrumbs a:hover{color:#1b5d97;text-decoration: underline;}
.breadcrumbs span{font-size:14px !important;}
nav.navbar {
	position:relative;z-index:10;
  background: rgba(31, 31, 31, 0.6);
  border: 0;
  transition: background .4s ease;
  margin: 0;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  /*	overflow: hidden;*/
}
nav.navbar.dark {
  background: rgba(31, 31, 31, 0.94);
}
@media (max-width: 991px) {
  nav.navbar {
    height: 82px;
  }
}
nav.navbar.navbar-fixed-top {
  margin-top: 41px;
}
nav.navbar #navbar {
  position: relative;
}
@media (min-width: 1200px) {
  nav.navbar #navbar ul.navbar-nav {
    margin-left: 220px;
    width: 780px;
    z-index: 10000;
  }
  nav.navbar #navbar ul.navbar-nav li,
  nav.navbar #navbar ul.navbar-nav a {
    color: #fff;
    padding: 6px 0 26px;
  }
  nav.navbar #navbar ul.navbar-nav a {
    padding: 24px 10px 4px;
    color: #CCCCCC;
    text-transform: uppercase;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 14px;
  }
  nav.navbar #navbar ul.navbar-nav a:hover {
    background: transparent;
    color: #1b5d97;
  }
  nav.navbar #navbar ul.navbar-nav a:hover:before {
    visibility: visible;
    opacity: 1;
    transition-delay: .1s;
    left: 50%;
  }
  nav.navbar #navbar ul.navbar-nav a:focus {
    background: transparent;
  }
  nav.navbar #navbar ul.navbar-nav > li > a:before {
    zoom: 1;
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    content: "";
    position: absolute;
    width: 26px;
    left: 0%;
    margin-left: -13px;
    bottom: -4px;
    height: 4px;
    background: url("/template/images/line-bottom.png") no-repeat;
  }
  nav.navbar #navbar ul.navbar-nav li.current_page_item > a {
    color: #1b5d97;
    cursor: default;
  }
  nav.navbar #navbar ul.navbar-nav li.current_page_item > a:before {
    visibility: visible;
    zoom: 1;
    filter: alpha(opacity=100);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    left: 50%;
  }
  nav.navbar #navbar ul.navbar-nav .hasSub {
    padding-right: 6px;
  }
  nav.navbar #navbar ul.navbar-nav .hasSub.current_page_item > a {
    /*padding-right: 25px;*/
  }
  nav.navbar #navbar ul.navbar-nav .hasSub.current_page_item > a:before {
    /*margin-left: -18px;*/
  }
  nav.navbar #navbar ul.navbar-nav .hasSub > a {
    vertical-align: middle;
  }
  nav.navbar #navbar ul.navbar-nav .hasSub > a:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 11pt;
    vertical-align: middle;
    content: "\f105";
    margin: 3px 0 0 6px;
    position: absolute;
    color: #1b5d97;
  }
  nav.navbar #navbar ul.navbar-nav .hasSub:hover > ul {
    visibility: visible;
    opacity: 1;
    transition-delay: .1s;
    margin-left: -125px;
  }
  nav.navbar #navbar ul.navbar-nav .hasSub:last-child:hover > ul {
    visibility: visible;
    opacity: 1;
    transition-delay: .1s;
    margin-left: -300px;
  }
  nav.navbar #navbar ul.navbar-nav .hasSub:hover > ul li:hover ul {
    margin-right: -125px;
    margin-left: 0;
  }
  nav.navbar #navbar ul.navbar-nav .hasSub:hover > a {
    color: #1b5d97;
  }
  nav.navbar #navbar ul.navbar-nav .hasSub:hover > a:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f107";
    margin-top: 3px;
    margin-left: 6px;
    color: #1b5d97;
  }
  nav.navbar #navbar ul.navbar-nav ul {
    zoom: 1;
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
  }
  nav.navbar #navbar ul.navbar-nav ul.sub-menu {
    background: #fff;
    position: absolute;
    width: 350px;
    /*					margin: 28px 0 0 -186px;*/
    margin: 26px 0 0 0;
    left: 50%;
    margin-left: -250px;
    list-style: none;
    padding: 0px 0px;
    z-index: 10000;
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  }
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li {
    color: #1F1F1F;
    margin: 0;
    padding: 0;
    position: relative;
  }
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li:last-child {
    border-bottom: none;
  }
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li a {
    color: #1F1F1F;
    padding: 5px 30px;
    font-size: 11pt;
    display: block;
    text-transform: none;
  }
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li a:after {
    margin-top: 5px;
  }
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li.current_page_item > a {
    color: #1b5d97;
  }
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li:hover {
    background: #1b5d97;
    color: #1F1F1F;
  }
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li:hover a {
    color: #fff;
  }
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li:hover a:after {
    color: #1F1F1F;
    margin-top: 5px;
  }
  nav.navbar #navbar ul.navbar-nav ul.sub-menu ul {
    zoom: 1;
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    position: absolute;
    left: 250px !important;
    top: 0 !important;
    margin-top: 0;
    margin-left: -86px;
    margin-right: -86px;
    background: #1b5d97;
  }
  nav.navbar #navbar ul.navbar-nav ul.sub-menu ul a:hover {
    color: #fff;
  }
  nav.navbar #navbar #search {
    display: inline-block;
    float: right;
    text-align: right;
    width: 50px;
    margin: 0px 0 0 0px;
    padding: 26px 0 0 0;
    position: relative;
    transition: all .3s ease;
    z-index: 1000;
  }
  nav.navbar #navbar #search.show {
    width: 245px;
  }
  nav.navbar #navbar #search.show .input-div {
    width: 200px;
    transition: all .3s ease;
  }
  nav.navbar #navbar #search .input-div {
    display: inline-block;
    vertical-align: middle;
    width: 0px;
    margin: 0px 35px 0 0;
    overflow: hidden;
    transition: all .3s ease;
  }
  nav.navbar #navbar #search .input-div input {
    display: inline-block;
    -webkit-border-top-left-radius: 40px;
    -moz-border-radius-topleft: 40px;
    border-top-left-radius: 40px;
    -webkit-border-bottom-left-radius: 40px;
    -webkit-background-clip: padding-box;
    -moz-border-radius-bottomleft: 40px;
    -moz-background-clip: padding;
    border-bottom-left-radius: 40px;
    background-clip: padding-box;
    font-size: 10pt;
    vertical-align: middle;
    border: none;
    height: 36px;
    width: 200px;
    padding: 0 40px 0 20px;
  }
  nav.navbar #navbar #search .search-icon {
    display: inline-block;
    text-decoration: none;
    background: #1b5d97;
    color: #F5F5F5;
    -webkit-border-radius: 50%;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 50%;
    -moz-background-clip: padding;
    border-radius: 50%;
    background-clip: padding-box;
    vertical-align: middle;
    padding: 11px;
    margin: 0 0 0 -55px;
    height: 36px;
    font-size: 11pt;
  }
  nav.navbar #navbar #search .search-icon:hover {
    /*				background: @white;*/
    color: #1b5d97;
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  nav.navbar #navbar ul.navbar-nav {

  }
}
@media (min-width: 1200px) and (max-width: 1199px) {
  nav.navbar #navbar #search {
    position: absolute;
    right: 0;
  }
}


nav.navbar .logo {
  position: absolute;
  display: block;
  width: 220px;
  padding: 8px 0 8px 0;
  font-size: 24px;
  z-index: 1001;
  color: #1b5d97;
  text-align: center;
  font-weight: bold;
}
nav.navbar .logo .logo-inner {display: flex; flex-wrap: wrap; justify-content: left;}
nav.navbar .logo .logo-text {margin: 13px 0 0 0; text-align: left;}
nav.navbar .logo p {margin: 0; padding: 0; color: #ffffff;}
nav.navbar .logo p:first-child {font-size: 20px; line-height: 20px; margin: 0 0 4px 0; text-transform: uppercase;}
nav.navbar .logo p:last-child {font-size: 12px; line-height: 12px; font-weight: normal;}
nav.navbar .logo img {width: 66px; margin: 0 10px 0 0;}

nav.navbar .navbar-toggle {
  background-color: transparent;
  background-image: none;
  height: 45px;
  width: 63px;
  border-radius: 4px;
  margin: 14px 15px;
  padding: 2px 10px 4px;
  position: relative;
}
nav.navbar .navbar-toggle .icon-bar {
  background: #fff;
  height: 4px;
  width: 100%;
  margin: 7px 0;
  transition: all 0.2s;
}
nav.navbar .navbar-toggle .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
nav.navbar .navbar-toggle .middle-bar {
  opacity: 0;
}
nav.navbar .navbar-toggle .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}
nav.navbar .navbar-toggle.collapsed .top-bar {
  transform: rotate(0);
}
nav.navbar .navbar-toggle.collapsed .middle-bar {
  opacity: 1;
}
nav.navbar .navbar-toggle.collapsed .bottom-bar {
  transform: rotate(0);
}

@media (max-width: 1199px) {
  nav.navbar #navbar {
    margin: 0px 0  0 !important;
    padding: 0px 0 0px 0 !important;
    bottom: 0px;
    top: 0px;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 100002;
    height: 100%;
    width: 100%;
    background: #1b5d97;
    max-height: 100% !important;
    display: block;
    overflow: scroll;
    min-width: 0;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: all .3s ease;
  }
  nav.navbar #navbar.collapse {
    left: -100%;
  }
  nav.navbar #navbar .navbar-toggle .icon-bar {
    background: #fff;
  }
  nav.navbar #navbar .navbar-toggle:focus .icon-bar,
  nav.navbar #navbar .navbar-toggle:active .icon-bar,
  nav.navbar #navbar .navbar-toggle:hover .icon-bar {
    background: #1F1F1F;
  }
  nav.navbar #search {
    display: none;
  }
  nav.navbar .logo {
    margin-left: 15px;
  }
  nav.navbar ul.navbar-nav {
    background: #1b5d97;
    width: 100%;
    padding: 70px 0px 20px 0;
    margin-top: 0;
  }
  nav.navbar ul.navbar-nav a {
    font-size: 20pt;
    font-weight: 900;
    padding: 20px 40px;
    color: #fff;
  }
  nav.navbar ul.navbar-nav a:focus {
    background: transparent;
  }
  nav.navbar ul.navbar-nav li.current_page_item > a {
    color: #fff;
  }
  nav.navbar ul.navbar-nav li.current_page_item ul li.current_page_item a {
    color: #fff;
  }
  nav.navbar ul.navbar-nav > li.hasSub:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18pt;
    vertical-align: middle;
    content: "\f0da";
    margin: 4px 0 0 8px;
    right: 25px;
    top: 15px;
    position: absolute;
    color: #fff;
  }
  nav.navbar ul.navbar-nav > li.show-child ul {
    display: block !important;
  }
  nav.navbar ul.navbar-nav ul {
    padding: 5px 30px 25px;
    list-style: none;
    overflow: hidden;
    transform-origin: top;
    transform: scaleY(0);
    transition: all .3s ease;
    position: absolute;
  }
  nav.navbar ul.navbar-nav ul.show {
    transform: scaleY(1);
    position: relative;
  }
  nav.navbar ul.navbar-nav ul a {
    padding: 12px 25px;
    font-size: 16pt;
    display: block;
    color: #1F1F1F;
  }
  nav.navbar.affix #navbar {
    margin: 69px 0  0 !important;
  }
}

.navbar-dark-transparent .navbar {
  background: rgba(0, 0, 0, 0.2);
}
.navbar-dark-transparent .navbar.dark {
  background: rgba(0, 0, 0, 0.85);
}
.navbar-gray-yellow-transparent .navbar {
  background: rgba(0, 0, 0, 0.6);
}
.navbar-gray-yellow-transparent .navbar.dark {
  background: rgba(0, 0, 0, 0.85);
}
.navbar-gray-yellow-transparent .navbar #navbar {
  transition: all .3s ease;
  border-bottom: 4px solid #1b5d97;
}
.navbar-gray-yellow-transparent .navbar.dark #navbar {
  border-bottom: none;
}
/*
	4. Homepage top blocks
*/
@keyframes zoomin {
  from {
    /*    	.opacity(0);*/
    transform: scale(0, 0) translateX(0px);
  }
  to {
    /*    	.opacity(1);*/
    transform: scale(1, 1) translateX(50%);
  }
}
@keyframes splash {
  0% {
    zoom: 1;
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
  1.5% {
    zoom: 1;
    filter: alpha(opacity=100);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }
  3% {
    zoom: 1;
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
  4.5% {
    zoom: 1;
    filter: alpha(opacity=100);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }
  6% {
    zoom: 1;
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
}
#homepage-block-1 {
  background: #1F1F1F;
  background-repeat: no-repeat;
  background-position: 50% 90%;
  height: 710px;
  position: relative;
}
#homepage-block-1:after {
  background: rgba(16, 16, 16, 0.73) url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4RpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMjNkYTEyYy1jOGMyLTcwNDItODg2Ny0xZmZhZWI3MmViOTMiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QkFGM0ExREExQTA3MTFFN0E4OEU4RkY3Q0VEQzAyRTkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QkFGM0ExRDkxQTA3MTFFN0E4OEU4RkY3Q0VEQzAyRTkiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6YzJkM2FhYWItMDUyZi05NDQ4LTlhM2UtMjk1OTkzMDQyOGI2IiBzdFJlZjpkb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6ZTA5ZDg5ZmQtMDA2NS0xMWU3LThiMWMtZTE0MmJhNWM4NzA3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+vyDTwQAAABlJREFUeNpiYkCA/0wwBhAzMsEYIBGAAAMANqADBoMGgUwAAAAASUVORK5CYII=");
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  #homepage-block-1 .content {
    padding-top: 180px;
  }
}
@media (max-width: 991px) {
  #homepage-block-1 {
    height: auto;
  }
  #homepage-block-1 .content {
    padding: 100px 0 0 0;
  }
}
#homepage-block-1 h4 {
  margin: 0;
  color: #F5F5F5;
}
#homepage-block-1 .phone {
  /*    font-family: 'Fjalla One', sans-serif;*/
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 60px;
  margin: 10px 0 50px 0;
  color: #1b5d97;
  line-height: 1em;
}
#homepage-block-1 #large-image {
  position: relative;
}
@media (max-width: 991px) {
  #homepage-block-1 #large-image {
    display: none;
  }
}
#homepage-block-1 #large-image .car {
  position: relative;
  transform: scale(0, 0) translateX(0px);
  margin-left: -100px;
  animation: zoomin 1s normal forwards linear;
  z-index: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  #homepage-block-1 #large-image .car {
    margin-left: -240px;
  }
}
#homepage-block-1 #large-image .splash {
  zoom: 1;
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 143px;
  right: 100px;
  animation: splash 10s normal 1.5s forwards infinite linear;
}
@media (min-width: 1200px) {
  #homepage-block-1 #large-image .splash {
    right: 190px;
  }
}
#homepage-block-1 .get-icon {
  display: block;
  position: relative;
  text-align: center;
  z-index: -1;
}
#homepage-block-1 .get-icon .fa {
  color: #CCCCCC;
  font-size: 180px;
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  z-index: -1;
  zoom: 1;
  filter: alpha(opacity=5);
  -webkit-opacity: 0.05;
  -moz-opacity: 0.05;
  opacity: 0.05;
}
#homepage-block-1 .container {
  z-index: 2;
  position: relative;
}
#homepage-block-1 .navbar {
  /*		padding: 0 30px;*/
}
#homepage-block-1 .navbar,
#homepage-block-1 .nav-wrapper {
  height: auto;
  background: transparent !important;
}
#homepage-block-1 .navbar .container,
#homepage-block-1 .nav-wrapper .container {
  z-index: 3;
}
#homepage-block-1 .navbar-toggle {
  margin-top: 30px 15px 0 0 !important;
}
@media (min-width: 1200px) {
  #homepage-block-1 .navbar,
  #homepage-block-1 .nav-wrapper {
    height: auto;
    background: transparent !important;
    margin: 0;
    z-index: 10000;
    position: relative;
  }
  #homepage-block-1 .navbar .logo,
  #homepage-block-1 .nav-wrapper .logo {
    position: relative;
    text-align: center;
    margin: 18px 0 12px;
  }
  #homepage-block-1 .navbar .navbar-nav,
  #homepage-block-1 .nav-wrapper .navbar-nav {
    margin: 0 auto 60px;
    text-align: center;
    float: none !important;
    display: table;
    width: 100%;
  }
  #homepage-block-1 .navbar .navbar-nav ul,
  #homepage-block-1 .nav-wrapper .navbar-nav ul {
    text-align: left;
  }
  #homepage-block-1 .navbar .navbar-nav > li,
  #homepage-block-1 .nav-wrapper .navbar-nav > li {
    display: table-cell;
    text-align: center;
    float: none !important;
  }
  #homepage-block-1 .navbar .navbar-nav > li > a,
  #homepage-block-1 .nav-wrapper .navbar-nav > li > a {
    font-size: 16px !important;
    padding: 0 !important;
  }
  #homepage-block-1 .navbar .navbar-nav > li > a:before,
  #homepage-block-1 .nav-wrapper .navbar-nav > li > a:before {
    bottom: -8px !important;
    margin-left: -13px !important;
  }
}
#homepage-block-2 {
  background: #1F1F1F;
  background-repeat: no-repeat;
  background-position: 50% 90%;
  height: 660px;
  margin-top: -84px;
  padding-top: 108px;
  position: relative;
}
#homepage-block-2:after {

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media (max-width: 991px) {
  #homepage-block-2 {
    height: auto;
    padding-top: 70px;
  }
}
#homepage-block-2 h2 {
  color: #1b5d97;
}
#homepage-block-2 .container {
  z-index: 2;
  position: relative;
  text-align: center;
}
#homepage-block-2 .forms {
  margin-top: 40px;
  margin-bottom: 5px;
  margin-left: 300px;
}
@media (max-width: 991px) {
  #homepage-block-2 .forms {
    margin-top: 10px;
  }
}
#homepage-block-2 #large-image {
  margin-top: 0;
  position: relative;
}
@media (max-width: 991px) {
  #homepage-block-2 #large-image {
    display: none;
  }
}
#homepage-block-2 #large-image .dialog {
  position: absolute;
  right: 150px;
  top: -10px;
  background: url("../images/_dialog.png") 50% 50% no-repeat;
  width: 178px;
  height: 207px;
}
#homepage-block-2 #large-image .dialog h4 {
  margin: 0 0 15px;
  line-height: 2em;
  font-size: 18px;
}
#homepage-block-2 #large-image .dialog .fa {
  color: #1b5d97;
  font-size: 30px;
  padding: 30px 0 0 0;
}
.homepage-block-yellow-2 {
  background: #1b5d97;
  height: 258px;
}
@media (max-width: 991px) {
  .homepage-block-yellow-2 {
    display: none;
  }
}
#homepage-block-3 {
  background: #1F1F1F;
  background-repeat: no-repeat;
  background-position: 50% 90%;
  height: 820px;
  margin-top: -84px;
  padding-top: 108px;
  position: relative;
}
#homepage-block-3:after {
  background: rgba(16, 16, 16, 0.45);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
#homepage-block-3 h2 {
  color: #1b5d97;
}
@media (max-width: 991px) {
  #homepage-block-3 {
    padding: 20px 0 0 0;
    height: auto !important;
  }
}
#homepage-block-3 .container {
  z-index: 2;
  position: relative;
  text-align: center;
}
#homepage-block-3 .form-taxi-short h3 {
  margin: 0px 0 30px;
}
@media (max-width: 991px) {
  #homepage-block-3 .form-taxi-short {
    margin-bottom: 50px;
  }
}
#homepage-block-3 .form-taxi-short form {
  margin: 110px 0 0 -15px;
  background: #F5F5F5;
}
@media (max-width: 991px) {
  #homepage-block-3 .form-taxi-short form {
    margin: 110px auto 0 !important;
  }
}
#homepage-block-3 .form-taxi-short form a:hover,
#homepage-block-3 .form-taxi-short form a.active {
  background-color: #1b5d97;
}
.homepage-block-yellow-3 {
  padding: 15px 0 10px 0;
  background: #1b5d97;
}
.homepage-block-yellow-3 h2,
.homepage-block-yellow-3 h3,
.homepage-block-yellow-3 h4 {
  margin: 0;
  vertical-align: middle;
  padding-top: 3px;
}
.homepage-block-yellow-3 h4 {
  font-size: 16px;
}
.homepage-block-yellow-3 .fa {
  vertical-align: middle;
  margin-right: 10px;
  background: #F5F5F5;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 24px;
  text-align: center;
  display: inline-block;
}
@media (max-width: 768px) {
  .homepage-block-yellow-3 .fa {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    margin-right: 5px;
  }
}
.homepage-block-yellow-3 .btn {
  margin-top: -5px;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .homepage-block-yellow-3 h4 {
    font-size: 16px;
  }
  .homepage-block-yellow-3 .row > div {
    margin-bottom: 15px;
  }
  .homepage-block-yellow-3 .btn {
    margin: 0px auto 0 !important;
    float: none !important;
    text-align: center;
  }
}
@media (max-width: 991px) {
  .homepage-block-yellow-3 {
    text-align: center;
  }
  .homepage-block-yellow-3 .btn {
    margin: 40px auto 0 !important;
  }
}
@media (max-width: 479px) {
  .homepage-block-yellow-3 .btn {
    clear: both;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 0.5em;
    margin-bottom: 1em;
    text-align: center;
  }
}
.form-with-labels,
.forms {
  margin: 0 -3px;
}
.form-with-labels > div,
.forms > div {
  padding-left: 3px;
  padding-right: 3px;
  position: relative;
}
.form-with-labels > div span,
.forms > div span {
  color: #CCCCCC;
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
}
.form-with-labels > div span.fa-car,
.forms > div span.fa-car,
.form-with-labels > div span.fa-calendar,
.forms > div span.fa-calendar,
.form-with-labels > div span.fa-phone,
.forms > div span.fa-phone {
  font-size: 18px;
  top: 16px;
}
.menu-types {
  text-align: center;
  padding-bottom: 18px;
}
.menu-types a {
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  display: inline-block;
  vertical-align: middle;
  /*    font-family: 'Fjalla One', sans-serif;*/
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #1F1F1F;
  width: 115px;
  height: 72px;
  background-repeat: no-repeat;
  background-position: 50% 36%;
  text-align: center;
  padding: 42px 0 10px 0;
  margin: 0 20px;
  transition: background .4s ease;
}
.menu-types a.red {
  color: #9F340A;
}
.menu-types a.type-1 {
  background-image: url("../images/_icon-car-1.png");
}
.menu-types a.type-2 {
  background-image: url("../images/_icon-car-2.png");
}
.menu-types a.type-3 {
  background-image: url("../images/_icon-car-3.png");
}
.menu-types a.type-4 {
  background-image: url("../images/_icon-car-4.png");
}
.menu-types a:hover,
.menu-types a.active {
  background-color: #FFD555;
}
@media (max-width: 479px) {
  .menu-types a {
    margin: 0 0px;
  }
}
.taxi-form-full {
  padding: 150px 0 70px 0;
  background: #1b5d97;
}
.taxi-form-full .btn-red {
  margin-top: 5px;
}
@media (max-width: 991px) {
  .taxi-form-full {
    padding: 10px 0 20px 0;
  }
}
.form-taxi-short {
  margin-bottom: 90px;
}
.form-taxi-short .menu-types {
  margin: 0 0 0 -12px;
}
.form-taxi-short .menu-types a {
  margin: 0 0 0 12px;
}
.form-taxi-short .menu-types a:hover,
.form-taxi-short .menu-types a.active {
  background-color: #fff;
}
.form-taxi-short .form-label {
  text-align: center;
  margin: 40px 0 15px;
}
.form-taxi-short form {
  background: #1b5d97;
  -webkit-border-radius: 8px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 8px;
  -moz-background-clip: padding;
  border-radius: 8px;
  background-clip: padding-box;
  max-width: 570px;
  margin: 0 auto;
  padding: 45px 30px 30px;
}
/*
	5. Services Block
*/
.services {
  padding: 0px 0 40px;
  text-align: center;
}
.services h2,
.services h4 {
  text-align: center;
}
.services h2 {
  margin-bottom: 40px !important;
}
@media (max-width: 991px) {
  .services {
    padding-bottom: 20px;
  }
}
.services .image {
  height: 70px;
  line-height: 70px;
}
.services p {
  font-size: 14px;
  line-height: 1.6em;

}
.services h5 {
  margin: 15px 0 20px;
}
.services .row > div {
  padding-left: 35px;
  padding-right: 35px;
}
@media (min-width: 991px) {
  .services .row > div {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAICAYAAAA4GpVBAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NjAzMjRFMTcxOUFEMTFFNzlFOUU4MDZBQTU3MTk2MjkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NjAzMjRFMTgxOUFEMTFFNzlFOUU4MDZBQTU3MTk2MjkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2MDMyNEUxNTE5QUQxMUU3OUU5RTgwNkFBNTcxOTYyOSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo2MDMyNEUxNjE5QUQxMUU3OUU5RTgwNkFBNTcxOTYyOSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PqYMjK4AAAAgSURBVHjaYgiNz/ZlYgACELEZzoKIMfz//x/MZQAIMABlagV2QBb7UQAAAABJRU5ErkJggg==") 100% 0% repeat-y;
  }
}
@media (max-width: 991px) {
  .services .row > div {
    margin-bottom: 60px;
  }
}
/*
	6. Tariffs Block
*/
.tariffs {
  padding: 16px 0 50px;
  background-color: #F5F5F5;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.tariffs h2,
.tariffs h4 {
  text-align: center;
}
.tariffs h2 {
  margin-bottom: 30px !important;
}
@media (max-width: 991px) {
  .tariffs {
    padding: 16px 0 50px;
    background-image: none !important;
  }
  .tariffs h2 {
    color: #1F1F1F;
  }
}
.tariffs .item {
  background: #fff;
  text-align: center;
  padding: 30px 30px 20px;
  font-size: 14px;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  position: relative;
  transition: all .3s ease;
}
@media (max-width: 991px) {
  .tariffs .item {
    margin-bottom: 30px;
  }
}
.tariffs .item:hover {
  -webkit-box-shadow: 0 0px 15px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.15);
}
.tariffs .item h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  margin: 0px 0 20px;
  text-align: center;
}
.tariffs .item .price {
  font-weight: 700;
  font-size: 38px;
}
.tariffs .item .price span {
  font-size: 24px;
}
.tariffs .item.vip {
  border: 2px solid #1b5d97;
}
.tariffs .item.vip:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  content: "\f005";
  position: absolute;
  text-align: right;
  padding: 7px 7px 0 0;
  top: 0;
  right: 0;
  display: block;
  width: 55px;
  height: 55px;
  z-index: 5;
  font-size: 18px;
}
.tariffs .item.vip:after {
  top: 0;
  right: 0;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 55px 55px 0;
  border-color: transparent #1b5d97 transparent;
}
.tariffs.bg-white {
  background: #fff;
}
.tariffs.bg-white h2 {
  text-align: left;
}
.tariffs.bg-white .item {
  border: 1px solid #CCCCCC;
}
/*
	7. Download App Block
*/
#download {
  padding: 30px 0 0px;
  /*	height: 625px;*/
  position: relative;
  background-color: #1F1F1F;
  background-position: 50% 50%;
  color: #F5F5F5;
}
#download h2,
#download h4 {
  text-align: center;
}
#download h2 {
  color: #fff;
}
#download p {
  font-size: 14px;
}
@media (min-width: 991px) {
  #download {
    min-height: 625px;
  }
}
#download:after {
  background: rgba(0, 0, 0, 0.73);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
#download .container {
  z-index: 2;
  position: relative;
}
#download .mob {
  position: absolute;
  /*		bottom: 0;*/
  left: 50%;
  margin-left: -147px;
  margin-bottom: -10px;
  right: 0;
  width: 100%;
  text-align: center;
  padding: 240px 0 0 0;
  background: url("../images/_mobile.png") no-repeat 50% 100%;
  width: 294px;
  height: 402px;
}
#download .mob a {
  padding-bottom: 16px;
  display: block;
}
@media (max-width: 991px) {
  #download .mob {
    position: relative;
  }
}
#download .items {
  padding-top: 67px;
}
@media (max-width: 991px) {
  #download .items {
    padding-top: 0;
  }
}
#download .items > div {
  margin-bottom: 40px;
}
#download .items h5 {
  margin: 10px 0 10px;
  text-align: left;
}
#download .items .num {
  background: #1b5d97;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  display: block;
  width: 40px;
  height: 40px;
  padding-left: 3px;
  line-height: 39px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
#download .items.items-right {
  text-align: right;
}
#download .items.items-right h5 {
  text-align: right;
}
@media (max-width: 991px) {
  #download .items.items-right {
    text-align: left;
  }
  #download .items.items-right h5 {
    text-align: left;
  }
}
/*
	8. Text block with large car on the right
*/
@keyframes slideleft {
  from {
    transform: translate3d(845px, 0px, 0px);
  }
  to {
    transform: translate3d(0px, 0px, 0px);
  }
}
.car-block {padding: 5px 0 160px; background-position: 100% 50%; background-repeat: no-repeat; position: relative;}
.car-block h2, .car-block h4 {text-align: left;}
@media (max-width: 991px) {
    .car-block {padding: 10px 0 50px;}
}
.car-block .car-right {position: absolute; right: 0; top: 50%; max-width: 50%; overflow: hidden; margin-top: -225px;}
.car-block .car-right img {position: relative; transform: translate3d(845px, 0px, 0px);}
.car-block .car-right img.slideleft {animation: slideleft 1s normal forwards linear;}
@media (max-width: 991px) {
  .car-block .car-right {display: none;}
}
.car-block h2 {margin-bottom: 40px !important;}
.car-block ul {margin-bottom: 50px;}
@media (min-width: 992px) and (max-width: 1199px) {
  .car-block {background-position: 200% 50%;}
}
/*
	9. Testimonials
*/
#testimonials {
  padding: 0px 0 100px;
  background: #F5F5F5;
}
#testimonials h2,
#testimonials h4 {
  text-align: center;
}
#testimonials h2 {
  margin-bottom: 30px !important;
}
#testimonials hr {
  margin-top: 0;
  margin-bottom: 30px;
}
#testimonials .inner {
  border-color: transparent !important;
}
#testimonials .arrows {
  text-align: center;
}
#testimonials .arrow-left,
#testimonials .arrow-right {
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  transition: background .4s ease;
  background: #1b5d97;
  color: #fff;
  margin: 0 1px;
  padding: 7px 12px;
  font-size: 18px;
}
#testimonials .arrow-left.swiper-button-disabled,
#testimonials .arrow-right.swiper-button-disabled {
  background: #CCCCCC;
  cursor: default;
}
#testimonials .arrow-left:not(.swiper-button-disabled):hover,
#testimonials .arrow-right:not(.swiper-button-disabled):hover {
  background: #1F1F1F;
  color: #fff;
}
#testimonials .inner,
#testimonials-list .inner {
  background: #fff;
  border: 1px solid #E6E6E6;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  font-style: italic;
  text-align: center;
  padding: 35px 35px 120px 35px;
  margin-bottom: 60px;
  position: relative;
}
#testimonials .inner p,
#testimonials-list .inner p {
  font-size: 14px;
}
#testimonials .inner .quote,
#testimonials-list .inner .quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}
#testimonials .inner .quote .fa,
#testimonials-list .inner .quote .fa {
  color: #E6E6E6;
  font-size: 36px;
  margin: 35px 0 15px;
}
#testimonials .inner .quote .name,
#testimonials-list .inner .quote .name {
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}
#testimonials .inner .quote img,
#testimonials-list .inner .quote img {
  width: 46px;
  height: 46px;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  margin-bottom: -23px;
  z-index: 2;
}
/*
	10. Banners homepage
*/
#homepage-banners {
  background: #F5F5F5;
}
#homepage-banners a {
  display: block;
}
@media (min-width: 991px) {
  #homepage-banners a:first-child {
    border-right: 1px solid #fff;
    padding-right: 0;
  }
  #homepage-banners a:last-child {
    padding-left: 0;
  }
}
@media (max-width: 1199px) {
  #homepage-banners a {
    padding: 0;
  }
}
/*
	11. Partners block / #partners
*/
#partners {
  background: #1b5d97;
  padding: 43px 0 38px;
}
#partners img {
  vertical-align: middle;
}
#partners .items > div > a {
  display: block;
  height: 70px;
  line-height: 70px;
}
@media (max-width: 1199px) {
  #partners .items > div > a {
    margin: 20px 0;
  }
}
@media (max-width: 991px) {
  #partners {
    text-align: center;
  }
}
/*
	12. Bottom block with address/menu/form/mini-gallery goes before footer
*/
#block-footer {
  background: #161616;
  color: #CCCCCC;
  padding: 30px 0 60px 0;
  font-size: 14px;
}
#block-footer p {
  line-height: 1.7em;
  font-size: 14px;
}
#block-footer h4 {
  color: #fff;
  margin-bottom: 30px;
}
#block-footer .social-small {
  margin-top: 50px;
}
#block-footer .social-small a {
  font-size: 18px;
}
#block-footer .address {
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
}
#block-footer .address li {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}
#block-footer .address li span {
  color: #1b5d97;
  margin: 0 10px 0 0;
  width: 16px;
  font-size: 16px;
}
#block-footer .address li span.fa-envelope {
  font-size: 14px;
}
#block-footer .address li a {
  font-weight: 700;
  color: #CCCCCC;
}
#block-footer .address li a:hover {
  color: #1b5d97;
}
@media (max-width: 768px) {
  #block-footer .address li {
    font-size: 10pt;
  }
}
#block-footer ul.nav {
  list-style: none;
  maring: 0;
  padding: 0;
  float: none;
}
#block-footer ul.nav li {
  padding: 0 15px;
  margin: 0;
  float: none;
}
#block-footer ul.nav li a {
  display: block;
  color: #CCCCCC;
  font-weight: 500;
  /*border-bottom: 1px dashed @black-light;*/
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKoAAAABCAYAAABOrTWvAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NUNENTYzQ0MxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NUNENTYzQ0QxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1Q0Q1NjNDQTE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo1Q0Q1NjNDQjE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuplUWsAAAAkSURBVHjaYnR3d//PAAGMQAxm79ixg9HDw2NUfFR80IgDBBgAvfWN1mHQu4wAAAAASUVORK5CYII=") 0 100% repeat-x;
  margin: 0 0 10px;
  padding: 0 0 10px 0;
  font-size: 14px;
}
#block-footer ul.nav li a:hover {
  color: #1b5d97;
  background-color: transparent;
}
#block-footer ul.nav li a:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: " \f105";
  font-size: 16px;
  margin-right: 8px;
  vertical-align: middle;
  color: #1b5d97;
}
#block-footer ul.nav li:last-child a {
  background: none;
}
#block-footer ul.nav li.active a {
  color: #1b5d97;
  cursor: default;
}
@media (max-width: 991px) {
  #block-footer {
    padding: 0px 0 70px 0;
    font-size: 14px;
  }
  #block-footer h4 {
    margin: 30px 0 20px;
  }
  #block-footer .social-small {
    margin: 0 0 30px 0;
  }
}
.social-small {
  margin-top: -3px;
  margin-left: 0px;
}
.social-small a {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 29px;
  margin: 0 0 0 0px;
  font-size: 14px;
  transition: all .3s ease;
  color: #1F1F1F;
}
.social-small a:hover {
  color: #fff;
  border-color: #fff;
}
.social-small.social-yellow a {
  color: #1b5d97;
}
.social-small.social-yellow a:hover {
  color: #fff;
}
.social-big {
  list-style: none;
  margin: 50px 0 25px 0;
  padding: 0;
}
.social-big li {
  display: inline;
  margin-right: 4px;
  vertical-align: middle;
}
.social-big li a {
  color: #fff;
  display: inline-block;
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  text-align: center;
  line-height: 40px;
  font-size: 18pt;
  transition: background .4s ease;
}
.social-big li a:hover {
  background: #1b5d97 !important;
}
.social-big li .fa-facebook {
  background: #4E71A8;
}
.social-big li .fa-twitter {
  background: #1CB7EB;
}
.social-big li .fa-youtube {
  background: #CA3737;
}
.social-big li .fa-instagram {
  background: #444444;
}
.tags {
  margin: 26px 0 0 8px;
  padding: 0 0 30px;
}
.tags a {
  float: left;
  margin: 8px 0 0 8px;
  padding: 0px 12px;
  font-size: 11pt;
  font-weight: 500;
  border: 2px solid #1b5d97;
  -webkit-border-radius: 36px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 36px;
  -moz-background-clip: padding;
  border-radius: 36px;
  background-clip: padding-box;
  color: #1b5d97;
  transition: all .3s ease;
}
.tags a:hover {
  border: 2px solid #1b5d97;
  color: #1b5d97;
}
/*
	13. Footer and copyrights
*/
footer {
  background: #0C0C0C;
  color: #868686;
  text-align: left;
  padding: 37px 0 27px;
  overflow-y: hidden;
}
footer div {
  font-size: 14px;
}
footer a {
  color: #1b5d97;
}
footer a:hover {
  color: #fff;
}
footer .go-top {
  position: relative;
  float: right;
  margin: -15px 0 0 0;
}
footer .go-top:before {
  background: url("../images/_footer-car.png") no-repeat 50% 50%;
  position: absolute;
  content: "";
  top: 25px;
  right: 0;
  width: 59px;
  height: 72px;
  transition: all .3s ease;
}
footer .go-top:hover:before {
  top: -5px;
}
/*
	14. Widgets
*/
.widget-area {
  background: #F5F5F5;
  padding: 36px 38px;
  margin-top: 0px;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
  font-size: 14px;
}
.widget-area table {
  font-size: 14px;
}
.widget-area h4 {
  margin-top: 0;
}
@media (max-width: 991px) {
  .widget-area {
    padding: 10px 30px;
  }
}
.widget-area aside {
  margin-bottom: 65px;
}
.widget-area aside:last-child {
  margin-bottom: 0;
}
.widget-area aside ul {
  margin: 0 0 0 0px;
  padding: 0;
  list-style: none;
}
.widget-area aside ul li {
  color: #1F1F1F;
  margin-bottom: 13px;
  vertical-align: middle;
}
.widget-area aside ul li:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: " \f105";
  font-size: 16px;
  margin-right: 10px;
  vertical-align: middle;
  color: #1b5d97;
}
.widget-area aside ul li a {
  color: #1F1F1F;
  vertical-align: middle;
}
.widget-area aside ul li a:hover {
  color: #1b5d97;
}
.widget-area aside ul li.current-cat {
  font-weight: bold;
}
.widget-area aside ul li.current-cat a {
  color: #1F1F1F;
  cursor: default;
}
.widget-area aside .tags {
  margin: 0;
}
.widget-area aside .gallery-small {
  padding: 0 11px;
}
.widget-area aside .gallery-small a {
  padding: 5px;
  /*			.opacity-fade;*/
}
.widget-area aside .gallery-small a img {
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
}
.widget-area aside .gallery-small a:hover {
  zoom: 1;
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.widget-area aside .wp-searchform {
  padding: 0 0px;
  margin: 0 0 10px;
  width: 100%;
  display: block;
  position: relative;
}
.widget-area aside .wp-searchform input[type="text"] {
  width: 100%;
  display: block;
}
.widget-area aside .wp-searchform button[type="submit"] {
  right: 20px;
  top: 50%;
  margin-top: -10px;
  font-size: 18px;
  color: #CCCCCC;
  background: none;
  border: 0 none;
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
}
@media (max-width: 991px) {
  .widget-area aside {
    margin-top: 50px;
  }
}
.widget-area aside.widget_calendar .calendar_wrap {
  padding: 0;
}
.widget-area aside.widget_calendar caption {
  color: #1b5d97;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  padding-bottom: 15px;
}
.widget-area aside.widget_calendar table {
  width: 100%;
  position: relative;
}
.widget-area aside.widget_calendar th,
.widget-area aside.widget_calendar td {
  text-align: center;
  padding: 0;
}
.widget-area aside.widget_calendar #prev,
.widget-area aside.widget_calendar #next {
  padding-top: 10px;
}
.widget-area aside.widget_calendar #prev {
  text-align: left;
}
.widget-area aside.widget_calendar #next {
  text-align: right;
}
.widget-area aside.widget_calendar #today {
  position: relative;
  z-index: 2;
}
.widget-area aside.widget_calendar #today:before {
  z-index: -1;
  content: '';
  position: absolute;
  width: 2em;
  height: 2em;
  left: 50%;
  top: 50%;
  background: #1b5d97;
  border-radius: 4px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/*
	15. Contacts inner page width full-width map
*/
#page-contacts {
  margin: 90px 0 100px 0;
}
@media (max-width: 991px) {
  #page-contacts {
    margin: 10px 0 20px;
  }
}
#page-contacts .address {
  list-style: none;
  margin: 40px 0 60px 0;
  padding: 0;
}
#page-contacts .address li {
  font-weight: 400;
  /*    font-family: 'Fjalla One', sans-serif;*/
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 30px 0;
}
#page-contacts .address li.large {
  font-size: 30px;
}
#page-contacts .address li a {
  color: #1F1F1F;
}
#page-contacts .address li span {
  color: #1b5d97;
  font-size: 24px;
  width: 48px;
  margin-left: -16px;
  vertical-align: middle;
  text-align: center;
}
#page-contacts .social {
  margin: 10px 0 60px;
}
#map {
  height: 750px;
  width: 100%;
}
#map.map-inner {
  height: 288px;
}
.slider-inner {
  padding-bottom: 10px;
}
.slider-inner img {
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  height: 305px;
  width: auto;
}
.slider-inner .swiper-pagination {
  margin-bottom: -18px;
}
.slider-inner .swiper-pagination .swiper-pagination-bullet {
  width: 23px;
  height: 23px;
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  background: #1b5d97;
  border: 5px solid #fff;
  margin: 0 5px;
}
.slider-inner .swiper-pagination .swiper-pagination-bullet-active {
  background: #1F1F1F;
}
a.video {
  position: relative;
  display: block;
}
a.video img {
  -webkit-border-radius: 10px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 10px;
  -moz-background-clip: padding;
  border-radius: 10px;
  background-clip: padding-box;
}
a.video span {
  width: 55px;
  height: 55px;
  font-size: 55px;
  display: block;
  position: absolute;
  color: #fff;
  top: 50%;
  right: 50%;
  z-index: 100;
  margin: -27px -27px 0 0;
  transition: visibility 0s linear 0.2s, opacity 0.2s linear;
}
a.video:hover span {
  zoom: 1;
  filter: alpha(opacity=70);
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
}
/*
	16. Typography (for text page) / .text-page
*/
.text-page {
  /*	padding: 35px 0 120px;*/
  font-style: 16px;
  line-height: 1.9em;
}
@media (max-width: 991px) {
  .text-page {
    padding-bottom: 40px;
  }
}
.text-page strong,
.text-page a,
.text-page p {
  font-size: 16px;
  line-height: 1.9em;
  color: #1F1F1F;
}
.text-page .small {
  font-size: 14px;
  line-height: 1.5em;
}
.text-page .small p {
  margin-bottom: 20px;
}
.text-page .date {
  font-size: 14px;
  display: block;
  margin: -14px 0 30px 0;
}
.text-page blockquote {
  font-size: 16px;
  line-height: 1.9em;
  font-weight: 900;
  border-left: 4px solid #1b5d97;
  margin: 30px 0 30px 30px;
  padding: 0 0 0 30px;
}
.text-page hr {
  margin: 60px 0 45px 0;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKoAAAABCAYAAABOrTWvAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NUNENTYzQ0MxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NUNENTYzQ0QxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1Q0Q1NjNDQTE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo1Q0Q1NjNDQjE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuplUWsAAAAkSURBVHjaYnR3d//PAAGMQAxm79ixg9HDw2NUfFR80IgDBBgAvfWN1mHQu4wAAAAASUVORK5CYII=") 0 100% repeat-x;
}
.text-page hr + h1,
.text-page hr + h2,
.text-page hr + h3 {
  margin-top: 30px;
}
.text-page ol,
.text-page ul {
  font-size: 16px;
}
.text-page ol li,
.text-page ul li {
  margin-bottom: 0;
}
.text-page ul li {
  margin-bottom: 5px;
}
.text-page .tags-short {
  border-top: 1px dashed #F5F5F5;
  margin: 20px 0;
  padding: 16px 0;
  font-weight: 700;
  color: #1b5d97;
}
.text-page .tags-short strong {
  color: #1F1F1F;
}
.text-page .tags-short a {
  font-weight: 700;
}
.text-page .btn-lg {
  margin-bottom: 25px;
}
.text-page .btn-xs {
  margin-bottom: 15px;
}
.text-page .social-small a {
  color: #1b5d97;
}
.text-page .social-small a:hover {
  color: #1F1F1F;
}
.text-page table {
  width: 100%;
  border-collapse: collapse;
}
.text-page table tr:first-child td:first-child,
.text-page table tr:first-child th:first-child {
  -webkit-border-top-left-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius-topleft: 4px;
  -moz-background-clip: padding;
  border-top-left-radius: 4px;
  background-clip: padding-box;
}
.text-page table tr:first-child td:last-child,
.text-page table tr:first-child th:last-child {
  -webkit-border-top-right-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius-topright: 4px;
  -moz-background-clip: padding;
  border-top-right-radius: 4px;
  background-clip: padding-box;
}
.text-page table tr:last-child td:first-child {
  -webkit-border-bottom-left-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius-bottomleft: 4px;
  -moz-background-clip: padding;
  border-bottom-left-radius: 4px;
  background-clip: padding-box;
}
.text-page table tr:last-child td:last-child {
  -webkit-border-bottom-right-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius-bottomright: 4px;
  -moz-background-clip: padding;
  border-bottom-right-radius: 4px;
  background-clip: padding-box;
}
.text-page table th,
.text-page table td {
  padding: 5px;
  font-size: 16px;
}
.text-page table th {
  /*    font-family: 'Fjalla One', sans-serif;*/
  font-family: 'Fira Sans Condensed', sans-serif;
  text-transform: uppercase;
  background: #1b5d97;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.text-page table td {
  background: #F5F5F5;
  border: 1px solid #fff;
}
@media (max-width: 768px) {
  .text-page table th, .text-page table td {font-size: 14px; padding: 10px 12px;}
  .text-page table th a, .text-page table td a{font-size: 14px; padding: 0;}
}
@media (max-width: 479px) {
  .text-page table th, .text-page table td {font-size: 12px; padding: 5px 7px;}
  .text-page table th a, .text-page table td a {font-size: 12px; padding: 0;}
}
hr.lg {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MEY1ODZBODExOUFBMTFFNzgzN0M5ODA5QzVDNEY0MUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MEY1ODZBODIxOUFBMTFFNzgzN0M5ODA5QzVDNEY0MUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowRjU4NkE3RjE5QUExMUU3ODM3Qzk4MDlDNUM0RjQxQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDowRjU4NkE4MDE5QUExMUU3ODM3Qzk4MDlDNUM0RjQxQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PpfBKyQAAAAuSURBVHjaYvz//38DAx7Az8+PT5qBiYFCMGrAYDCAhVA8f/z4cTQQh78BAAEGANaYBsy1QBT+AAAAAElFTkSuQmCC") 0% 0% repeat-x;
  height: 16px !important;
  margin: 25px 0 75px 0;
  display: block;
  width: 100%;
  border: none;
}
ol {
  margin-top: 25px;
  margin-bottom: 30px;
}
ul.disc,
ul.check {
  list-style: none;
  margin-top: 25px;
  margin-bottom: 30px;
  padding-left: 25px;
}
@media (min-width: 768px) {
  ul.disc.two-col,
  ul.check.two-col {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}
ul.disc.strong li,
ul.check.strong li {
  font-weight: 700;
  margin-bottom: 10px;
}
ul.disc li,
ul.check li {
  color: #1F1F1F;
}
ul.disc li:before,
ul.check li:before {
  content: "\f00c";
  display: block;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 100;
  color: #1b5d97;
  position: absolute;
  margin: 7px 0 0 -26px;
}
ul.disc.disc li:before,
ul.check.disc li:before {
  content: "•";
  font-size: 30px;
  margin: 2px 0 0 -22px;
}
form.form {
  margin: 0px 0 40px 0;
  padding: 45px 45px 35px;
  background: #F5F5F5;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
}
@media (max-width: 991px) {
  form.form {
    padding: 20px 20px 10px;
  }
}
@media (min-width: 991px) {
  form.form-sm {
    padding-left: 20%;
    padding-right: 20%;
  }
}
form h3 {
  margin-bottom: 40px;
}
form label {
  font-size: 16px;
  text-align: left;
}
form .form-group {
  margin-bottom: 24px;
}
form textarea,
form input[type="text"],
form select{
  width: 100%;
  font-size: 16px;
  display: block;
  margin: 0 auto;
  /*		margin-bottom: 24px;*/
  background: #fff;
  padding: 12px 18px;
  border: 1px solid #E6E6E6;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  background-clip: padding-box;
  border-radius: 20px;
}
form textarea:focus,
form input[type="text"]:focus {
  border-color: #1b5d97;
}
@media (max-width: 991px) {
  form textarea,
  form input[type="text"] {
    width: 100%;
  }
}
form textarea {
  height: 140px;
}
form .btn {
  margin: 15px 0 10px;
}
@media (max-width: 991px) {
  form {
    padding: 30px 25px;
  }
}
/*
	17. Blog posts and blog inner page
*/
.blog {
  padding: 0px 0 0px;
  overflow: visible;
}
.blog .paging-navigation {
  margin-top: -40px;
}
.blog .item {
  margin-bottom: 30px;
  transition: all .3s ease;
}
.blog .item img {
  transition: visibility 0s linear 0.2s, opacity 0.2s linear;
}
.blog .item .description {
  padding: 5px 0px;
}
.blog .item .description .header {
  color: #1F1F1F;
}
.blog .item .description .header h5 {
  transition: color 0.5s ease;
  margin: 20px 0 20px 0;
}
.blog .item .description .header:hover h5 {
  color: #1b5d97;
}
.blog .item .description .text {
  font-size: 14px;
  position: relative;
  line-height: 1.5em;
  max-height: 6em;
  height: 94px;
  overflow: hidden;
  margin-bottom: 10px;
}
.blog .item .description .text:after {
  content: '';
  position: absolute;
  right: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.2em;
  background: transparent;
}
.blog .item:hover img {
  zoom: 1;
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.blog-info {
  padding: 10px 0px 2px;
  color: #868686;
  position: relative;
}
.blog-info:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: block;
  height: 1px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKoAAAABCAYAAABOrTWvAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NUNENTYzQ0MxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NUNENTYzQ0QxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1Q0Q1NjNDQTE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo1Q0Q1NjNDQjE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuplUWsAAAAkSURBVHjaYnR3d//PAAGMQAxm79ixg9HDw2NUfFR80IgDBBgAvfWN1mHQu4wAAAAASUVORK5CYII=") 0 100% repeat-x;
  zoom: 1;
  filter: alpha(opacity=30);
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
}
.blog-info a {
  color: #868686;
  font-size: 14px;
}
.blog-info .fa {
  color: #1b5d97;
  margin-right: 6px;
}
.blog-info .date {
  white-space: nowrap;
}
.blog-info ul {
  list-style: none;
  text-align: right;
  padding-right: 0px;
  padding-left: 0;
}
.blog-info ul li {
  display: inline;
  text-align: right;
  font-size: 14px;
  margin-left: 10px;
  color: #1b5d97;
}
.blog-info ul li a {
  margin-left: 6px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-info .right {
    float: left;
    display: block;
    text-align: left;
  }
  .blog-info .right ul {
    text-align: left !important;
  }
  .blog-info .right ul li {
    margin-right: 9px;
    margin-left: 0 !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-info .right {
    float: left;
    display: block;
    text-align: left;
  }
  .blog-info .right ul {
    text-align: left !important;
  }
  .blog-info .right ul li {
    margin-right: 9px;
    margin-left: 0 !important;
  }
}
.blog-post {
  margin: 0 0 50px 0;
}
.blog-post .blog-info {
  margin-bottom: 20px;
}
.blog-post pre {
  margin: -15px 0 40px;
  display: block;
}
.blog-post .date {
  color: #6f6078;
  font-size: 13pt;
  display: block;
  margin: -40px 0 10px 0;
}
.blog-post img {
  margin: 0px 0 0px 0;
}
.blog-post hr {
  margin: 20px 0 0 0;
}
.blog-post .tags-short {
  margin: 0;
}
/*
	18. Gallery
*/
.gallery-page {
  padding: 10px 0;
}
.gallery-page .paging-navigation {
  margin-top: -10px;
}
.gallery-page .item {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .gallery-page .item {
    margin-bottom: 40px;
  }
}
.gallery-page .photo {
  transition: visibility 0s linear 0.2s, opacity 0.2s linear;
}
.gallery-page .photo img {
  border-radius: 8px;
}
.gallery-page .photo:hover {
  zoom: 1;
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.gallery-page .descr {
  padding: 0px 0px;
}
.gallery-page .descr h5 {
  margin: 18px 0 6px;
}
.gallery-page .descr .fa {
  color: #1b5d97;
  margin-right: 10px;
}
.gallery-page .descr a {
  color: #868686;
  font-size: 14px;
}
.gallery-page ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gallery-page ul li {
  font-size: 14px;
  color: #868686;
  margin-right: 15px;
  display: inline-block;
}
.gallery-page.gallery-4 .item {
  margin-bottom: 40px;
}
.gallery-page.gallery-4 .descr h5 {
  font-size: 16px;
}
.gallery-page.gallery-4 .descr ul li,
.gallery-page.gallery-4 .descr a {
  font-size: 12px;
}
.gallery-page.gallery-4 .descr .right {
  text-align: left;
  float: none;
}
/*
	19. Shortcodes
*/
.shortcodes .tariffs {
  padding-bottom: 20px;
}
.alert {
  margin: 15px 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  text-align: center;
  padding: 30px 30px 40px 30px;
  margin-bottom: 15px;
  position: relative;
}
.alert p {
  font-size: 14px;
  line-height: 1.6em;
}
.alert .fa-times {
  position: absolute;
  right: 16px;
  top: 12px;
  color: #1F1F1F;
  font-size: 16px;
}
.alert.alert-green .header {
  color: #42A460;
}
.alert.alert-red .header {
  color: #9F340A;
}
.alert.alert-yellow {
  background: #1b5d97;
  color: #1F1F1F;
}
.alert.alert-black {
  background: #1F1F1F;
  color: #1b5d97;
}
.alert.alert-black .fa-times {
  color: #fff;
}
.alert .header {
  font-size: 24px;
  font-weight: 500;
  /*    font-family: 'Fjalla One', sans-serif;*/
  font-family: 'Fira Sans Condensed', sans-serif;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.alert .header .fa {
  font-size: 24px;
  margin-right: 10px;
}
.block-descr .date {
  color: #CCCCCC;
  margin-top: 30px;
  font-size: 14px;
}
.block-descr h4 {
  color: #1b5d97;
  font-size: 24px;
  font-weight: 900;
  margin: 0px 0 10px 0;
}
.block-descr p {
  line-height: 1.3em;
}
@media (max-width: 991px) {
  .block-descr {
    margin-bottom: 50px;
  }
}
.accordion.ui-accordion {
  padding-bottom: 0px;
}
.accordion.ui-accordion .ui-accordion-header {
  color: #1b5d97;
  border-bottom: 0 none;
  border-color: #CCCCCC;
  display: block;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius-topright: 4px;
  -moz-background-clip: padding;
  border-top-right-radius: 4px;
  background-clip: padding-box;
  background: transparent !important;
  transition: all .3s ease;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
.accordion.ui-accordion .ui-accordion-header:hover {
  color: #1F1F1F;
}
.accordion.ui-accordion .ui-accordion-header:after {
  content: "—";
  background: #1b5d97;
  display: inline-block;
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  background-clip: padding-box;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  position: absolute;
  right: 25px;
  color: #1F1F1F;
  font-size: 14px;
}
.accordion.ui-accordion .ui-accordion-header.ui-accordion-header-collapsed {
  margin-bottom: 15px;
  border-bottom: 1px solid #CCCCCC;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius-bottomright: 4px;
  -moz-background-clip: padding;
  border-bottom-right-radius: 4px;
  background-clip: padding-box;
}
.accordion.ui-accordion .ui-accordion-header.ui-accordion-header-collapsed:after {
  content: "+";
  font-size: 20px;
}
.accordion.ui-accordion .ui-accordion-content {
  border-color: #CCCCCC;
  margin-top: -5px;
  margin-bottom: 12px;
  padding: 0px 25px 25px 25px;
  font-size: 14px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius-bottomright: 4px;
  -moz-background-clip: padding;
  border-bottom-right-radius: 4px;
  background-clip: padding-box;
}
.accordion.ui-accordion .ui-accordion-header-icon {
  display: none !important;
}
.tabs-ui {
  border: 0 none;
}
.tabs-ui.ui-tabs {
  padding: 0 !important;
}
.tabs-ui .ui-widget-header {
  background: transparent;
  border: 0 none;
}
.tabs-ui .ui-tabs-tab {
  background: #1b5d97;
  color: #fff;
  border: 0 none !important;
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-top-left-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius-topleft: 4px;
  -moz-background-clip: padding;
  border-top-left-radius: 4px;
  background-clip: padding-box;
}
.tabs-ui .ui-tabs-tab a {
  background: #1b5d97;
  color: #1F1F1F !important;
  /*    font-family: 'Fjalla One', sans-serif;*/
  font-family: 'Fira Sans Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 24px;
  transition: visibility 0s linear 0.2s, opacity 0.2s linear;
  padding: 8px 50px 2px !important;
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-top-left-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius-topleft: 4px;
  -moz-background-clip: padding;
  border-top-left-radius: 4px;
  background-clip: padding-box;
}
.tabs-ui .ui-tabs-tab a:hover {
  zoom: 1;
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .tabs-ui .ui-tabs-tab a {
    font-size: 18px;
    padding: 10px 20px !important;
  }
}
.tabs-ui .ui-tabs-nav {
  padding: 0 !important;
}
.tabs-ui .ui-tabs-nav li {
  margin-right: 1px !important;
}
.tabs-ui .ui-tabs-active {
  padding-bottom: 0 !important;
  border: 0 none !important;
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-top-left-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius-topleft: 4px;
  -moz-background-clip: padding;
  border-top-left-radius: 4px;
  background-clip: padding-box;
}
.tabs-ui .ui-state-active a {
  background: #F5F5F5;
  color: #1F1F1F !important;
}
.tabs-ui .ui-tabs-panel {
  background: #F5F5F5 !important;
  padding: 30px 30px 25px 30px !important;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius-bottomleft: 4px;
  -moz-background-clip: padding;
  border-bottom-left-radius: 4px;
  background-clip: padding-box;
}
.tabs-ui.ui-widget.ui-widget-content {
  border: 0 none;
}
.tabs-ui.ui-widget.ui-widget-content p {
  font-size: 16px;
  line-height: 1.6em;
}
.tabs-ui.ui-widget.ui-widget-content a {
  color: #1b5d97;
}
.tabs-ui.ui-widget.ui-widget-content .tags-short {
  margin-top: 20px;
  margin-bottom: 0;
}
.tabs-ui.ui-widget.ui-widget-content .tags-short a {
  color: #1b5d97;
}
.progressItems {
  margin-top: 47px;
}
.progressBar {
  margin: 0px 0 40px;
}
.progressBar .value,
.progressBar .header {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 16px;
}
.progressBar .header {
  padding-left: 2px;
}
.progressBar .value {
  float: right;
  /*    font-family: 'Fjalla One', sans-serif;*/
  font-family: 'Fira Sans Condensed', sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-top: -30px;
}
.progressBar .bar {
  width: 100%;
  height: 6px;
  -webkit-border-radius: 8px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 8px;
  -moz-background-clip: padding;
  border-radius: 8px;
  background-clip: padding-box;
  background-color: #F5F5F5;
}
.progressBar .bar div {
  height: 100%;
  width: 0;
  background-color: #1b5d97;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
}
.skills {
  min-height: 213px;
  overflow: visible;
  position: relative;
  background: #2C2C2C;
  margin-bottom: 30px;
}
.skills:after {
  background: rgba(16, 16, 16, 0.45);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.skills .item {
  position: relative;
  z-index: 5;
  color: #fff;
  line-height: 1.4em;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 65px 20px 60px;
  max-height: 232px;
  overflow: hidden;
}
.skills .item span {
  margin: 0 0 15px 0;
  color: #1b5d97;
  font-size: 48px;
  font-weight: 500;
  line-height: 1em;
  display: block;
  /*    font-family: 'Fjalla One', sans-serif;*/
  font-family: 'Fira Sans Condensed', sans-serif;
}
.skills.skills-inner {
  background-image: url("../images/_skills-static.jpg");
  background-repeat: no-repeat;
  min-height: auto;
  overflow: hidden;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
}
@media (max-width: 991px) {
  .skills.skills-inner {
    height: auto;
    padding: 30px 0 20px;
  }
}
/*
	20. Forms (buttons/radio/inputs)
*/
label.error {
  color: #9F340A;
  font-weight: 100;
  /*	margin: -25px 0 25px;*/
  display: block !important;
  text-align: center;
  font-size: 14px;
}
input.error,
textarea.error,
select.error {
  border-color: #9F340A !important;
}
.btn {
  -webkit-border-radius: 30px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 30px;
  -moz-background-clip: padding;
  border-radius: 30px;
  background-clip: padding-box;
  transition: all .3s ease;
  font-size: 14px;
  padding: 2px 40px 4px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: lowercase;
}
.btn.btn-lg {
  text-transform: uppercase;
  font-size: 18px;
  padding: 17px 60px;
}
.btn.btn-xs {
  text-transform: uppercase;
  font-size: 11px;
  padding: 5px 18px;
}
.btn.btn-red {
  color: #fff;
  background: #9F340A;
  position: relative;
  -webkit-box-shadow: 0 6px 10px rgba(159, 52, 10, 0.3);
  -moz-box-shadow: 0 6px 10px rgba(159, 52, 10, 0.3);
  box-shadow: 0 6px 10px rgba(159, 52, 10, 0.3);
}
.btn.btn-red:hover {
  background: #1F1F1F;
  color: #1b5d97;
}
.btn.btn-yellow {
  color: #fff;
  background: #e70505;
}
.btn.btn-yellow.btn-white {
  color: #fff;
}
.btn.btn-yellow:hover {
  background: #e72525;
  color: #fff;
}
.btn.btn-yellow.btn-bg-dark:hover {
  background: #fff;
  color: #1F1F1F;
}
.btn.btn-black {
  color: #1b5d97;
  background: #1F1F1F;
}
.btn.btn-black:hover {
  color: #fff;
}
.btn.btn-black.btn-white {
  color: #fff;
}
.btn.btn-black.btn-white:hover {
  color: #1b5d97;
}
.btn.btn-black-bordered {
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
}
.btn.btn-black-bordered.btn-xs {
  border: 1px solid #1F1F1F;
}
.btn.btn-black-bordered:hover {
  background: #1F1F1F;
  color: #fff;
}
.btn + .btn {
  margin-left: 10px;
}
label.css-radio {
  margin: 0 0 16px 0px !important;
  display: block;
  position: relative;
  min-height: 22px;
  line-height: 17px;
  padding: 4px 0;
  margin: 0 0 10px 0;
  overflow: hidden;
  cursor: pointer;
}
label.css-radio:hover {
  opacity: 0.8;
}
label.css-radio input {
  position: absolute;
  left: -20px;
}
label.css-radio > span {
  font-size: 10pt;
  font-weight: bold;
  padding: 6px 0 0 30px;
  display: inline-block;
}
label.css-radio > span:before {
  width: 22px;
  height: 22px;
  bottom: 0px;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  background: #fff;
  left: 2px;
  display: block;
  content: "";
  position: absolute;
  background: #f5f5f5;
}
label.css-radio input:checked + span:after {
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  background: #1F1F1F;
  width: 12px;
  height: 12px;
  display: block;
  content: "";
  top: 8px;
  left: 7px;
  position: absolute;
  z-index: 100;
}
label.css-radio.no-label {
  display: inline-block;
  width: 22px;
  margin: 0 4px 0 0;
}
/*
	21. Pagination
*/
.paging-navigation,
.page-numbers {
  text-align: center;
  margin-top: 10px;
  font-weight: 700;
  font-size: 14px;
}
.paging-navigation hr,
.page-numbers hr {
  margin-bottom: 20px;
}
.paging-navigation .pagination,
.page-numbers .pagination {
  margin-top: 15px;
  margin-bottom: 0;
}
.paging-navigation .pagination .page-numbers:not(.next):not(.prev),
.page-numbers .pagination .page-numbers:not(.next):not(.prev) {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 0px;
  color: #1F1F1F;
  font-size: 14px;
}
.paging-navigation .pagination .page-numbers:not(.next):not(.prev):not(.current):hover,
.page-numbers .pagination .page-numbers:not(.next):not(.prev):not(.current):hover {
  color: #1b5d97;
}
.paging-navigation .pagination .page-numbers:not(.next):not(.prev).current,
.page-numbers .pagination .page-numbers:not(.next):not(.prev).current {
  color: #1b5d97;
  cursor: default;
}
.paging-navigation .prev,
.page-numbers .prev,
.paging-navigation .next,
.page-numbers .next {
  margin: 0 30px;
  color: #1F1F1F;
  font-size: 14px;
}
@media (max-width: 768px) {
  .paging-navigation .prev,
  .page-numbers .prev,
  .paging-navigation .next,
  .page-numbers .next {
    display: none;
  }
}
.paging-navigation .prev span,
.page-numbers .prev span,
.paging-navigation .next span,
.page-numbers .next span {
  background: #1b5d97;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  margin: 0 8px;
  width: 30px;
  height: 30px;
  display: inline-block;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
}
.paging-navigation .prev:not(.disabled):hover,
.page-numbers .prev:not(.disabled):hover,
.paging-navigation .next:not(.disabled):hover,
.page-numbers .next:not(.disabled):hover {
  color: #1b5d97;
}
.paging-navigation .prev.disabled,
.page-numbers .prev.disabled,
.paging-navigation .next.disabled,
.page-numbers .next.disabled {
  color: #E6E6E6;
  cursor: default;
}
.paging-navigation .prev.disabled span,
.page-numbers .prev.disabled span,
.paging-navigation .next.disabled span,
.page-numbers .next.disabled span {
  background: #E6E6E6;
}
/*
	22. Common classes (hover/transition effect/etc)
*/
.parallax {
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
@media (min-width: 991px) {
  .parallax {
    background-attachment: fixed;
  }
}
.center {
  text-align: center;
}
img.full-width {
  max-width: 100%;
  height: auto;
}
img.rounded {
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
}
.comments-area .comments-title {
  color: #1F1F1F;
}
.comments-area .comment-list {
  list-style: none;
}
.comments-area .comment-list li .comment-single {
  background: #F5F5F5;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  padding: 22px 26px;
  margin-bottom: 26px;
  position: relative;
}
@media (max-width: 768px) {
  .comments-area .comment-list li .comment-single {
    padding: 18px 18px;
  }
}
.comments-area .comment-list .children {
  list-style: none;
  padding-left: 100px;
}
@media (max-width: 768px) {
  .comments-area .comment-list .children {
    padding-left: 25px;
  }
}
.comments-area .comment-info {
  font-size: 14px;
  padding: 0 0 15px 0;
  margin: 0 0 15px 0;
  position: relative;
}
.comments-area .comment-info:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: block;
  height: 1px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKoAAAABCAYAAABOrTWvAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NUNENTYzQ0MxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NUNENTYzQ0QxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1Q0Q1NjNDQTE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo1Q0Q1NjNDQjE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuplUWsAAAAkSURBVHjaYnR3d//PAAGMQAxm79ixg9HDw2NUfFR80IgDBBgAvfWN1mHQu4wAAAAASUVORK5CYII=") 0 100% repeat-x;
  zoom: 1;
  filter: alpha(opacity=30);
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
}
@media (max-width: 768px) {
  .comments-area .comment-info {
    font-size: 14px;
  }
}
.comments-area .comment-info .comment-author {
  color: #1b5d97;
  font-weight: 700;
  margin-right: 10px;
}
.comments-area .comment-info .comment-date {
  margin-right: 10px;
  padding-left: 10px;
}
.comments-area .comment-info .comment-time {
  padding-left: 10px;
}
.comments-area .comments-ol {
  margin-left: -40px;
}
.comments-area .comment-text p {
  font-size: 14px;
  line-height: 1.6em;
  margin-bottom: 15px;
}
.comments-area .comment-reply-link {
  color: #1F1F1F;
  font-weight: 700;
}
.comments-area .comment-reply-link:hover {
  color: #1b5d97;
}
.comments-area .comment-reply-link:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1b5d97;
  font-size: 11pt;
  vertical-align: middle;
  margin-right: 10px;
  content: "\f149";
}
.comments-area .comment-author-avatar {
  position: absolute;
  left: 30px;
  top: 30px;
}
.comments-area .comment-author-avatar img {
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
}
.comments-area .comment-content {
  padding: 0 0 0 72px;
}
.comments-form-wrap h3 {
  color: #1F1F1F;
}
.comments-form-wrap h3:not(.comment-reply-title) {
  margin: 60px 0 20px 0;
}
.comments-form-wrap h3.comment-reply-title {
  margin: 0;
}
.comment-form .comments-field label {
  display: none;
}
.comment-form input[type="text"],
.comment-form textarea {
  width: 100%;
}
.comment-form .submit {
  margin: 20px 0 0 0;
}
.alignleft {
  display: inline-block;
  float: left;
  margin-right: 1.5em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.alignright {
  display: inline-block;
  float: right;
  margin-left: 2em;
  margin-top: 0.5em;
  margin-bottom: 1em;
}
.aligncenter {
  clear: both;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0.5em;
  margin-bottom: 1em;
  text-align: center;
}
img.alignleft,
img.alignnone,
img.alignright,
img.aligncenter {
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
}
.opensans {
  font-family: 'Open Sans', sans-serif;
}
.fjalla {
  /*    font-family: 'Fjalla One', sans-serif;*/
  font-family: 'Fira Sans Condensed', sans-serif;
}
.upper {
  text-transform: uppercase;
  font-size: 9pt;
}
.color-fade {
  transition: color 0.5s ease;
}
.border-fade {
  transition: border 0.5s ease;
}
.background-fade {
  transition: background .4s ease;
}
.all-fade {
  transition: all .3s ease;
}
.fade {
  transition: visibility 0s linear 0.2s, opacity 0.2s linear;
}
.opacity-fade {
  transition: visibility 0s linear 0.2s, opacity 0.2s linear;
}
.opacity-hidden {
  visibility: hidden;
  opacity: 0;
  transition: visibility .1s linear 0.4s, opacity 0.4s linear, background 0.5s ease;
}
.opacity-hidden-hover {
  visibility: visible;
  opacity: 1;
  transition-delay: .1s;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.color-overlay:after {
  -webkit-border-top-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -webkit-background-clip: padding-box;
  -moz-border-radius-topright: 10px;
  -moz-background-clip: padding;
  border-top-right-radius: 10px;
  background-clip: padding-box;
  content: "";
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: #1b5d97;
  zoom: 1;
  filter: alpha(opacity=20);
  -webkit-opacity: 0.2;
  -moz-opacity: 0.2;
  opacity: 0.2;
}
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}
.col-xs-5ths {
  width: 20%;
  float: left;
}
@media (min-width: 768px) {
  .col-sm-5ths {
    width: 20%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    float: left;
  }
}
.center-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dashed {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKoAAAABCAYAAABOrTWvAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NUNENTYzQ0MxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NUNENTYzQ0QxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1Q0Q1NjNDQTE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo1Q0Q1NjNDQjE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuplUWsAAAAkSURBVHjaYnR3d//PAAGMQAxm79ixg9HDw2NUfFR80IgDBBgAvfWN1mHQu4wAAAAASUVORK5CYII=") 0 100% repeat-x;
}
.dashed-light {
  position: relative;
}
.dashed-light:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: block;
  height: 1px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKoAAAABCAYAAABOrTWvAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NUNENTYzQ0MxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NUNENTYzQ0QxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1Q0Q1NjNDQTE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo1Q0Q1NjNDQjE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuplUWsAAAAkSURBVHjaYnR3d//PAAGMQAxm79ixg9HDw2NUfFR80IgDBBgAvfWN1mHQu4wAAAAASUVORK5CYII=") 0 100% repeat-x;
  zoom: 1;
  filter: alpha(opacity=30);
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
}
.dark-overlay:after {
  background: rgba(16, 16, 16, 0.45);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.black-overlay:after {
  background: rgba(16, 16, 16, 0.75);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.pattern-lines:after {
  background: rgba(16, 16, 16, 0.73) url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4RpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMjNkYTEyYy1jOGMyLTcwNDItODg2Ny0xZmZhZWI3MmViOTMiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QkFGM0ExREExQTA3MTFFN0E4OEU4RkY3Q0VEQzAyRTkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QkFGM0ExRDkxQTA3MTFFN0E4OEU4RkY3Q0VEQzAyRTkiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6YzJkM2FhYWItMDUyZi05NDQ4LTlhM2UtMjk1OTkzMDQyOGI2IiBzdFJlZjpkb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6ZTA5ZDg5ZmQtMDA2NS0xMWU3LThiMWMtZTE0MmJhNWM4NzA3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+vyDTwQAAABlJREFUeNpiYkCA/0wwBhAzMsEYIBGAAAMANqADBoMGgUwAAAAASUVORK5CYII=");
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
#zcall{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.6);z-index:10000;display:none;}
.dartcall{position:absolute;top:0;left:0;right:0;bottom:0;}
.body-call{position:absolute;top:0;left:0;right:0;bottom:0;width:335px;height:380px;margin:auto;background:#fff;}
.padd-call{padding:10px;}
.text-call{text-align:center;font-size:16px;}
.padd-call form p{margin:10px 0px;}
.padd-call form input[type="text"]{padding:4px 5px;width:315px;outline:none;border:1px solid #adadad;}
.padd-call form textarea{padding:4px 5px;width:315px;height:100px;resize:none;outline:none;border:1px solid #adadad;}
.padd-call form input[type="submit"]{padding:7px 20px;color:#fff;background:#dec310;border:0;outline:none;cursor:pointer;}

#zend{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.7);z-index:10000;display:none;}
.zcloseend{position:absolute;top:0;left:0;right:0;bottom:0;}
.bodyend{position:absolute;top:0;left:0;right:0;bottom:0;width:350px;height:100px;margin:auto;background:#fff;}
.paddend{padding:10px;text-align:center;}

/*-------------------------- callback --------------------------------*/
.call-container { margin: 0; padding: 0; width: auto; }
.call-title { padding: 0 5px 15px 0; font-size: 18px; }
.call_input-box { margin: 0 0 10px; padding: 0; }
.call_but-box { float: right; margin: 5px 27px 10px 0; }
.call_form { text-align: left; }
.modal-callback { display: none; }

.call2-container { margin: 0; padding: 0; width: 420px; }
.call2-title { padding: 0 5px 15px 0; font-size: 18px; }
.call2_input-box { margin: 0 0 10px; padding: 0; }
.call2_but-box { float: right; margin: 5px 27px 10px 0; }
.call2_form { text-align: left; }
.modal-callback2 { display: none; }

#modal-trening-content { display: none; }
#trening-mes { padding: 0 0 10px 0; text-align: center; color: #f2354d; }
.trening-container{margin:0;padding:0 30px 0 20px;width:550px;}
.trening-container .chtexts {width: 400px;}
.trening-title{padding:20px 0px 5px;font-size:22px;}
.dogovor-info {color: #f2354d;}
.dogovor-current-date {padding: 0 0 15px 0;}

.message-default { padding: 15px 0; width: 100%; background-color: #d8f8c4; color: #000000; font-size: 18px; text-align: center; border-top: 1px solid #000; border-bottom: 1px solid #000; position: absolute; top: 115px; z-index: 900; }

.ch-custom4{position:relative;width:24px;height:24px;margin: 0 5px 0 0;border:1px solid #999999;background:#fff;display:inline-block;vertical-align:middle;border-radius:5px;background:no-repeat center url(../images/check.png) #fff;}
.chtexts212 {display:inline;vertical-align:middle;}

.contacts a {color: #fff;}
.contacts a:hover {text-decoration: underline;}

.lm-parent { margin: 0; font-size: 24px; color: #000; font-weight: bold; text-transform: uppercase; font-family: 'Fira Sans Condensed', sans-serif; }
.lm-parent a { font-size: 24px; color: #000; font-weight: bold; text-transform: uppercase; font-family: 'Fira Sans Condensed', sans-serif; }
.lm-parent a.active {color: #1b5d97;}

.gallery-small img {margin: 0 0 20px 0;}

/*------------------------- progallery ------------------------------*/
.progallery {margin: 20px 0 0 0;}
.progallery a { margin: 0 15px 15px 0; width: 230px; height: 150px; overflow: hidden; display: inline-block; vertical-align: top; }
.progallery img {width: 230px;}

.progallery-licenzii a { margin: 0 15px 15px 0; width: 230px; height: 330px; overflow: hidden; display: inline-block; vertical-align: top; }
.progallery-licenzii img {width: 230px;}

.labdog {display: block;}
.labdog input {margin: 0 10px 0 0;}

.datepicker-box {margin: 30px auto;width: 272px;}
.ui-widget { font-family:'Lato-Regular'; font-size: 16px }
.ui-widget-header{border: none; background-color: #dfdfdf;color: #1b5d97;}
.ui-widget-header .ui-icon { background-image: url(../images/ui-icons_f9bd01_256x240.png); }
.ui-datepicker .ui-datepicker-prev { background-color: #ffffff; border-radius:50%; border: none; }
.ui-datepicker .ui-datepicker-next { background-color: #ffffff; border-radius:50%; border: none; }
.ui-datepicker .ui-datepicker-header .ui-datepicker-next-hover {  }
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev-hover {  }
.ui-widget-content { border: none; background-color: #dfdfdf; }
.ui-widget-content .ui-state-default { border: none; background-color: #dfdfdf; color: #000000; text-align: center; font-weight: normal; border-radius:50%; padding: 4px; margin: 4px; }
.ui-datepicker-month {color: #000000;}
.ui-datepicker-year {color: #000000;}

.ui-datepicker td {padding: 0;}
.ui-widget-content td a.ui-state-hover { background-color: #1b5d97; border: none; color: #000000; }
.ui-widget-content td.showed-date a.ui-state-default { background-color: #1b5d97; border: none; color: #000000; }
.ui-widget-content td.showed-date a.ui-state-active { background-color: #000000; color: #ffffff; }

.text-page img {max-width: 100%;}

.widget-area aside ul li a.active {color: #1b5d97;}

nav.navbar #navbar ul.navbar-nav a.active:before {visibility: visible; opacity: 1; transition-delay: .1s; left: 50%;}
nav.navbar #navbar ul.navbar-nav li.active a:before {visibility: visible; opacity: 1; transition-delay: .1s; left: 50%;}
nav.navbar #navbar ul.navbar-nav ul.sub-menu li.active {background: #1b5d97; color: #1F1F1F;}
header.bighead {height: 400px;}

.text-page table.big-table {width: 100%;}
.text-page table.big-table strong, .text-page table.big-table a, .text-page table.big-table p {font-size: 12px;}
.text-page table.big-table th {padding: 5px;}
.text-page table.big-table td {padding: 5px;}
.a-hide {display:none;}

.w-100 {width: 100%; height: 300px; overflow: hidden; text-align: center; margin-bottom: 20px;}

.block_plus {width:33%; display:inline-block;}

.form-no {color: red;}

@media (max-width: 1180px){
	#top-bar{height:auto;}
	#top-bar .col-md-9{width:100% !important;}
	#top-bar .contacts{padding:0px 15px;}
	#top-bar .contacts div{float:none;display:inline-block;vertical-align:top;width:250px;margin:0 0 0 20px;}
}
@media (max-width: 991px) {
	#top-bar{padding:9px 0px 3px;}
	#homepage-block-2 .forms{margin:10px 0px;}
  .main-welcome {display: inline-block;}
  .main-welcome img {margin: 0 0 20px 0;}
  .services .row > .main-welcome {margin: 0;}
}
@media (max-width: 767px) {
	#top-bar{display:none;}
}
@media (max-width: 645px) {
	.trening-container{padding:0 10px 0 0px;width:400px;}
}
@media (max-width: 491px) {
	.trening-container{width:95%;padding:0;}
	.trening-container form{padding:10px 5px;}
	.trening-container form label{font-size:14px;font-weight:normal;}
	.trening-title{font-size:16px;padding:10px 0px 5px;}
	.trening-container .btn.btn-lg{padding:10px 20px;}
}
@media (max-width: 450px) {
	.call2-container{width:95%;padding:0;}
	.call2-title{font-size:16px;}
	.call2_form form{padding:10px 5px;}
	.call2-container form label{font-size:14px;}
	.call2-container .btn.btn-lg{padding:10px 20px;}
}

.text-page strong, .text-page a, .text-page p{line-height: 1.6;}
.widget-area aside ul li {margin-bottom:9px;}

#block-footer ul.nav li a {font-size: 12px;}
#block-footer p {font-size: 12px;}

.col-lg-6-100prc {width: 100%;}

.widget-area aside.widget-minbottom{ margin-bottom: 25px;}
.head-special{background:#1b5d97;font-size:14pt;color:#fff;padding:5px 8px;margin-bottom:12px;}
.block-stl{padding: 0 0 20px 0;position:relative;text-align:center;background:rgba(255,255,255,1);border:1px solid #fff;}
.block-stl p {font-size: 14px;line-height: 1;color: #1e1d1c;}
.block-stl a {color: #1e1d1c;text-decoration: underline; line-height: 20px;}
.block-stl a:hover {color: #1b5d97;}
.pl-actions{position:absolute;top:0;left:0;width:48px;height:55px;background:no-repeat url(../images/actions.png);}
.block-special p{font-size:9pt;line-height:11pt;font-weight:500;color:#606060;margin:0;}
.head-timer{font-size:12pt;font-weight:500;color:#5b5b5b;display:block;margin-top:12px;}

.tbox {height: 50px;width:200px;margin: 0 auto;}
.tblock {margin:0; float: left; text-align: center; color: #fff;border-radius: 3px;}
.tnum {font-size: 21px;margin: 0 4px 0 0;font-weight: bold;}
.tnum span {background-color: #1b5d97;padding: 2px 5px;}
.ttext {font-size: 10px;color: #3E3E3E;padding: 0 4px 0 0;}
.tnum span:first-child {border-radius:5px 0px 0px 5px;border-right: 1px solid #c29519;}
.tnum span:last-child{border-radius:0px 5px 5px 0px;}

.main-timer-box {padding: 0;width: 260px;margin: 0 auto;margin-top: 10px;margin-bottom: 20px;}

.head-padd {margin: 0;}

.dogovor-box {margin: 10px 0 0 0; padding: 30px 40px; border: 10px solid #dfdfdf;}

.akciya-timer {height:50px;}

.head-titles {margin: 6px 0 0 0;}
.head-title-box {margin:0 0 15px 0; text-align: left; color: #fff; line-height: 1;font-weight: bold;}
.head-title1 {font-size: 28px;background-color: #000;padding: 0;display: inline;}
.head-title2 {font-size: 30px;background-color: #000;padding: 0;display: inline;}
.head-title3 {font-size: 40px;background-color: #000;padding: 0;display: inline;}
.head-title4 {font-size: 45px;background-color: #000;padding: 0;display: inline;}

a.head-phone {font-size: 14px;color:#fff;font-weight: bold;background-color: #1b5d97;padding: 10px 15px;display: inline-block; border-radius: 20px; text-transform: uppercase; margin: 0 0 20px 0;}
a.head-phone:hover {background-color: #237bc9; text-decoration: none;}

header.page-header h1 {background-color: #1b5d97; color: #fff; display: inline; padding: 0 20px; line-height: 1;}

.no-margin {margin:0;}

.main-text {text-align: left;}
.main-text p {font-size: 14px;}
.main-text ul {float: none;}
.main-text ul li {font-size: 14px;}
.main-text img {max-width: 100%}
.main-text a {color: #1b5d97;}
.marg-bottom2 {padding: 0 0 60px 0;}


.block-faq{margin:0px 0px;border:1px solid #d6d6d6;border-bottom:none;padding:10px 20px;}
.block-faq:last-child{border-bottom:1px solid #d6d6d6;}
.faq-name{color:#666666;background:no-repeat right center url(../images/faq-active.png);padding-right:30px;cursor:pointer;}
.faq-desc{color:#000;display:none;margin-top:15px;}
.faq-act{background:no-repeat right center url(../images/faq-default.png);}

#toTop {
  background: url(../images/up.png) no-repeat center #1b5d97;
  display: none;
  border: medium none;
  bottom: 30px;
  overflow: hidden;
  position: fixed;
  left: 30px;
  text-decoration: none;
  text-indent: 100%;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  z-index: 1000;
}

.form-box {margin: 50px 0 0 0;}

.main-faq {margin:0 0 50px 0;}

.contact-form {width: 100%}

.new-date {display: inline-block;}
.new-title {display: inline-block;}
.text-page .new-title a {text-decoration: underline;}

@media (max-width: 530px) {
  .call2-container{width:320px;}
  .call2_form form{padding:30px 5px;}
  .dogovor-box {padding: 0;}
}

@media (max-width: 990px) {
  .head-padd {margin-top: 60px;}
  .no-margin {margin-bottom: 25px;}
  .head-title-box {text-align: center;}
}

@media (max-width: 1200px) {
  .head-title1 {font-size: 20px;}
  .head-title2 {font-size: 24px;}
  .head-title3 {font-size: 34px;}
  .head-title4 {font-size: 46px;}
}

@media (max-width: 660px) {
  .head-title1 {font-size: 12px;padding: 0 10px;}
  .head-title2 {font-size: 13px;padding: 0 10px;}
  .head-title3 {font-size: 21px;padding: 0 10px;}
  .head-title4 {font-size: 24px;padding: 0 10px;}
}
@media (max-width: 350px) {
	a.head-phone{padding:3px 20px;}
}


.text-page a {color: #1b5d97;}
.text-page a strong {color: #1b5d97;}
.oglavlenie {margin: 0 0 30px 0;}
ul.oglavlenie > li.active > a {color: #1b5d97;}
ul.oglavlenie > li > ul > li.active > a {color: #1b5d97;}
ul.oglavlenie > li > ul > li ul > li.active > a {color: #1b5d97;}

.contain-faq {margin-top: 35px;}

.tariffs .item .price {font-size: 30px; text-align: center;}
.price span {font-size: 12px;white-space: nowrap;}

.head-but-pk {position: absolute; right: 0; top: 30px;}
.head-but-pk a {color: #fff; background: #e70505; padding: 12px 40px; border-radius: 30px; text-transform: uppercase; font-weight: 700;}
.head-but-pk a:hover {background-color: #e72525;}

.head-but-mob {position: absolute; right: 200px; top: 25px; display: none;}
.head-but-mob a {color: #fff; background: #1b5d97; padding: 12px 40px; border-radius: 30px; text-transform: uppercase; font-weight: 700;}
.head-but-mob a:hover {background-color: #237bc9FF;}

.h-center {text-align: center;}
.gallery-box {margin: 20px 0 30px 0; display: flex; flex-wrap: wrap; justify-content: center;}
.gal-img {width: 270px; height: 329px; margin: 0 15px 15px 0; overflow: hidden;}
.gal-img img {max-width: 270px;}

.right-but {margin: 20px 0 0 0;}
.right-but a {color: #fff; background: #e70505; font-size: 16px; line-height: 20px; padding: 10px 0; width: 100%; display: block; text-align: center; border-radius: 30px; text-transform: uppercase; font-weight: 700;}
.right-but a:hover {background-color: #e72525;}

.tariffs .item {text-align: left;}

@media (max-width: 1199px) {
  .head-but-pk {display: none;}
  .head-but-mob {display: block;}
}
@media (max-width: 900px) {
  .head-but-mob {right: 18%;}

}

@media (max-width: 991px) {
  #homepage-block-2 {margin-top: -70px}
}

@media (max-width: 600px) {
	.head-but-mob a {    font-weight: normal;  text-transform: inherit;  padding: 10px 15px;  font-size: 16px;}
	nav.navbar .navbar-toggle {height: 30px; width: 30px;  margin: 16px 5px; padding: 0;}
	.head-but-mob {right: 45px; top: 26px;}
	nav.navbar .logo {margin: 0 5px;}
}
.white {color:#fff;}
.white:hover {color:#1b5d97;}

.on-center {text-align: center;}
.color-brown {color: #fff;}
.color-red {color: red;}
.text-justify {text-align: justify;}
a.foot-link {color: #1b5d97;}
a.foot-link:hover {color: #f33d4a;}
.but-230 {width: 230px; margin: 0 auto;}

.rev-box {display: flex; align-items: top; margin-bottom:15px; border-radius: 4px; background-color: #F5F5F5; padding: 15px 15px 15px 15px;}
.rev-image {min-width:168px; text-align: left;}
.rev-image img {margin: 0; padding: 0; max-width: 150px; border-radius: 8px;}
.review{flex-grow: 1;}
.rev-author{font-weight:bold; margin: 0 0 5px 0;}
.rev-right{display: flex;align-items: center;margin: 4px 0px;}
.rev-rating{min-width: 120px; margin-right: 10px;}
.rev-date{color:#6e6e6e; padding-bottom: 5px;}
.rev-unswer {margin-left: 50px;}

.rev-title {font-size: 16px; font-weight: bold;}
.rev-form {margin: 25px 0 0 0; max-width: 800px;}
.rev-form table {margin: 0;}
.rev-form table tbody tr td {border: none; padding: 10px 0; background-color: #fff;}
.rev-form .err {margin: 0 0 0 5px; display: inline-block; vertical-align: middle; color: red;}
.rev-form table tbody tr td.td-w {width: 140px; padding-left: 0;}
.rev-form table tbody tr td.rev-aftertext {padding: 15px 0 15px 0;}
#rev_but {outline: none;display: block;text-align: center;margin:0;height: 40px; width: 180px; color: #fff;text-transform:uppercase; background-color: #1b5d97;cursor: pointer;line-height: 38px; border: 0; border-radius: 50px;}
#rev_but:hover {background-color: #237bc9FF;}
#rev_name {border: 1px solid #E6E6E6;box-sizing:border-box;outline:none;border-radius: 10px;height: 63px;padding: 22px 25px 22px 25px;width: 100%;font-style: normal;font-weight: normal;font-size: 18px;line-height: 18px;color: #212121;}
#rev_text {border: 1px solid #E6E6E6;box-sizing:border-box;outline:none;border-radius: 10px;height: 150px;padding: 22px 25px 22px 25px;width: 100%;font-style: normal;font-weight: normal;font-size: 18px;line-height: 18px;color: #212121;}
.star {height: 18px; width: 18px; cursor: pointer; display: inline-block; vertical-align: top; margin-right: 0px;background: no-repeat url(../images/star.svg); background-size: 18px 18px;}
.star-white {height: 18px; width: 18px; cursor: pointer; display: inline-block; vertical-align: top; margin-right: 0px; background: no-repeat url(../images/nostar.svg); background-size: 18px 18px;}

#map95, #map96, #map97, #map98, #map99, #map100, #map101, #map102, #map103, #map104, #map105 {margin: 0 0 60px 0; height: 450px;}

.page-childs {margin: 15px 0;}
.page-childs a {color: #000; padding: 3px; font-weight: bold;}
.page-childs a:hover {color: #1b5d97;}
.page-childs a:before { display: inline-block; font: normal normal normal 14px/1 FontAwesome; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; content: " \f105"; font-size: 16px; margin-right: 10px; vertical-align: middle;}
.page-childs a:hover:before {color: #1b5d97;}

.docs-box {margin: 0 0 10px 0; display: flex; flex-wrap: wrap; justify-content: center;}
.doc {width: 230px; padding: 20px; display: inline-block; vertical-align: top; margin: 0 20px 20px 0; text-align: center; background-color: #FFFFFF; box-shadow: 0 8px 51px -4px rgba(0,0,0,0.06); box-sizing: border-box; border: 1px solid #ffffff;}
.doc a {text-decoration: none; display: block; margin: 0; padding: 0;}
.doc-img {height: 179px; overflow: hidden; display: flex; align-items: center; justify-content: center; border-radius: 3px; border: 1px solid #eeeeee;}
.doc-img img {max-width: 100%; max-height: 100%;}
.doc-name {font-size: 14px; line-height: 20px; color: #35363F; margin: 16px 0 10px;}
.doc-links a {font-size: 14px; line-height: 20px;}

.prems {margin: 30px 0 20px 0;display: flex; flex-wrap: wrap; justify-content: left;}
.prem-box {width: 350px; margin: 0 15px 15px 0; display: flex;}
.prem-point { margin: 0 15px 0 0; background: #1b5d97; -webkit-border-radius: 50%; -webkit-background-clip: padding-box; -moz-border-radius: 50%;  -moz-background-clip: padding; border-radius: 50%;  background-clip: padding-box; display: block; min-width: 40px; height: 40px; line-height: 39px; color: #1F1F1F; font-size: 18px; font-weight: 700; text-align: center;}
.prem-title {font-weight: bold; text-transform: uppercase;}
.prem-content {padding: 0; flex-grow: 1;}

.fa-flamp {width: 19px; height: 19px; display: inline-block; vertical-align: middle;; background-image: url("../images/flamp-icon.png");}
a.flamp-link {height: 19px;}
.head-flamp-box {display: flex; align-items: center; justify-content: center;}

.head-whatsapp-mob {display: none;}
.head-vk-mob {display: none;}

.but-disabled {opacity: 0.8; pointer-events: none;}

.docs-alert {font-style: italic; }

.row-marg {margin-bottom: 30px;}

.call2-gray {background-color: #ccc;}

:active, :hover, :focus {outline: 0; outline-offset: 0;}

.marg-top {margin-top: 50px;}
.marg-bottom {margin-bottom: 50px;}

.fa-check {color: green;}
.fa-times {color: red;}

.why-drive-box {margin: 60px 0;}
.t-center {text-align: center;}
.why-drive-text {margin: 40px 0 0 0;}


.kak-box {margin-top: 80px;}
.kak-box a {color: #007bff;}
.kak-box h3 {margin-top: 0;}
.kak-box img {max-width: 100%; margin-bottom: 30px}
.kak-blue {color: blue;}
.kak-red {color: red;}
.kak-box .row {margin-bottom: 30px;}

.instruktory {text-align: center; }
.instruktory .justify-content-center {justify-content: center!important;}
.instruktory .row {display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; margin-top: 30px;}
.instruktory img {max-width: 100%; margin-bottom: 20px;}
.instruktory .row h3 {font-style: italic; margin: 0; font-size: 18px; font-weight: normal;}
.instruktory .row h4 {font-style: italic; margin: 0; font-size: 16px;}
.instruktory .col-md-6 {margin-bottom: 40px;}
.bold-font {font-weight: bold;}

.our-cars .h1 {margin-bottom: 20px!important;}

.akcii .justify-content-center {justify-content: center!important;}
.akcii .row {display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; margin-top: 30px;}
.akcii img {max-width: 100%;}
.akcii .font-20 {height: 56px;}
.akcii .col-md-6 {margin-bottom: 20px;}
.akcii h3 {font-size: 24px;}

.modal-callback2-content {overflow-x:hidden;}

#homepage-block-2.head-bg {background-image: url(/template/images/_homepage-1-bg.jpg);}

.inner-two-col .container {width: auto;}

.metro-map {position: relative; background: url(/template/images/metro.jpg) no-repeat; background-size: cover; width: 1110px; height: 1190px; margin-bottom: 40px; box-sizing: border-box;}
.metro-map .pin {display: block; position: absolute; margin-left: -18px; margin-top: -50px;}
.metro-map .pin i {font-size: 60px; color: #EE1C25;}

.kontakty-box .row {display: -ms-flexbox;display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-right: -15px; margin-left: -15px;}
.px-2 {margin-bottom: 50px;}
.px-2 a {color: #007bff;}
.px-2 a:hover {color: #006bd5;}
.border {border: 2px solid #ee2722; border-radius: 10px; display: block;}
.fables-contact-icon {position: relative; top: -15px; background-color: #fff; padding: 0 15px;}
.kontakty-box h3 {font-size: 17px; line-height: 16px; margin: 0 0 5px 0;}
.kontakty-box address {font-size: 16px; line-height: 16px; margin: 0 0 5px 0;}
.height-100 {height: 100% !important;}
.text-white{ border-radius: 50px; padding: 2px 7px; margin: 0 5px 0 0; color: #fff;}
.text-black{ border-radius: 50px; padding: 2px 7px; margin: 0 5px 0 0; color: #000;}
.bg-4bbe53 {background-color: #4bbe53;}
.bg-2c75c4 {background-color: #2c75c4;}
.bg-85412e {background-color: #85412e;}
.bg-f47025 {background-color: #f47025;}
.bg-89339e {background-color: #89339e;}
.bg-fbc81e {background-color: #fbc81e;}
.bg-9f9f9f {background-color: #9f9f9f;}
.bg-a8d92d {background-color: #a8d92d;}
.bg-de1e35 {background-color: #de1e35;}

.kontakty-head h3 {font-size: 20px;}
.kontakty-head a {color: #007bff;}
.kontakty-head a:hover {color: #006bd5;}

.kat-obucheniya .col-md-3 {margin-bottom: 30px;}

.fa-map-marker-alt {display: block; width: 39px; height: 50px; background: url(/template/images/marker.png) no-repeat; background-size: cover;}

.map-mes {padding: 15px; display: none; position: absolute; top: 0; left: 0; border: 1px solid gray; border-right: 3px solid #0367B3; background-color: #fff; width: 275px; z-index: 9000;}
.map-mes a {color: #007bff; margin: 0;}
.map-mes a:hover {color: #006bd5;}
.map-mes p {margin: 0;}
.map-mes h4 {margin: 0; padding: 0; font-size: 18px;}
.map-mes address {margin: 0 0 5px 0;}

#floating-side-button {
    z-index: 1000;
    color: black;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    padding: 0.1em 1.5em;
    background-color: #fff;
}
#floating-side-button {
    position: fixed;
    left: -20px;
    bottom: 15px;
    cursor: pointer;
}

#floating-side-button:after {
    content: "Нажми!";
    position: absolute;
    z-index: -1;
    top: -2px;
    bottom: -2px;
    left: -2px;
    width: calc(100% + 6*(1em*90/135) - 2px*2*2);
    text-align: right;
    color: #fff;
    font-size: 90%;
    padding: 2px 5px 0 0;
    border-radius: 5px;
    border: 2px solid #1b5d97;
    -webkit-transform: skewX(-10deg);
    transform: skewX(-10deg);
    background: linear-gradient(#1b5d97, #e34754) no-repeat 100% 0;
    background-size: calc(6*(1em * 90/135) + 0.5em) 100%;
    box-shadow: inset calc(-6*(1em * 90/135) - 0.5em) 0 rgba(255,255,255,0);
    transition: 0.3s;
}

nav.navbar.affix {position: fixed; top: 42px; width: 100%; z-index: 10000;}

.modal-online {max-width: 800px; display: none;}
.fables-second-text-color {color: #1b5d97;}
.fables-main-text-color {color: #0367B3;}

.border-yellow {padding: 15px; border: 1px solid #1b5d97; border-radius: 3px;}

.akciya-box {border: 2px solid red; border-radius: 4px; text-align: center; width: 400px; margin: 0 auto; font-size: 17px; font-weight: bold; color: red; padding: 20px;}
.akciya-box-inform {border: 2px solid red; margin: 0 0 20px 0; border-radius: 4px; text-align: center; width: 100%; font-size: 17px; font-weight: bold; color: red; padding: 10px;}

.homepage-block-yellow-3 h4 a {color: #FFFFFF;}

.map-box {margin: 30px 0 15px 0;}

.phone-icon {display:block; margin: 0 auto; width: 44px; height: 44px; background-image: url(../images/s-phone-icon.svg); z-index: 50; background-size: 100%;}
.whatsapp-icon {display:block; margin: 0 auto; width: 44px; height: 44px; background-image: url(../images/s-whatsapp-icon.svg); z-index: 50; background-size: 100%;}
.vk-icon {display:block; margin: 0 auto; width: 47px; height: 47px; background-image: url(../images/s-vk-icon.svg); z-index: 50; background-size: 100%;}
.telegram-icon {display:block; margin: 0 auto; width: 44px; height: 44px; background-image: url(../images/s-telegram-icon.svg); z-index: 50; background-size: 100%;}
.ok-icon {display:block; margin: 0 auto; width: 44px; height: 44px; background-image: url(../images/s-ok-icon.svg); background-repeat: no-repeat; z-index: 50; background-size: 100%;}
.chat-icon-box {position: fixed; height: 50px; width: 50px; left: 30px; bottom: 30px; border-radius: 50%; display: flex; justify-content: center; align-items: center; background: #1b5d97; box-shadow: 0 0 20px 0 rgba(0,0,0,.3); transition: all 0.2s linear; transition: all 0.2s ease-in-out; animation: t898__btn-pulsate 2s ease-out; animation-iteration-count: infinite; -webkit-animation: t898__btn-pulsate 2s ease-out; -webkit-animation-iteration-count: infinite; cursor: pointer; z-index: 1000;}
.chat-icon-box-white {background-color: #FFFFFF;}
.chat-icon {width: 50px; height: 50px; background: url(../images/s-chat-icon.svg) center no-repeat; z-index: 50; background-size: 60%;}
.chat-icon-close {width: 50px; height: 50px; background: url(../images/s-chat-icon-close.svg) center no-repeat; z-index: 50;}
.chat-question {position: absolute; left: 80px; white-space: nowrap; background: #fff; padding: 9px 13px; font-size: 15px; border-radius: 3px; transform: translateX(0%) translateY(-50%); top: 50%; background: #292929; color: #fff; opacity: .85; transition: all 0.1s linear; line-height: 1.35; font-weight: 600;}
.chat-question:after {content: ''; position: absolute; width: 0; height: 0; border: solid transparent; border-width: 10px; top: 50%; left: -20px; transform: translateY(-50%);border-right-color: #292929;}

.s-box {display: none; position: fixed; width: 280px; bottom: 90px; left: 30px; padding: 30px; background-color: #efefef; border-radius: 5px; text-align: center; box-shadow: 0 0 20px 0 rgba(0,0,0,.4); z-index: 5;}
.s-head {text-align: center; font-size: 20px; margin: 0 0 15px 0; font-weight: bold;}
.s-line {display: flex; justify-content: center; align-items: center; flex-wrap: wrap; text-align: center; margin: 0;}
.s-el {width: 68px; margin: 0 0 10px 0; text-align: center;}
.s-el p {font-size: 12px; margin: 5px 0 0 0; text-align: center;}
.s-foot {text-align: center; font-size: 15px; margin: 0;}

.g-box {padding-right: 20px;padding-bottom: 40px;}
.g-gerb {width: 210px; margin: 0; padding: 0;}
.g-gerb img {max-width: 100%;}
.g-text {width: 100%; text-align: left; margin: 0 0 0 10px; padding: 0; font-size: 14px;}
.g-text a {color: #1b5d97;}
.g-text a:hover {color: #237bc9;}

.line-title {font-size: 25px; color: #FFFFFF; text-align: center; font-weight: 500; text-transform: uppercase; font-family: 'Fira Sans Condensed', sans-serif;}

#block-footer ul.nav {width: 49%; margin-right: 1px; float: left;}

.c-box {display: flex; align-items: start;}
.c-box img {width: 85px; margin: 0 10px 0 0; display: block; border-radius: 50px;}

.li-bottom {padding-bottom: 20px;}

a.content-but {color: #fff; background: #1b5d97; padding: 12px 40px; border-radius: 30px; text-transform: uppercase; font-weight: 700; margin: 5px 0 0 0; display: inline-block;}
a.content-but:hover {background-color: #237bc9;}

.owl-carousel {position: relative; margin-top: 124px;}
.owl-carousel .item {position: relative; background-size: cover; background-position: center; display: flex; justify-content: center; align-items: center; z-index: 1;}
.item-inner {margin: 0; text-align: left; color: #fff; position: relative; z-index: 1;}
.owl-carousel .owl-nav button.owl-prev {height: 55px; width: 55px; line-height: 55px; top: 50%; left: 30px; background-color: #1b5d97; color: #fff; position: absolute; border: none; margin: 0; padding: 0; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; transition: all 0.4s ease; border-radius: 100%; z-index: 1000;}
.owl-carousel .owl-nav button.owl-prev:hover {background-color: #237bc9;}
.owl-carousel .owl-nav button.owl-next {height: 55px; width: 55px; line-height: 55px; top: 50%; right: 30px; background-color: #1b5d97; color: #fff; position: absolute; border: none; margin: 0; padding: 0; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; transition: all 0.4s ease; border-radius: 100%; z-index: 1000;}
.owl-carousel .owl-nav button.owl-next:hover {background-color: #237bc9;}
a.but-main-slider {color: #fff; background: #e70505; margin: 15px 0 0 0; padding: 12px 40px; border-radius: 30px; text-transform: uppercase; font-weight: 700; display: inline-block;}
a.but-main-slider:hover {background-color: #e72525; color: #FFFFFF;}


.owl-reviews {width: 900px; margin: 0 auto;}
.owl-reviews .item {position: relative; height: 65vh; display: flex; justify-content: left; align-items: center; z-index: 1; background-repeat: no-repeat;}
.owl-reviews .owl-item {margin: 20px 0; }
.owl-reviews .owl-stage {display: flex; align-items: center;}

.otzyvy-box {display: flex; justify-content: center; align-items: center; margin: 20px 0 50px 0;}
.otzyvy {display: flex; align-items: center; justify-content: center; margin: 0 10px;}
.otzyvy img {max-width: 100%; height: auto; transition: transform 0.3s;}
.otzyvy img:hover {transform: scale(1.2);}

.kak-title a {color: #1b5d97;}
.kak-title a:hover {color: #237bc9;}

.cats-box {margin: 0 0 10px 0; display: flex; flex-wrap: wrap; justify-content: center;}
.cats-box-main {margin: 0 0 10px 0; display: flex; flex-wrap: wrap; justify-content: center;}
.cb {width: 29%; position: relative; transition: 0.3s; padding: 30px 15px 150px 15px; display: inline-block; vertical-align: top; margin: 0 3% 3% 0; text-align: center; background-color: #FFFFFF; box-shadow: 0 8px 51px -4px rgba(0,0,0,0.06); box-sizing: border-box; border: 1px solid #ffffff; text-align: left;}
.cb:nth-child(3n) {margin-right: 0;}
.cb p {font-size: 14px;}
.cb:hover {-webkit-box-shadow: 0 0px 15px rgba(0, 0, 0, 0.15); -moz-box-shadow: 0 0px 15px rgba(0, 0, 0, 0.15); box-shadow: 0 0px 15px rgba(0, 0, 0, 0.15);}
.cb-title {text-align: center; margin: 0 0 10px 0; font-size: 18px; font-weight: bold; text-transform: uppercase; line-height: 20px;}
.cb-title a {font-size: 18px; font-weight: bold; text-transform: uppercase; line-height: 20px;}
.cb-title a:hover {color: #237bc9;}
.cb ul li {text-align: left; font-size: 14px; margin: 0;}
.cb-img { margin: 20px 0; display: flex; align-items: center; justify-content: center;}
.cb-img img {max-width: 100%; max-height: 100%;}
.cb-name {font-size: 20px; line-height: 24px; color: #35363F; margin: 16px 0 10px;}
p.cb-text {font-size: 14px; margin: 0; padding: 0;}
p.cbm-text {font-size: 14px; margin: 0; padding: 0;}
.cb-price {font-size: 30px; text-align: center; font-weight: bold;}
.cb-price span {font-size: 24px; text-align: center;}
.cb a {color: #1b5d97;}
.cb-but {text-align: center; margin: 15px 0 10px 0;}
.cb-but a {color: #fff; background: #e70505; padding: 10px 35px; border-radius: 30px; text-transform: uppercase; font-weight: 700; display: inline-block;}
.cb-but a:hover {background-color: #e72525;}
.cb-like {border: 1px solid #000; border-radius: 8px;}
.cb-like::before {position: absolute; content: ""; top: 10px; left: 10px; width: 40px; height: 44px; background-image: url(../images/like-icon.jpg); z-index: 50;}
.cb-like .cb-title {margin: 0 0 10px 40px;}
.cb-rassrochka {text-align: center;}

.cb-bottom {position: absolute; width: 100%; padding: 0 20px 0 0; bottom: 20px; text-align: center; display: flex; flex-wrap: wrap; justify-content: center; flex-direction: column;}

.cats-box .cb {width: 100%; margin-right: 0;}
.cats-box .cb:nth-child(2n) {margin-right: 0;}
.cats-box .cb:nth-child(3n) {margin-right: 0;}

.cb-oldprice {text-decoration: line-through; font-size: 20px; text-align: center;}

.cats-box-full {margin: 0 0 10px 0; display: flex; flex-wrap: wrap; justify-content: center;}
.cats-box-full .cb {width: 100%;}

.red-line-text {color: #FFFFFF; text-align: center; font-weight: bold;}
.red-line-text p {margin: 0 0 4px 0;}

.head-phone-mob {display: none;}

.tariffs .price {margin-top: 5px;}

.clr {clear: both;}

.instruktory-text {margin: 20px 0 20px 0;}

.v-box {display: flex; justify-content: center;  flex-wrap: wrap; text-align: center; margin: 0 0 15px 0;}
.v-left {width: 560px; height: 315px; overflow: hidden; margin: 0 0 20px 0;}
.v-left img {max-width: 100%; height: auto;}
.v-right {width: 560px; margin: 0 0 20px 0; text-align: center;}

p.pak-price {font-size: 22px; color: #1b5d97; font-weight: bold;}

.d-gallery {z-index: 9000;}
.d-items {margin: 0 0 10px 0; display: flex; flex-wrap: wrap; justify-content: left;}
.d-items a {display: block; width: 150px; height: 150px; margin: 0 15px 15px 0; overflow: hidden;}
.d-items a img {max-width: 100%; margin: 0;}
.d-title {margin: 0 0 15px 0; font-size: 20px; font-weight: bold;}

.text-page p.vznos-pak {font-size: 14px; text-align: center;}
p.vznos-pak {font-size: 14px; text-align:center;}

a.but-lk {padding: 5px 10px; margin: -2px 0 0 133px; font-size: 14px; line-height: 14px; text-decoration: none; border: 1px solid #ffffff; border-radius: 4px; text-align: center; float: left;}
a.but-lk:hover {text-decoration: none;}

nav.navbar ul.navbar-nav a.but-lk-inmenu { display: none; padding: 15px 15px; margin: 10px 0 0 40px; font-size: 22px; line-height: 14px; text-decoration: none; border: 1px solid #ffffff; border-radius: 4px; text-align: center;}
nav.navbar ul.navbar-nav a.but-lk-inmenu:hover {text-decoration: none;}

.pak-price {color: red; font-size: 18px; font-weight: bold; display: block;}

.pak-marg-bottom {margin-bottom: 30px;}

.text-page img {margin: 0; max-width: 100%;}

#totop {background: url(../images/up.png) no-repeat center #1b5d97; display: none; border: medium none; bottom: 30px; overflow: hidden; position: fixed; left: 30px; text-decoration: none; text-indent: 100%; width: 45px; height: 45px; border-radius: 50%; z-index: 1000;}
#totop:hover {background-color: #237bc9;}

.li-red {color: red;}

.nav-wrapper {position: fixed; z-index: 10000; width: 100%;}

.main-contacts {margin-bottom: 40px; text-align: center;}
.mc-info {margin: 0 0 20px 0;}

.big-number {font-size: 36px; font-weight: bold; color: #1b5d97;}

.head-line {margin: 0; padding: 0; display: flex; justify-content: space-between; flex-wrap: wrap; position: relative;}
.hl-item {margin: 0 25px 5px 0; padding: 0; display: flex; justify-content: start; flex-wrap: nowrap; position: relative; text-align: center; min-width: 150px;}
.hl-item .fa {margin: 10px 10px 0 0;}
.hl-item p {margin: 0; padding: 0; line-height: 12px;}
.hl-item a {color: #fff; font-size: 14px; margin: 0; padding: 0; line-height: 12px;}
.hl-one {margin: 5px 0 0 0;}

.ins-box {margin: 20px 0 0 0; display: flex; flex-wrap: wrap; justify-content: center;}
.ins {width: 330px; transition: 0.3s; padding: 0; margin: 0 40px 40px 0; box-sizing: border-box; border: 1px solid #ffffff; text-align: center;}
.ins-img {margin: 0 0 15px 0;}
.ins-img img {max-width: 100%; border-radius: 5px; margin: 0;}
.ins p {line-height: 1.5; font-style: italic;}
.ins span {font-weight: bold;}
.ins-box-marg-top {margin-top: 25px;}

.main-title {text-align: center;}
.main-subtitle {color: #1b5d97; text-align: center; margin-top: 10px;}

.ser-box {padding: 0; width: 80%; margin: 0 auto; display: flex; justify-content: start; flex-wrap: wrap; position: relative;}
.ser-item {margin: 0 0 35px 0; width: 50%; padding: 0; display: flex; justify-content: start; flex-wrap: nowrap; position: relative; text-align: center;}
.ser-text {margin: 0 0 0 100px; min-height: 80px; display: flex; justify-content: start; flex-wrap: wrap; position: relative; align-items: center;}
.ser-name {text-align: left; font-weight: bold;}
.ser-descr {text-align: left;}
.ser-icons {position: absolute; left: 0; top: 0; width: 80px; height: 80px; background: url(../images/ser-icons.png) 0 0 no-repeat transparent;}
.ser-icon1 {background-position: 0 0;}
.ser-icon2 {background-position: 0 -160px;}
.ser-icon3 {background-position: 0 -80px;}
.ser-icon4 {background-position: 0 -240px;}
.ser-icon5 {background-position: 0 -320px;}
.ser-item p {margin: 0; padding: 0; line-height: 12px;}
.ser-item a {color: #fff; font-size: 14px; margin: 0; padding: 0; line-height: 12px;}

.con-box {margin: 0; padding: 0; display: flex; justify-content: start; flex-direction: column; flex-wrap: wrap; position: relative;}
.con-item {margin: 0 0 15px 0; padding: 0; display: flex; justify-content: start; flex-wrap: nowrap; position: relative; text-align: left; min-width: 150px;}
.con-item .fa {margin: 10px 10px 0 0; color: #1b5d97;}
.con-item p {margin: 0; padding: 0; line-height: 12px; color: #fff;}
.con-item a {color: #fff; font-size: 14px; margin: 0; padding: 0; line-height: 12px;}
.con-item p a {color: #9d9d9d;}

.bvi-active #top-bar {position: relative; top: 0;}
.bvi-active #nav-wrapper {position: relative; top: 0;}
.bvi-active .owl-carousel {margin-top: 0;}
.bvi-active nav.navbar.affix {position: relative; top: 0;}

.but-more-reviews {margin-bottom: 30px;}

.table-box {overflow-x: scroll;}

.rev-servises-box {margin: 0 0 10px 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: center;}
.rev-servises-box a {width:200px; height: 180px; margin: 0 15px 15px 0; border-radius: 5px; text-align: center; border: 1px solid #d7d7d7; display: flex; flex-wrap: wrap; justify-content: center; align-items: center;}
.rev-servises-box img {margin: 0; padding: 0; max-width: 150px; border-radius: 8px;}

.secnews-contain{border-radius:5px;background-color:#FFFFFF;box-shadow:0 8px 51px -4px rgba(0,0,0,0.06);overflow:hidden;margin-bottom:25px;}
.secnews-contain a{text-decoration:none;}
.secnews-img{position:relative;width:150px;height:100%;overflow:hidden;float:left;text-align: center; margin: 0 15px 15px 0;}
.secnews-img img{max-width:100%;max-height: 100%; margin: 0; padding: 0;}
.secnews-des{box-sizing:border-box;padding:30px 40px;}
.secnews-date{color: #A7ACB8;font-size: 16px;line-height:26px;margin-bottom:18px;}
.secnews-name {margin-bottom:20px;}
.secnews-name a{color: #35363F;font-size:24px;line-height:29px;}
.secnews-name a:hover{color: #1b5d97;}
.secnews-text{color: #76787E;font-size:16px;line-height:26px; margin:0 0 20px 0;}
.secnews-contain:hover .secnews-name{color:#1b5d97;}
.secnews-more a {display: inline-block; cursor: pointer; margin: 0; padding: 0 30px; height: 40px; font-size: 14px; text-transform: uppercase; border-radius: 50px; color: #ffffff; background-color: #1b5d97; text-decoration: none; text-align: center; line-height: 40px;}
.secnews-more a:hover {background-color: #237bc9;}
a.hinstr-more {display: inline-block; cursor: pointer; margin: 0; padding: 0 30px; height: 40px; font-size: 14px; text-transform: uppercase; border-radius: 50px; color: #ffffff; background-color: #1b5d97; text-decoration: none; text-align: center; line-height: 40px;}
a.hinstr-more:hover {background-color: #237bc9;}

.but-super {text-align: center; margin: 0 0 40px 0;}
.but-super a {color: #fff; background: #1b5d97; padding: 12px 40px; border-radius: 30px; text-transform: uppercase; font-weight: 700;}

.akcii-box {margin: 0 0 10px 0; display: flex; flex-wrap: wrap; justify-content: center;}
.akcii-col {width: 48%; margin: 0 2% 2% 0;}
.akcii-box ul {text-align: left;}
.akcii-box ul li {background: rgba(0, 0, 0, 0) url(../images/checked.png) no-repeat scroll 0 0; list-style-type: none; padding-bottom: 10px; padding-left: 30px; padding-top: 0; margin-left: 0;}

.sf-box{display: none;box-sizing: border-box;z-index: 39;position: fixed;bottom: 0;width: 100%;padding-top: 16px; background-color: #fff;}
.sf-box-inner{position: relative;display: flex;justify-content: space-between;align-items: center; width: 100%;}
.sf-box-inner div{width: 49%;display: flex;justify-content: center;align-items: center;}
.sf-box-inner::before{position: absolute;content: "";top: 50%;left: 50%;transform: translateY(-50%);width: 2px;height: 100%;background-color: #eaeaea;}
.sf-phones {display: flex; flex-wrap: wrap; justify-content: center; flex-direction: column; font-size: 14px;}
.sf-phone{position: relative; margin: 0; padding: 0 0 0 30px; color: #000;font-weight: bold; line-height: 20px;}
.sf-phone::before{position: absolute;content: "";top: 50%;left: 0;transform: translateY(-50%);width: 20px;height: 20px;background-image: url(../images/phas.svg);background-size: contain;background-position: center;background-repeat: no-repeat;}
.sf-whatsapp {position: relative; margin: 0; padding: 0 0 0 30px; color: #000;font-weight: bold; line-height: 24px;}
.sf-whatsapp::before {position: absolute;content: "";top: 50%;left: 0;transform: translateY(-50%);width: 20px;height: 20px;background-image: url(../images/whatsapp-icon.svg);background-size: contain;background-position: center;background-repeat: no-repeat;}
.sf-but {width: auto; height: 32px; margin: -4px 0 0 0; box-sizing: border-box; padding: 0 15px; font-size: 14px; color: #FFFFFF; background-color: #1b5d97; border-radius: 50px; display: flex; justify-content: center; align-items: center;}
a.sf-but:hover {background-color: #237bc9; color: #fff;}

.table-box {overflow-x: scroll;}

.akciya-item {margin: 0 0 20px 0; display: flex; flex-wrap: wrap; justify-content: space-between; background-color: #ffffff; border: 1px solid #e0e0e0; border-radius: 5px;}
.akciya-left {padding: 0 20px 20px 20px; width: 60%;}
.akciya-right {width: 40%;}
.akciya-item img {max-width: 100%; max-height: 100%;}

.avtopark-box {margin: 40px 0 0 0; display: flex; flex-wrap: wrap; justify-content: center;}
.avtopark {width: 330px; transition: 0.3s; padding: 0; margin: 0 40px 40px 0; box-sizing: border-box; border: 1px solid #ffffff; text-align: center;}
.avtopark-img {margin: 0 0 15px 0;}
.avtopark-img img {max-width: 100%; border-radius: 5px; margin: 0;}
.avtopark p {line-height: 1.5; font-style: italic;}
.avtopark span {font-weight: bold;}
.avtopark-box-marg-top {margin-top: 25px;}

.lic-title {margin: 0 0 10px 0; font-size: 20px; font-weight: bold; text-align: center;}
.lic-gallery {margin: 0 0 15px 0; padding: 0 30px; display: flex; flex-wrap: wrap; justify-content: center;}
.lic-gallery a {display: block; width: 210px; height: 300px; padding: 15px; margin: 0 20px 20px 0; border: 1px solid #e1e1e1; overflow: hidden; border-radius: 5px;}
.lic-gallery img {max-width: 100%; border-radius: 5px;}

a.but-lk2 { display: block; margin: 2px 0 0 0; padding: 5px 12px 0 12px; height: 30px; line-height: 18px; border: 1px solid #ffffff; border-radius: 5px; color: #ffffff; font-size: 14px;}
a.but-lk2:hover {background-color: #ffffff; color: #1e1d1c;}

.r-box {max-width: 620px; margin: 0 auto; margin-top: 30px; margin-bottom: 30px; padding: 0 20px;}
.r-item {margin: 0 0 20px 0; display: flex; flex-wrap: wrap; justify-content: space-between; background-color: #ffffff; border-bottom: 1px solid #e0e0e0; }
.r-item:last-child {border-bottom: none;}
.r-title {font-size: 20px; font-weight: bold; color: #1b5d97;}
.r-left {padding: 0 20px 10px 20px; width: 70%;}
.r-right {width: 30%; display: flex; flex-wrap: wrap; justify-content: center; align-items: center;}
a.r-but {color: #fff; background: #e70505; padding: 12px 40px; border-radius: 30px; text-transform: uppercase; font-weight: 700;}
a.r-but:hover {color: #ffffff; background-color: #e72525;}


.redprice {color: #e70505;}
.greenbg {color: #2ca84f;}
.marg-top2 {margin-top: 10px;}
.table {display: table; width: 100%; border-collapse: collapse; margin: 20px 0; border-radius: 5px;}
.table-row {display: table-row;}
.table-cell {display: table-cell; padding: 10px; border: 1px solid #ccc; text-align: center; vertical-align: middle;}
.table-header {display: table-row; background-color: #f2f2f2; font-weight: bold;}
.table-cell:hover {background-color: #f9f9f9;}

a.foot-lic {color: #ffffff; font-size: 13px;}
a.foot-lic:hover {color: #ffffff; text-decoration: underline;}

a.but-lk2-mob {display: none; margin: 0 25px; padding: 15px 20px; line-height: 20px; border: 1px solid #ffffff; border-radius: 5px; color: #ffffff; font-size: 18px;}
a.but-lk2-mob:hover {background-color: #ffffff; color: #1e1d1c;}

.agreed-modal {display: none; width: 370px; padding: 15px; position: fixed; right: 20px; bottom: 20px; background: #fff; box-shadow:0 0 0px 1px rgba(97, 105, 116, 0.4); z-index: 4000;}
.am-title {margin: 0 0 8px 0; font-size: 16px; font-weight: bold;}
.am-text {margin: 0 0 13px 0; font-size: 14px; line-height: 20px;}
.am-text a {color: #1b5d97;}
.am-text a:hover {color: #237bc9;}
.am-but {margin: 0; padding: 7px 10px; width: 100px; font-size: 14px; text-align: center; color: #fff; background-color: #000000; border: 0; outline: none; cursor: pointer;}
.am-but:hover {background-color: #696969;}

.chtexts4 {font-weight: normal; font-size: 14px;}
.chtexts4 a {color: #1b5d97;}
.chtexts4 a:hover {color: #237bc9;}

.form-caption {font-size: 14px; font-weight: normal;}
.form-caption a {color: #1b5d97;}
.form-caption a:hover {color: #237bc9;}

.default-gallery {margin: 20px 0 0 0; display: flex; flex-wrap: wrap; justify-content: center;}
.default-gallery a {display: block; width: 23%; margin: 0 2% 2% 0; text-align: center; border-radius: 5px;}
.default-gallery a:nth-child(4n) {margin-right: 0;}
.default-gallery a img {max-width: 100%; max-height: 100%; border-radius: 5px;}

@media (max-width: 1200px) {
    #top-bar {height: auto;}
    nav.navbar .logo {padding: 4px 0 4px 0;}
  .head-vk-mob {position: absolute; right: 360px; top: 17px; color: #fff; padding: 0 0 0 34px; line-height: 38px; display: flex;}
  .head-vk-icon {width: 39px; height:39px; margin-right: 5px; display: block; background: no-repeat url(../images/vk-icon.svg); background-size: 39px 39px;}
  .head-whatsapp-mob {position: absolute; right: 410px; top: 18px; color: #fff; padding: 0 0 0 34px; line-height: 38px; display: flex;}
  .head-whatsapp-icon {width: 38px; height:38px; margin-right: 5px; display: block; background: no-repeat url(../images/whatsapp-icon.svg); background-size: 38px 38px;}
  .head-phone-mob {display:block; position: absolute; width: 38px; height: 38px; top: 18px; right: 470px; background-image: url(../images/s-phone-icon.svg); z-index: 50; background-size: 100%;}
    .metro-map {width: 930px; height: 998px;}
    .fa-map-marker-alt {background-size: 85%;}
    .metro-map .pin {margin-left: -15px; margin-top: -42px;}
    a.head-phone {font-size: 13px;}
    a.but-lk {margin: -2px 0 10px 15px; padding: 3px 10px;}
    nav.navbar ul.navbar-nav a.but-lk-inmenu {display: inline-block;}
    .nav-wrapper {height: 74px; position: relative;}
    #top-bar {position: relative; display: block; height: auto;}
    .owl-carousel {margin-top: 0;}
    .nav-wrapper{margin-top: 0; top: 0;}
    nav.navbar.affix {top: 0;}
    header.page-header {margin-top: 0;}
    nav.navbar {height: 74px;}
    .marg-top100 {margin-top: 0;}
    .avtopark:nth-child(2n) {margin-right: 0;}
    .chat-icon-box {display: none;}
    .s-box {display: none;}
    a.but-lk2-mob {display: block;}
}
@media (max-width: 1000px) {
  .ins:nth-child(2n) {margin-right: 0;}
  .ser-box {width: 100%;}

  .cats-box-main .cb {width: 48%; margin: 0 3% 3% 0;}
  .cats-box-main .cb:nth-child(3n) {margin: 0 3% 3% 0;}
  .cats-box-main .cb:last-child {margin-right: 0;}

  .default-gallery a {width: 29%; margin: 0 3% 3% 0;}
  .default-gallery a:nth-child(4n) {margin: 0 3% 3% 0;}
  .default-gallery a:nth-child(3n) {margin-right: 0;}
}
@media (max-width: 767px) {
  #top-bar {display: none;}
  .akcii-col {width: 100%;}
}
@media (max-width: 991px) {
    .prem-box {width: auto;}
    .prem-content {width: 100%;}

    .kak-box .col-md-4 {text-align: center;}
    #homepage-block-2.head-bg {background-size: 320%;}

    .kontakty-box .row {display: block;}
    .metro-map {width: 690px; height: 740px;}
    .fa-map-marker-alt {background-size: 60%;}
    .metro-map .pin {margin-left: -11px; margin-top: -31px;}

  #block-footer ul.nav {width: 100%;}
  a.head-phone {font-size: 14px;}
  .akciya-box-inform {margin: 0;}

  .tariffs .cb:nth-child(2n) {margin-right: 0;}

  .owl-reviews {width: 100%;}
  .marg-bottom {padding: 0;}
  .services .row > div {margin-bottom: 20px;}
  .but-main-slider-box {text-align: center;}
  .matchHeight {width: 33.3333%;}
}
@media (max-width: 900px) {
  .head-phone-mob {right: 420px;}
  .head-whatsapp-mob {right: 360px;}
  .head-vk-mob {right: 310px;}
}
@media (max-width: 800px) {
    .metro-map-box {display: none;}

  .default-gallery a {width: 45%; margin: 0 3% 3% 0;}
  .default-gallery a:nth-child(3n) {margin: 0 3% 3% 0;}
  .default-gallery a:nth-child(2n) {margin-right: 0;}
}
@media (max-width: 750px) {
  .head-phone-mob {right: 340px;}
  .head-whatsapp-mob {right: 280px;}
  .head-vk-mob {right: 230px;}
    .head-but-mob {right: 11%;}
    #homepage-block-2.head-bg {background-size: 420%;}
    .table-box {overflow-x: scroll;}
    .table-drive {min-width: 500px;}
  .s-box {right: 15px; bottom: 95px;}
  .chat-icon-box {right: 15px; bottom: 15px;}
  .chat-question {display: none;}
  .owl-carousel .owl-nav button.owl-prev {width: 40px; height: 40px; line-height: 40px; left: 20px;}
  .owl-carousel .owl-nav button.owl-next {width: 40px; height: 40px; line-height: 40px; right: 20px;}
  .item-inner h2 {margin: 0 0 10px; font-size: 26px;}
  .otzyvy-box {display: block;}
  .otzyvy:nth-child(2) {margin-top: 50px;}
  #totop {left: 10px; bottom: 10px;}
  .avtopark {width: 45%; margin: 0 5% 5% 0;}
}
@media (max-width: 720px) {
  .cats-box-main .cb {width: 100%; margin-right: 0;}
  .cats-box-main .cb:nth-child(2n) {margin-right: 0;}
  .cats-box-main .cb:nth-child(3n) {margin-right: 0;}
}
@media (max-width: 710px) {
    .head-whatsapp-phone {display: none;}
    .ins {width: 100%; margin-right: 0;}
    .ser-item {width: 100%;}
    .cell-bg p {margin: 0 0 15px 0; font-size: 22px; line-height: 30px;}
    .sf-box{display: flex;height: 50px;padding: 0;align-items: center;}
    .chat-icon-box {bottom: 50px; left: 15px;}
    .s-box {bottom: 110px; left: 15px;}
}
@media (max-width: 630px) {
  .akciya-left {width: 100%;}
  .akciya-right {width: 100%;}
}
@media (max-width: 600px) {
  .head-phone-mob {right: 260px;}
  .head-whatsapp-mob {right: 200px;}
  .head-vk-mob {right: 150px;}
    .v-box {width: 100%; display: block;}
    .v-left {width: 100%; display: block;}
    .v-left img {max-width: 100%;}
    .v-right {width: 100%;display: block;}
    .matchHeight {width: 100%;}
}
@media (max-width: 540px) {
    .gal-img {width: 100%; margin-right: 0;}
    .gal-img img {max-width: 100%;}
    .r-left {width: 100%;}
    .r-right {width: 100%;}
    .r-but {margin-bottom: 20px;}
}
@media (max-width: 500px) {
    .head-phone-mob {right: 250px;}
    .head-whatsapp-mob {right: 190px;}
    .head-vk-mob {right: 140px;}
    .rev-box {flex-direction: column;}
    .rev-image {width: 100%; text-align: center;}
    .review{flex-grow: 1;}
    .logo img {width: 200px;}
    #homepage-block-2.head-bg {background-size: 800%;}
    .akciya-box {width: auto; margin-right: 10px; margin-left: 10px;}
    .akciya-box-inform {width: auto; margin-right: 10px; margin-left: 10px;}
    .footer-center-box .row {margin: 0;}
    #block-footer ul.nav {margin: 0;}
    .cell-bg p {margin: 0 0 15px 0; font-size: 20px; line-height: 28px;}
}
@media (max-width: 479px) {
  .foot-clear-both {clear: both;}
  .agreed-modal {width: auto; right: 20px; left: 20px;}
  nav.navbar .logo {width: auto;}
  nav.navbar .logo .logo-text {display: none;}

  .default-gallery a {width: 100%; margin: 0 0 20px 0;}
  .default-gallery a:nth-child(3n) {margin: 0 0 20px 0;}
  .default-gallery a:nth-child(2n) {margin: 0 0 20px 0;}
}
@media (max-width: 430px) {
    .head-phone-mob {right: 225px;}
    .head-whatsapp-mob {right: 175px;}
    .head-vk-mob {right: 130px;}
    .call2-container{width:270px;}
    .avtopark {width: 100%; margin: 0 0 25px 0;}
    .table-cell {padding: 5px; font-size: 14px;}
}
@media (max-width: 400px) {
  .cell-bg p {margin: 0 0 15px 0; font-size: 19px; line-height: 26px;}
}

@media (max-width: 360px) {
  .head-vk-mob {display: none;}
  .head-phone-mob {right: 185px;}
  .head-whatsapp-mob {right: 130px;}
}

#let1_form {padding-top: 0;}
.p-center {text-align: center;}

.t-table {max-width: 100%; min-width: 560px; margin: 20px 0;}
.t-table div {font-size: 14px;}
.t-tr {margin: 0; display: flex; flex-wrap: wrap; justify-content: center; }
.t-td {width: 33.3333333333%; padding: 10px; border: 1px solid gray; border-right: none; border-bottom: none;}
.t-td:last-child {border-right: 1px solid gray;}
.t-td:nth-child(1), .t-th:nth-child(1) {width: 50%}
.t-td:nth-child(2), .t-th:nth-child(2) {width: 20%; text-align: center;}
.t-td:nth-child(3), .t-th:nth-child(3) {width: 30%; text-align: center;}
.t-tr:last-child {border-bottom: 1px solid gray;}
.t-th {width: 33.3333333333%; padding: 10px; background-color: #1b5d97; color: #fff; text-align: center; }

.buts-content {margin: 0; display: flex; flex-wrap: wrap; justify-content: center;}
.buts-content a {margin: 0 10px 10px 0; color: #fff; background: #1b5d97; padding: 12px 40px; border-radius: 30px; text-transform: uppercase; font-weight: 700;}
.buts-content a:hover {background-color: #237bc9;}

@media (max-width: 560px) {
    .t-table-box {overflow: hidden; overflow-x: scroll;}
}