body {
    font-size: 10px;
    /*font-family: 'helveticaneuecyr';*/
    
    font-family: "HelveticaNeueCyr", Helvetica, "Open Sans", sans-serif;
    font-weight: 300;
    color: #282828;
}
.container {
    position: relative;
    width: 1100px;
    margin: 0 auto;
}
.flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.flex_center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.flex_end {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.flex_start {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.flex_top {
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}
.flex_stretch {
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.button {
    padding: 10px 20px;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 1.6em;
    text-decoration: none;
    position: relative;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.button_blue {
    background-color: #005793;
    color: #fff;
}

.button_white {
    color: #000;
    border: 1px solid #fff;
    background-color: #fff;
}
.button_white::after,.button_blue::after {
    content: '';
    position: absolute;
    width: 0%;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: #000;
    display: block;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.button_white:hover,.button_blue:hover {
    color: #fff;
}
.button_white:hover i.icon-more-black {
    background-image: url('../img/icon-more-white.png');
}
.button_white:hover::after,.button_blue:hover::after {
    width: 100%;
}
.button span {
    vertical-align: middle;
    position: relative;
    z-index: 2;
}
.breadcrumbs{
    background-color: #000;
    color: #fff;
    height: 45px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 0;
}
a.breadcrumbs__back{
    width: 100px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    margin-right: 20px;
}
.breadcrumbs a{
    position: relative;
    display: inline-block;
    height: 25px;
    color: #fff;
    margin-left: 10px;
    font-size: 1.2em;
    line-height: 25px;
    text-decoration: none;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.breadcrumbs a:hover{
    color: #339ae2;
}
.breadcrumbs a::after{
    content: '/';
    color: #fff;
    display: inline-block;
    margin-left:10px;
}
a.breadcrumbs__back::after,.breadcrumbs a:last-child::after{
    display: none;
}
a.breadcrumbs__back::before{
    content: '';
    position: absolute;
    right: -1px;
    width: 1px;
    height: 25px;
    background-color: #606060;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
a.breadcrumbs__back:hover{
    color: #000;
}
a.breadcrumbs__back:hover::before{
    width: 100%;
    background-color: #fff;
}
a.breadcrumbs__back span{
    z-index: 5;
    position: relative;
}

a.breadcrumbs__back:hover i.icon-back{
    background-image: url('../img/icon-back-hover.png');
}
/* ------------------- opacity effect ----------------------------- */
 @keyframes"opacity" {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 50%;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes opacity {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 50%;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes"opacity" {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 50%;
    }
    100% {
        opacity: 1;
    }
}
@-ms-keyframes"opacity" {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 50%;
    }
    100% {
        opacity: 1;
    }
}
@-o-keyframes"opacity" {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 50%;
    }
    100% {
        opacity: 1;
    }
}