/*
    reset -----------------------------------------------------------------------------------------
*/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent
}
body {
    line-height: 1
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
}
ul {
    list-style: none
}
blockquote, q {
    quotes: none
}
blockquote:before, blockquote:after, q:before, q:after {
    content: none
}
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    color: inherit;
    text-decoration: none;
}
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none
}
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold
}
del {
    text-decoration: line-through
}
abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help
}
table {
    border-collapse: collapse;
    border-spacing: 0
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0
}
input, select, input:focus, select:focus, textarea:focus {
    vertical-align: middle;
    border: none;
    outline: none;
    background-color: transparent;
}
/*
    global -----------------------------------------------------------------------------------------
*/

::-moz-selection {
    background-color: #004f9c;
    color: #fff;
}
::selection {
    background-color: #004f9c;
    color: #fff;
}
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    color: #5c5c5c;
}
main {
    overflow: hidden;
}
p {
    font-size: 1.4em;
}
h2 {
    font-size: 2em;
    height: 35px;
    line-height: 35px;
    background: url('../img/heading.jpg') repeat-x center center;
}
h2 span {
    color: #004f9c;
    display: inline-block;
    background-color: #fff;
    height: 100%;
    padding-right: 15px;
}
.g-wrapper {
    width: 970px;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    position: relative;
}
.g-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.g-flex_justify_start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.g-flex_justify_center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.g-flex_align_top {
    -webkit-box-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}
.g-flex_direction_column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
/*
    header -----------------------------------------------------------------------------------------
*/

header {
    padding: 20px 0;
    border-bottom: 1px solid #e9e9e9;
}
.b-header__left {
    text-align: center;
    width: 150px;
}
.b-logo {
    height: 30px;
}
.b-lang {
    width: 110px;
    margin: 0 auto;
    font-size: 1.2em;
    color: #707070;
}
.b-lang li {
    border-radius: 2px;
    height: 20px;
    line-height: 20px;
    padding: 0 4px;
}
.b-lang li:hover {
    text-decoration: underline;
}
.b-lang li.current {
    background-color: #6695c4;
    color: #fff;
    text-decoration: none;
}
.b-header__slogan p {
    font-size: 1.5em;
}
.b-search {
    width: 180px;
    position: relative;
}
.b-search input[type='text'] {
    font-size: 1.5em;
    height: 25px;
    padding: 6px 10px;
    border-left: 2px solid #004f9c;
    box-sizing: border-box;
    width: 150px;
    color: #5c5c5c;
}
.b-search input[type='submit'] {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 0;
    top: 0;
    background: url('../img/search.png') no-repeat center center;
}
.b-search input[type='text']::-webkit-input-placeholder {
    color: #5c5c5c;
    font-style: italic;
}
.b-search input[type='text']:-moz-placeholder {
    /* Firefox 18- */
    color: #5c5c5c;
    font-style: italic;
}
.b-search input[type='text']::-moz-placeholder {
    /* Firefox 19+ */
    color: #5c5c5c;
    font-style: italic;
}
.b-search input[type='text']:-ms-input-placeholder {
    color: #5c5c5c;
    font-style: italic;
}
/*
    nav -----------------------------------------------------------------------------------------
*/

nav .parent {
    height: 45px;
    padding-top: 10px;
    position: relative;
}
nav .parent > li > a, nav .child a {
    font-weight: 300;
    display: block;
    height: 30px;
    padding: 0 10px;
    line-height: 30px;
    border-radius: 2px;
    color: #004f9c;
    font-size: 1.5em;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
nav .parent > li {
    height: 30px;
    border-radius: 2px 2px 0 0;
    border-bottom: 0px solid #004f9c;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
nav .child a, nav li.current-menu-item a, nav .parent > li:hover a {
    color: #fff !important;
}
nav .parent > li:last-child:hover {
    background-color: #fff;
}
nav li.current-menu-item, nav .parent > li:hover {
    color: #fff !important;
    background-color: #004f9c;
    border-bottom-width: 5px;
}
nav .child {
    left: 0;
    max-height: 0;
    overflow: hidden;
    background-color: #004f9c;
    width: 100%;
    position: absolute;
    border-radius: 0 0 2px 2px !important;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    top: 45px;
    z-index: 1;
}
nav .child li {
    padding: 0 5px;
}
nav .child li a:hover {
    text-decoration: underline;
}
nav .current-menu-item .child, nav .parent > li:hover .child {
    max-height: 40px;
}
nav .parent > li:hover .child {
    z-index: 5;
}
nav li.button {
    height: 30px;
    border-radius: 2px;
}
nav li.button:hover {
    border-bottom: none;
}
nav .button_red {
    background-color: #c60000 !important;
}
nav .button_red a {
    color: #fff !important;
}
nav .button_red:hover {
    background-color: #ff0000 !important;
}
/*
    slider -----------------------------------------------------------------------------------------
*/

.b-slider__wrap {
    width: 940px;
    margin: 0 auto;
    height: 420px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}
.b-slider {
    position: relative;
    left: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    height: 400px;
    min-width: 100%;
}
.b-slider li {
    display: inline-block;
    float: left;
    width: 100%;
    height: 100%;
    background: url('../img/slider.jpg') top center;
    background-size: cover;
    background-repeat: no-repeat;
}
.b-slider li a {
    display: block;
    width: 100%;
    height: 100%;
}
.b-slider__control {
    position: absolute;
    z-index: 5;
    bottom: 35px;
    width: 100%;
}
.b-slider__control li {
    cursor: pointer;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
    margin: 0 3px;
}
.b-slider__control li.current::after {
    content: '';
    display: block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #FFF;
    top: 2px;
    left: 2px;
    position: absolute;
}
.b-slider__control li:hover {
    background-color: rgba(255, 255, 255, 1);
}
/*
    contact us -----------------------------------------------------------------------------------------
*/

.b-contacts {
    position: absolute;
    z-index: 10;
    width: 230px;
    background-color: #fff;
    border-radius: 2px;
    right: 15px;
    top: 40px;
    overflow: hidden;
}
.b-contacts_page {
    position: relative;
    right: 0;
    top: 0;
}
.b-contacts__top {
    padding: 10px;
}
.b-contacts h3 {
    font-weight: normal;
    color: #004f9c;
}
.b-contacts h3 span {
    font-size: 1.8em;
    display: block;
}
.b-contacts h3 tel {
    display: block;
    font-size: 2.3em;
    line-height: 1.5em;
}
.b-contacts img {
    float: left;
    margin-right: 10px;
}
.b-contacts p {
    font-size: 1.5em;
    line-height: 1.5em;
    color: #122d44;
}
.b-contacts__list {
    width: 100%;
    margin: 5px 0;
}
.b-contacts__list li {
    display: block;
    width: 100%;
    overflow: hidden;
    margin: 5px 0;
}
.b-contacts__list a {
    color: #3484de;
    font-size: 1.2em;
    text-decoration: underline;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.b-contacts__list a:hover {
    color: #c60000;
}
.b-contacts__bottom {
    height: 50px;
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    background-color: #c60000;
    color: #fff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.b-contacts__bottom:hover {
    background-color: #f00;
}
.b-contacts__bottom a {
    font-size: 1.4em;
}
/*
    services -----------------------------------------------------------------------------------------
*/

.b-services {
    width: 700px;
}
.b-services ul {
    margin: 15px 0;
}
.b-services li {
    width: 23%;
}
.b-services__links a {
    font-size: 1.3em;
    display: block;
    height: 30px;
    line-height: 30px;
    font-weight: 300;
    color: #353535;
    border-bottom: 1px dashed #9c9d9d;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.b-services__links a:last-child {
    border: none;
}
.b-services__links a:hover {
    color: #c60000;
}
.b-services__links {
    margin-bottom: 10px;
}
.b-services h3 {
    font-weight: 600;
    text-transform: uppercase;
    height: 40px;
    line-height: 45px;
    font-size: 1.4em;
    border-bottom: 5px solid #004f9c;
    margin-bottom: 10px;
}
.b-services li:nth-child(1) h3 {
    background: url('../img/service1.png') no-repeat center right;
}
.b-services li:nth-child(2) h3 {
    background: url('../img/service2.png') no-repeat center right;
}
.b-services li:nth-child(3) h3 {
    background: url('../img/service3.png') no-repeat center right;
}
.b-services li:nth-child(4) h3 {
    background: url('../img/service4.png') no-repeat center right;
}
.b-services li > a {
    text-align: center;
    box-sizing: border-box;
    padding-left: 20px;
    border: 1px solid #c60000;
    background-color: #fff;
    color: #c60000;
    background: url('../img/calc.png') no-repeat 10% top;
    display: block;
    height: 35px;
    line-height: 35px;
    font-size: 1.6em;
    border-radius: 2px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.b-services li > a:hover {
    background-color: #c60000;
    color: #fff;
    background-position: 10% 100%;
}
.b-services_size_big li {
    width: 30%;
}
/*
    why we -----------------------------------------------------------------------------------------
*/

.b-why-we {
    width: 215px;
}
.b-why-we ul {
    margin-top: 5px;
    height: 265px;
}
.b-why-we li {
    border-bottom: 5px solid #6695c4;
    position: relative;
    width: 100%;
    min-height: 50px;
}
.b-why-we li p {
    font-weight: 300;
    line-height: 1.3em;
    bottom: 5px;
    position: absolute;
}
.b-why-we li::after {
    display: block;
    position: absolute;
    right: 5px;
    bottom: 0;
    font-size: 50px;
    font-weight: 600;
    color: #e1e1e1;
    z-index: -1;
}
.b-why-we li:nth-child(1)::after {
    content: '1';
}
.b-why-we li:nth-child(2)::after {
    content: '2';
}
.b-why-we li:nth-child(3)::after {
    content: '3';
}
.b-why-we li:nth-child(4)::after {
    content: '4';
}
/*
    media -----------------------------------------------------------------------------------------
*/

.b-media {
    margin-top: 20px;
    margin-bottom: 20px;
}
.b-media__left {
    width: 700px;
}
.b-media__right {
    width: 215px;
}
.b-media__left ul {
    margin: 15px 0;
}
.b-media__left .b-date {
    width: 80px;
    height: 80px;
    vertical-align: middle;
    float: left;
    text-align: center;
    background-color: #f5f5f5;
    margin-right: 20px;
}
.b-media__left .b-date span {
    display: block;
    font-weight: 300;
    font-size: 1.4em;
    color: #343b4a;
}
.b-media__left .b-date span:first-child {
    font-size: 4.6em;
}
.b-media__left .b-info {
    vertical-align: middle;
}
.b-media__left .b-info a {
    display: block;
    font-size: 1.8em;
    padding-bottom: 5px;
    text-decoration: underline;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.b-media__left > a {
    color: #1775d5;
    text-decoration: underline;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 1.4em;
    float: right;
    margin-right: 10px;
}
.b-media__left > a:hover {
    color: #c60000;
}
.b-media__left li {
    opacity: 0.5;
    cursor: pointer;
    overflow: hidden;
    margin: 15px 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.b-media__left li:hover {
    opacity: 1;
}
.b-media__left li:hover .b-info a {
    color: #1775d5;
}
.b-media__right a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #1775d5;
    width: 210px;
    height: 120px;
    border: 1px solid #1775d5;
    margin-bottom: 25px;
    font-size: 1.6em;
    line-height: 1.3em;
    box-sizing: border-box;
    padding: 10px 50px 10px 10px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
/*
.b-media__right a:hover {
    color: #c60000;
    border-color: #c60000;
}*/

.b-media__right a:nth-child(1) {
    background: url('../img/media1.jpg') no-repeat center right;
}
.b-media__right a:nth-child(2) {
    background: url('../img/media2.jpg') no-repeat center right;
}
.b-media__right a:nth-child(3) {
    background: url('../img/media3.jpg') no-repeat center right;
}
/*
   partners -----------------------------------------------------------------------------------------
*/

.b-partners {
    margin-top: 20px;
    margin-bottom: 20px;
}
.b-carousel {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 15px 0;
}
.b-carousel span {
    width: 45px;
    height: 45px;
    display: block;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center center;
}
.b-carousel span[data-action="prev"] {
    background-image: url('../img/left.png');
}
.b-carousel span[data-action="next"] {
    background-image: url('../img/right.png');
}
.b-carousel ul {
    position: relative;
    left: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.b-carousel li {
    display: inline-block;
    float: left;
    vertical-align: middle;
    width: 160px;
    height: 75px;
    line-height: 75px;
}
.b-carousel li a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}
.b-carousel li img {
    vertical-align: middle;
    text-align: center;
}
.b-carousel__wrap {
    width: 800px;
    overflow: hidden;
}
/*
   footer -----------------------------------------------------------------------------------------
*/

footer {
    width: 100%;
    background-color: #f5f5f5;
}
footer li {
    width: 240px;
}
.b-footer__top, .b-footer__bottom {
    height: 55px;
    line-height: 55px;
}
.b-footer__top a {
    display: block;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}
.b-footer__top h3 {
    font-size: 2em;
    color: #535353;
}
.b-footer__top a img {
    vertical-align: middle;
}
.b-footer__middle {
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
}
.b-footer__middle ul {
    padding-top: 20px;
    padding-bottom: 20px;
}
.b-footer__middle a {
    display: block;
    font-size: 1.6em;
    height: 40px;
}
.b-footer__middle a:hover {
    text-decoration: underline;
}
.b-footer__middle .button {
    width: 210px;
    background-color: #636363;
    border-radius: 3px;
    border: 1px solid #636363;
    color: #ffffff;
    line-height: 40px;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.b-footer__middle .button:hover {
    background-color: #fff;
    color: #636363;
}
.b-footer__bottom a {
    text-decoration: underline;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.b-footer__bottom a:hover {
    color: #c60000;
}
/*
   modals -----------------------------------------------------------------------------------------
*/

.b-modals {
    display: none;
}
.b-modal {
    width: 340px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px;
}
.b-modal h3 {
    font-size: 1.6em;
}
/*
   form -----------------------------------------------------------------------------------------
*/

.b-modal form fieldset, .b-faq__form form fieldset, .b-plans__form form fieldset {
    margin: 10px 0;
}
.b-modal form label, .b-plans__form form label, .b-faq__form form label {
    line-height: 1.8em;
    color: #000;
    font-size: 1.4em;
    font-weight: 600;
    display: block;
}
.b-modal form input[type="text"], .b-modal form input[type="email"], .b-modal form select, .b-modal form textarea, .b-plans__form form input[type="text"], .b-plans__form form input[type="email"], .b-plans__form form select, .b-plans__form form textarea, .b-faq__form form input[type="text"], .b-faq__form form input[type="email"], .b-faq__form form select, .b-faq__form form textarea {
    width: 100%;
    display: block;
    border: 1px solid #e1e0e0;
    font-size: 1.2em;
    text-transform: uppercase;
    color: #7e7e7e;
    height: 35px;
    padding: 10px 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-modal form .select, .b-plans__form form .select, .b-faq__form form .select {
    padding: 0;
    border: 1px solid #e1e0e0;
    height: 35px;
    overflow: hidden;
    background: url('../img/dropdown.png') no-repeat 95% 50%;
}
.b-modal form select, .bplans__forml form select, .b-faq__form form select {
    width: 110%;
    padding: 9px 5px;
    border: none;
    cursor: pointer;
}
.b-modal form textarea, .b-plans__form form textarea, .b-faq__form form textarea {
    min-height: 140px;
    resize: vertical;
    font-size: 1.4em;
}
.b-modal form input[type="submit"], .b-plans__form form input[type="submit"], .b-faq__form form input[type="submit"] {
    width: 130px;
    text-align: center;
    color: #fff;
    background-color: #c60000;
    font-size: 1.4em;
    height: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 8px;
    cursor: pointer;
    float: right;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.b-modal form input[type="submit"]:hover, .b-plans__form form input[type="submit"]:hover, .b-faq__form form input[type="submit"]:hover {
    background-color: #f00;
}
/*
   page -----------------------------------------------------------------------------------------
*/

.b-page {
    padding-top: 50px;
    color: #353535;
    padding-bottom: 40px;
}
.b-article {
    width: 700px;
}
.b-archive .b-article {
    width: 650px;
}
.b-article h3 {
    font-size: 2em;
    line-height: 2em;
    color: #004f9c;
    font-weight: 700;
}
.b-article article {
    padding: 10px 0;
}
.b-article h4 {
    font-size: 1.5em;
    text-transform: uppercase;
    line-height: 1.5em;
}
.b-article p, .b-article ul {
    font-size: 1.5em;
    line-height: 1.3em;
    font-weight: 300;
    padding: 10px 0;
}
.b-article p sub {
    display: block;
    position: relative;
    padding-left: 30px;
}
.b-article p sub::before {
    content: '.';
    position: absolute;
    left: 0;
    top: -6px;
    font-weight: 700;
}
.b-article a {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #3484de;
    font-weight: 400;
    text-decoration: underline;
    display: block;
}
.b-article a:hover {
    color: #c60000;
}
.b-article a.right {
    float: right;
}
.b-article__banner {
    display: block;
}
.b-article a.button {
    width: 130px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    background-color: #c60000;
    font-size: 1.4em;
    height: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 8px;
    cursor: pointer;
    float: right;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.b-article a.button:hover {
    background-color: #f00;
}
/*
   plans -----------------------------------------------------------------------------------------
*/

.b-plans {
    margin-bottom: 30px;
}
.b-plans li {
    height: 120px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 0;
}
.b-plans li div {
    width: 130px;
    text-align: center;
}
.b-plans li article {
    width: 600px;
}
.b-plans li article p {
    font-size: 1.7em;
    line-height: 1.3em;
}
.b-plans li article a {
    font-size: 1.8em;
    color: #1775d5;
    text-decoration: underline;
    line-height: 2em;
    font-weight: 700;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.b-plans li article a:hover {
    color: #c60000;
}
.b-plans li .button {
    display: block;
    width: 160px;
    text-align: center;
    height: 35px;
    background-color: #fff;
    color: #c60000;
    border-radius: 2px;
    border: 1px solid #c60000;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 35px;
    font-size: 1.4em;
}
.b-plans li .button:hover {
    background-color: #c60000;
    color: #fff;
}
/*
   cities -----------------------------------------------------------------------------------------
*/

.b-cities {
    padding-top: 40px;
    padding-bottom: 50px;
}
.b-cities .city {
    padding: 10px 0;
    text-transform: uppercase;
    font-weight: 600;
}
.b-cities .city p {
    font-size: 1.5em;
}
.b-cities h3 {
    font-size: 2em;
    line-height: 2em;
    color: #004f9c;
    font-weight: 700;
}
.b-cities article {
    padding: 20px 0;
}
.b-cities h4 {
    font-size: 1.5em;
    line-height: 2.5em;
}
.b-cities p {
    line-height: 1.5em;
}
.b-cities select {
    width: 100%;
    display: block;
    font-size: 1.4em;
    text-transform: uppercase;
    color: #7e7e7e;
    height: 30px;
    font-weight: 600;
    padding: 8px 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-cities .select {
    cursor: pointer;
    margin-left: 20px;
    width: 220px;
    border: 1px solid #e1e0e0;
    height: 30px;
    overflow: hidden;
    background: url('../img/down.png') no-repeat 95% 50%;
}
.b-cities select {
    width: 110%;
    padding: 7px;
    border: none;
    cursor: pointer;
}
.b-cities .map {
    width: 520px;
}
.b-cities .addresses {
    width: 390px;
}
/*
   cities -----------------------------------------------------------------------------------------
*/

.b-accordion {
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    max-height: 25px;
    overflow: hidden;
    padding: 5px 0 !important;
}
.b-accordion_show {
    max-height: 700px;
}
.b-accordion .title {
    font-weight: 700;
    text-transform: none;
    cursor: pointer;
    color: #004f9c;
    padding-right: 40px;
    display: inline-block;
    background: url('../img/accordion-bottom.png') no-repeat 100% 60%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.b-accordion .title:hover, .b-accordion_show .title {
    color: #353535;
    background: url('../img/accordion-top.png') no-repeat 100% 60%;
}
.b-accordion_show .title:hover {
    color: #004f9c;
    background: url('../img/accordion-bottom.png') no-repeat 100% 60%;
}
.b-faq__form {
    padding-top: 20px;
    width: 375px;
}
.b-plans__form {
    padding-top: 20px;
}
.b-plans__form .left {
    width: 350px;
}
.b-plans__form .right {
    width: 480px;
}
.b-faq__form .select {
    background: url('../img/down.png') no-repeat 95% 50% !important;
}
/*
   cities -----------------------------------------------------------------------------------------
*/

.b-typical {
    padding-top: 50px;
    color: #353535;
    padding-bottom: 40px;
}
.b-typical p, .b-typical ul {
    font-size: 1.5em;
    line-height: 1.3em;
    font-weight: 300;
    padding: 10px 0;
}
.b-typical h3 {
    font-size: 2em;
    line-height: 2em;
    color: #004f9c;
    font-weight: 700;
}
.slider {
    margin: 100px 0;
    padding-top: 20px;
}
.subscribe {
    margin-bottom: 20px;
}
/*
   sales -----------------------------------------------------------------------------------------
*/

.b-sales table {
    font-weight: 300;
    text-align: left;
    margin: 20px 0 40px 0;
}
.b-sales table th {
    font-size: 1.6em;
}
.b-sales table tr {
    border-bottom: 1px solid #e1e0e0;
    height: 40px;
    line-height: 40px;
}
.b-sales table tr:nth-child(2n) {
    height: 40px;
    line-height: 40px;
    background-color: #f9f9f9;
}
.b-sales table tr:hover td:last-child {
    opacity: 1;
}
.b-sales table td {
    font-size: 1.4em;
}
.b-sales table td:first-child {
    padding-left: 15px;
}
.b-sales table td:last-child {
    font-size: 1em;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.b-sales a.button {
    width: 110px;
    height: 20px;
    font-size: 1.2em;
    line-height: 1.6em;
    padding: 0;
    vertical-align: middle;
    position: relative;
    top: 5px;
    right: 10px;
}
/*
   finances -----------------------------------------------------------------------------------------
*/

.b-finance {
    width: 700px;
    padding-bottom: 30px;
}
.b-finance h3 {
    font-size: 2em;
    line-height: 2em;
    color: #004f9c;
    font-weight: 700;
}
.b-finance article {
    padding: 10px 0;
}
.b-finance h4 {
    font-size: 1.5em;
    text-transform: uppercase;
    line-height: 1.5em;
}
.b-finance ul {
    width: 100%;
    font-size: 1.6em;
}
.b-finance ul li {
    height: 35px;
    line-height: 35px;
}
.b-finance ul span {
    font-weight: 600;
}
.b-finance ul a {
    padding-left: 40px;
    background: url('../img/xls.png') no-repeat left center;
}
.b-finance ul a:hover {
    text-decoration: underline;
}
/*
   zebra -----------------------------------------------------------------------------------------
*/

.b-zebra {
    margin-top: 40px;
    font-size: 1.4em;
    text-align: center;
    font-weight: 600;
    width: 190px;
    border-radius: 2px;
    border: 1px solid #e0dede;
}
.b-zebra li {
    height: 40px;
    line-height: 40px;
}
.b-zebra li:nth-child(2n) {
    background-color: #f1f1f1;
}
.b-zebra li a {
    display: block;
    width: 100%;
    height: 100%;
}
.b-zebra li a:hover {
    text-decoration: underline;
}
/*
   fixed -----------------------------------------------------------------------------------------
*/

.b-fixed {
    position: fixed;
    width: 205px;
    top: 50%;
    right: 0;
    background-color: #fff;
    z-index: 50;
    border-radius: 2px;
    border: 1px solid #004f9c;
}
.b-fixed li {
    height: 50px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 50px;
    padding-right: 10px;
    text-transform: uppercase;
    color: #004f9c;
    background-repeat: no-repeat;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.b-fixed li:hover {
    background-color: #004f9c;
    color: #fff;
}
.b-fixed li:nth-child(1) {
    background-position: 8% center;
    background-image: url('../img/fixed1.png');
}
.b-fixed li:nth-child(2) {
    background-position: 5% center;
    background-image: url('../img/fixed2.png');
    border-bottom: 1px solid #004f9c;
    border-top: 1px solid #004f9c;
}
.b-fixed li:nth-child(3) {
    background-position: 7% center;
    background-image: url('../img/fixed3.png');
}
/*
   timeline -----------------------------------------------------------------------------------------
*/

.b-timeline {
    margin-top: 20px;
    width: 100%;
    background: url('../img/company-bg.jpg') no-repeat center center;
    background-size: cover;
    height: 650px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 90px;
    position: relative;
}
.b-timeline__wrap h3 {
    font-size: 2em;
    line-height: 2em;
    color: #004f9c;
    font-weight: 700;
}
.b-timeline ul {
    position: relative;
    left: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.b-timeline li {
    color: #fff;
    text-shadow: 0px 2px 0px rgb(0, 0, 0);
    display: inline-block;
    float: left;
}
.b-timeline li h4 {
    font-weight: 600;
    font-size: 2em;
    line-height: 1.4em;
    padding-bottom: 10px;
}
.b-timeline li p {
    font-weight: 600;
    font-size: 1.5em;
    font-weight: 300;
    padding-right: 10px;
    line-height: 1.6em;
}
.b-timeline img {
    float: right;
}
.b-timeline .view {
    width: 720px;
    overflow: hidden;
}
.b-timeline .button {
    width: 100px;
    height: 100px;
    display: block;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
}
.b-timeline .button[data-action="prev"] {
    background-image: url('../img/prev.png');
}
.b-timeline .button[data-action="next"] {
    background-image: url('../img/next.png');
}
.b-timeline .control {
    overflow: auto;
    bottom: -100px;
    position: relative;
}
.b-timeline .control ul {
    height: 70px;
}
.b-timeline .control li {
    display: inline-block;
    width: 10px;
    height: 60px;
    float: left;
    position: relative;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: .2;
}
.b-timeline .control li.event {
    cursor: pointer;
    opacity: 0.5;
}
.b-timeline .control li.event:hover, .b-timeline .control li.year {
    opacity: 1;
}
.b-timeline .control li.year:before {
    height: 40px;
}
.b-timeline .control li:before {
    content: '';
    display: block;
    position: absolute;
    height: 20px;
    width: 10px;
    bottom: 0;
    border-left: 1px solid #fff;
}
