@font-face {
    font-family: Raleway-Medium;
    src: url(../fonts/Raleway-Medium.ttf)
}

@font-face {
    font-family: Raleway-bold;
    src: url(../fonts/Raleway-Bold.ttf)
}

@font-face {
    font-family: Raleway-regular;
    src: url(../fonts/Raleway-Regular.ttf)
}

html {
    width: 100%;
    height: 100%
}

body {
    font-family: Raleway-Medium, sans-serif;
    color: #282828;
    font-size: 16px;
    background-color: #f3f8f9;
    height: 100%;
    position: relative
}

a {
    color: #005ab2;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none
}

h1 {
    font-family: Raleway-bold, sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 23px
}

h2 {
    font-family: Raleway-bold, sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 41px
}

h3 {
    font-family: Raleway-bold, sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
}

h4 {
    font-family: Raleway-bold, sans-serif;
    font-size: 24px;
    font-weight: 400
}

h5 {
    font-family: Raleway-bold, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px
}

h6 {
    font-family: Raleway-bold, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 30px
}

@media (max-width: 992px) {
    h1 {
        font-size: 36px
    }

    h2 {
        font-size: 30px
    }

    h3 {
        font-size: 24px
    }

    h4 {
        font-size: 18px
    }

    h5 {
        font-size: 16px
    }

    h6 {
        font-size: 16px
    }
}


@media (max-width: 768px) {
    h1 {
        font-size: 30px
    }

    h2 {
        font-size: 24px
    }

    h3 {
        font-size: 18px
    }

    h4 {
        font-size: 16px
    }

    h5 {
        font-size: 14px
    }

    h6 {
        font-size: 14px
    }
}

.container-wrap {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #f3f8f9), color-stop(51%), to(white));
    background: -webkit-linear-gradient(top, #f3f8f9 50%, 51%, #fff 100%);
    background: -o-linear-gradient(top, #f3f8f9 50%, 51%, #fff 100%);
    background: linear-gradient(to bottom, #f3f8f9 50%, 51%, #fff 100%)
}

.header {
    background: url(../img/header.png);
    height: 416px;
    margin-bottom: 90px
}

.header--height {
    height: auto;
    margin-bottom: 0
}

.header__social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.header__social a {
    margin-right: 30px;
    color: white
}

.header__logo {
    max-width: 159px;
    width: 100%
}

.header__logo:focus, .header__logo:hover {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: pulse 1s;
    animation: pulse 1s;
    -webkit-box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02)
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 10px 10px 50px 3px rgba(0, 0, 0, .75);
        box-shadow: 10px 10px 50px 3px rgba(0, 0, 0, .75)
    }
}

@keyframes pulse {
    0% {
        -webkit-box-shadow: 10px 10px 50px 3px rgba(0, 0, 0, .75);
        box-shadow: 10px 10px 50px 3px rgba(0, 0, 0, .75)
    }
}

.header__logo img {
    width: 100%
}

.header__menu__list {
    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
}

.header__contact, .header__menu__link {
    font-size: 15px;
    font-weight: 700;
    font-family: Raleway-bold, sans-serif
}

.header__menu__link {
    padding-bottom: 10px;
    padding-top: 10px;
    color: #fff;
    font-size: 15px;
    display: block;
    text-decoration: none;
    text-transform: none
}

.header__contact {
    color: #fff;
    line-height: 23px
}

.header__menu__item {
    list-style-type: none;
    padding: 15px;
    text-decoration: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.header__menu__item .active {
    border-bottom: 2px solid #fff
}

.header__menu__item:before {
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 0;
    content: '[';
    color: #fff;
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
    display: inline-block;
    opacity: 0;
    -webkit-transition: opacity .2s, -webkit-transform .3s;
    transition: opacity .2s, -webkit-transform .3s;
    -o-transition: transform .3s, opacity .2s;
    transition: transform .3s, opacity .2s;
    transition: transform .3s, opacity .2s, -webkit-transform .3s
}

.header__menu__item:after {
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 0;
    color: #fff;
    content: ']';
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    display: inline-block;
    opacity: 0;
    -webkit-transition: opacity .2s, -webkit-transform .3s;
    transition: opacity .2s, -webkit-transform .3s;
    -o-transition: transform .3s, opacity .2s;
    transition: transform .3s, opacity .2s;
    transition: transform .3s, opacity .2s, -webkit-transform .3s
}

.header__menu__item:focus::after, .header__menu__item:focus::before, .header__menu__item:hover::after, .header__menu__item:hover::before {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.fa-phone {
    margin-right: 10px
}

.header__tel {
    position: relative;
    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
}

.header__tel input[type=checkbox] {
    display: none
}

.header__tel label {
    margin-left: 2%;
    margin-top: 0;
    cursor: pointer
}

.header__tel #check:checked + div {
    display: block;
    -webkit-transition: 2s;
    -o-transition: 2s;
    transition: 2s
}

.header__tel #check:checked > .svg-tel {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.header__tel #check1:checked + div {
    display: block;
    -webkit-transition: 2s;
    -o-transition: 2s;
    transition: 2s
}

.header__tel .header__cont {
    text-decoration: none;
    margin-left: -4%;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
    font-family: Montserrat, sans-serif
}

.header__tel .header__cont img {
    width: 14px;
    height: 14px;
    margin-right: 10px
}

.header__tel .header__tels {
    position: absolute;
    top: 58px;
    z-index: 1;
    background: #fff;
    padding: 31px 29px 10px;
    display: none;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .09);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .09)
}

.header__tel .header__tels:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 15px 10px;
    border-color: transparent transparent #fff transparent;
    top: -14px;
    right: 8px
}

.header__tel .header__tels a {
    color: #3a4047;
    text-decoration: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px
}

.header__tel .header__tels a:hover {
    color: #1ab0ce
}

.header__tel .header__tels a img {
    margin-right: 7px
}

.questionnaire__slider-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    transform: translateY(-25px);
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.questionnaire__next, .questionnaire__prev {
    display: block;
    height: 40px;
    width: 40px;
    cursor: pointer;
    background: #fff;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

.questionnaire__prev {
    margin-left: 4%
}

.questionnaire__prev .fa-arrow-left {
    color: #999;
    margin-left: 12px;
    margin-top: 12px
}

.questionnaire__prev:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    background: #007eff
}

.questionnaire__prev:hover .fa-arrow-left {
    color: #fff
}

.questionnaire__next {
    margin-right: 4%
}

.questionnaire__next .fa-arrow-right {
    color: #999;
    margin-left: 12px;
    margin-top: 12px
}

.questionnaire__next:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    background: #007eff
}

.questionnaire__next:hover .fa-arrow-right {
    color: #fff
}

.main-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    max-width: 1407px;
    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-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.slider-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-right: 20px;
    margin-left: 20px;
    -webkit-box-shadow: 0 5px 18px -6px rgba(0, 0, 0, .61);
    box-shadow: 0 5px 18px -6px rgba(0, 0, 0, .61)
}

.header-box {
    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;
    padding: 35px 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: -9px
}

.menu-trigger {
    text-align: right;
    margin-top: 20px;
    color:white;
    display: none
}

.header-slider {
    z-index: 1;
    background-image: url(../img/sl.png);
    width: 100%;
    height: 440px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    padding: 115px 85px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.header-slider__box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.header-slider__describe {
    width: 44%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

.header-slider__describe h1 {
    text-align: left;
    margin-bottom: 30px;
    line-height: 44px
}

.header-slider__describe h2 {
    text-align: left;
    margin-bottom: 40px
}

.header-slider__describe p {
    font-weight: 500;
    line-height: 23px;
    margin-bottom: 25px
}

.header-slider__img-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 20%
}

.header-slider__img-box p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500
}

.header-slider__img {
    max-width: 210px
}

.header-slider__img img {
    width: 100%
}

.header-slider__box--margin {
    margin-top: 35px
}

.header-slider__describe--margin {
    width: 65%;
    margin-right: 50px
}

.header-slider__describe--margin p a {
    color: #005ab2;
    display: inline-block;
    text-transform: uppercase
}

.header-button {
    padding: 15px 30px;
    border: none;
    position: relative;
    font-family: Raleway-bold, sans-serif;
    font-weight: 700;
    line-height: 23px;
    text-transform: uppercase;
    color: #fff;
    background-color: #007eff;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 4px 26px rgba(19, 135, 215, .33);
    box-shadow: 0 4px 26px rgba(19, 135, 215, .33);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    cursor: pointer
}

.header-button--bgc {
    background-color: #005ab2;
    border: 2px solid #005ab2;
    text-transform: inherit;
    padding: 10px 25px;
    margin-top: 35px;
    font-size: 14px
}

.header-button--text {
    text-transform: inherit;
    padding: 10px 25px;
    margin-top: 10px
}

.header-button:hover {
    -webkit-box-shadow: 0 0 10px 0 #007eff inset, 0 0 10px 4px #007eff;
    box-shadow: 0 0 10px 0 #007eff inset, 0 0 10px 4px #007eff;
    color: #007eff;
    background: #fff
}

.header-button::before {
    content: "";
    left: 0;
    top: 0;
    -webkit-border-radius: 6px 0 0 6px;
    border-radius: 6px 0 0 6px;
    position: absolute;
    width: 0;
    height: 100%;
    background-color: #fff;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease
}

.header-button::after {
    content: "";
    right: 0;
    top: 0;
    -webkit-border-radius: 0 6px 6px 0;
    border-radius: 0 6px 6px 0;
    position: absolute;
    width: 0;
    height: 100%;
    background-color: #fff;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease
}

.header-button:hover:before {
    width: 50%;
    opacity: .2;
    z-index: 0
}

.header-button:hover span {
    color: inherit;
    opacity: 1;
    z-index: 1
}

.header-button:hover:after {
    width: 50%;
    z-index: 0;
    opacity: .2
}

.header-button:hover span {
    color: inherit;
    opacity: 1;
    z-index: 1
}

.header-button:hover {
    color: #00a8ff;
    background: #fff;
    -webkit-box-shadow: 0 0 10px 0 #007eff inset, 0 0 10px 4px #007eff;
    box-shadow: 0 0 10px 0 #007eff inset, 0 0 10px 4px #007eff
}

.header-logo-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.header-logo-box span {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    margin-top: 10px
}

.header-logo-box .header__logo {
    max-width: 107px;
    width: 100%
}

.header-logo-box .header__logo img {
    width: 100%
}

.footer-bottom {
    background: url(../img/hed.png)
}

.footer-bottom .header__menu__link {
    font-size: 13px;
    font-weight: 500
}

@media screen and (max-width: 1200px) {
    .header__menu__item {
        padding: 0px
    }
}

@media screen and (max-width: 992px) {
    .header__menu__box li {
        display: block;
        text-align: center;
        padding: 22px
    }

    .header__menu__box ul {
        display: none
    }

    .menu-trigger {
        display: block;
        cursor: pointer
    }

    .header__menu__list {
        display: block;
        position: fixed;
        top: 85px;
        -webkit-box-shadow: 3px -20px 39px 2px #0057b0;
        box-shadow: 3px -20px 39px 2px #0057b0;
        text-align: center;
        z-index: 2;
        left: 0;
        width: 100%;
        margin: 0 auto;
        background: #0057b0
    }

    .header__menu__item {
        padding: 22px
    }

    .header__menu {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3
    }

    .header-box {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .header__menu__list {
        margin-top: 30px
    }

    .header__tel {
        margin-top: 15px
    }

    .header__menu__link {
        font-size: 20px;
        color: #fff;
        display: inline-block
    }

    .header-slider {
        padding: 40px 85px;
        height: 350px
    }

    .header__menu--hidden {
        display: none
    }

    .header__social {
        margin-top: 25px
    }

    .header-slider__describe {
        width: 100%
    }
    .header-slider{
        background: white !important;
    }
}

@media screen and (max-width: 768px) {
    .questionnaire__prev {
        margin-left: 6%
    }

    .questionnaire__next {
        margin-right: 6%
    }

    .header-slider {
        padding: 40px 55px
    }

    .header__menu__list {
        margin-top: 12px
    }

    .production-box .production-block--direction {
        max-width: 100%
    }
}

@media screen and (max-width: 576px) {
    .header-slider__describe p {
        font-size: 14px;
        margin-bottom: 25px
    }

    .questionnaire__slider-arrow {
        display: none
    }

    .header-slider {
        padding: 65px 15px
    }

    .slider-box {
        margin-left: 0;
        margin-right: 0
    }

    .header-slider .header-button {
        padding: 11px 25px;
        font-size: 14px
    }

    .header__tel {
        display: none
    }

    .header-slider__box .header-slider__img-box {
        width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .header-button--bgc {
        margin-top: 0;
        margin-bottom: 15px
    }

    .header-slider__img-box p {
        font-size: 12px
    }

    .header-slider__describe h2 {
        margin-bottom: 25px
    }

    .header-slider__box--margin {
        margin-top: 25px
    }

    .header-box {
        padding: 25px 0
    }

    .header-slider__describe h1 {
        margin-bottom: 10px;
        line-height: 30px
    }
}

.error {
    position: relative;
    height: -webkit-calc(100vh - 256px);
    height: calc(100vh - 256px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.error-block {
    font-size: 9em;
    text-align: center;
    color: #0067bc;
    margin-bottom: 20px;
    font-family: sans-serif
}

.error p {
    font-size: 18px;
    text-align: center;
    line-height: 21px
}

.error p a {
    font-size: 18px;
    color: #0067bc;
    display: inline-block
}

#go-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    color: #fff;
    font-size: 14px;
    text-transform: none;
    cursor: pointer;
    display: none;
    width: 60px;
    height: 35px;
    background: #6495ed;
    text-align: center;
    -webkit-border-radius: 5px;
    border-radius: 5px
}

#go-top .fa-caret-up {
    text-align: center;
    display: block
}

#go-top:hover {
    background: #333
}

.breadcrumbs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 50px
}

.breadcrumbs li {
    list-style-type: none;
    margin-right: 15px;
    position: relative
}

.breadcrumbs li a {
    text-decoration: none;
    color: grey;
    font-size: 14px;
    line-height: 20px;
    text-transform: none
}

.breadcrumbs li:not(:first-child) {
    font-size: 14px
}

.breadcrumbs li:not(:first-child):before {
    content: '';
    width: 3px;
    height: 3px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: grey;
    position: absolute;
    top: 9px;
    left: -8px
}

.breadcrumbs li:not(:first-child) a {
    font-size: 15px
}

.slider-link {
    cursor: pointer;
    display: block;
    height: 40px;
    width: 60%;
    position: relative;
    margin: 0 auto;
    border: 2px solid #007eff;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background: inherit;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 10px 0;
    color: #007eff;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    text-transform: none
}

.slider-link:hover {
    -webkit-box-shadow: 0 4px 26px rgba(19, 135, 215, .33);
    box-shadow: 0 4px 26px rgba(19, 135, 215, .33);
    background-color: #007eff;
    color: #fff
}

.slider-link::before {
    content: "";
    left: 0;
    top: 0;
    -webkit-border-radius: 6px 0 0 6px;
    border-radius: 6px 0 0 6px;
    position: absolute;
    width: 0;
    height: 100%;
    background-color: #007eff;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease
}

.slider-link::after {
    content: "";
    right: 0;
    top: 0;
    -webkit-border-radius: 0 6px 6px 0;
    border-radius: 0 6px 6px 0;
    position: absolute;
    width: 0;
    height: 100%;
    background-color: #007eff;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease
}

.slider-link:hover:before {
    width: 50%;
    opacity: .1;
    z-index: 0
}

.slider-link:hover span {
    color: inherit;
    opacity: 1;
    z-index: 1
}

.slider-link:hover:after {
    width: 50%;
    z-index: 0;
    opacity: .1
}

.slider-link:hover span {
    color: inherit;
    opacity: 1;
    z-index: 1
}

.slider-link:hover {
    color: #fff
}

#next, #prev {
    width: 40px;
    height: 40px;
    background-color: #e8eef0;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    outline: 0;
    border: none;
    cursor: pointer;
    position: absolute;
    top: -80px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

#next:hover, #prev:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

#next {
    right: 0
}

#next:hover {
    background-color: #007eff
}

#next:hover .fa-arrow-right {
    color: #fff
}

#next .fa-arrow-right {
    color: #999;
    font-weight: 100
}

#prev {
    right: 50px
}

#prev .fa-arrow-left {
    color: #999
}

#prev:hover {
    background-color: #007eff
}

#prev:hover .fa-arrow-left {
    color: #fff
}

.slick-slide a, .slick-slide:focus {
    outline: 0
}

.request-block-info {
    position: relative;
    width: 100%;
    margin-top: -120px
}

.request-block-info .request-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 45px 0;
    background: url(../img/ed.png);
    -webkit-background-size: cover;
    background-size: cover;
    margin: 40px 0;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.request-block-info .request-block__item {
    color: #fff;
    font-weight: 700
}

.request-block-info .request-block__item h6 {
    line-height: 20px
}

.request-block-info .request-block__item h6 span {
    text-decoration: underline
}

.popup, .popup-order, .popup-question, .popup-sent {
    background: rgba(0, 0, 0, .7);
    position: fixed;
    display: none;
    z-index: 5000;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0
}

.popup .popup-block, .popup-order .popup-block, .popup-question .popup-block, .popup-sent .popup-block {
    max-width: 600px;
    width: 70%;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    background: #fff;
    padding: 70px 40px;
    z-index: 5001;
    text-align: center;
    border: 8px solid #006ecd;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .4);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .4)
}

.popup .popup-block h2, .popup-order .popup-block h2, .popup-question .popup-block h2, .popup-sent .popup-block h2 {
    margin-bottom: 20px
}

.popup .popup-block p, .popup-order .popup-block p, .popup-question .popup-block p, .popup-sent .popup-block p {
    margin-bottom: 10px;
    line-height: 23px
}

.about__box .slick-track{
    margin: inherit;
}

/* .about__box .slick-track .about__item{
    width: auto;
} */

.korpus {
    background: #fff;
    position: relative;
    margin-bottom: 100px;
    font-size: 15px
}

.korpus > div, .korpus > input {
    display: none
}

.korpus label {
    padding: 21px 54px 19px;
    line-height: 28px;
    cursor: pointer;
    font-weight: 700;
    position: relative;
    bottom: 1px;
    top: 16px;
    background: #fff;
    border-right: 1px solid #e4ebec;
    margin-right: -5px
}

.korpus input[type=radio]:checked + label {
    background: #e4ebec;
    color: #005ab2;
    font-weight: 700
}

.korpus > input:nth-of-type(1):checked ~ div:nth-of-type(1), .korpus > input:nth-of-type(2):checked ~ div:nth-of-type(2) {
    display: block;
    padding: 40px 50px;
    margin-top: 30px;
    background: #fff;
    border-top: 8px solid #f3f8f9
}

.describe-table table, .describe-text table {
    margin-left: 30px
}

.describe-table table tr:nth-child(even), .describe-text table tr:nth-child(even) {
    background: #fafafa
}

.describe-table table tr:nth-child(odd), .describe-text table tr:nth-child(odd) {
    background: #fff
}

.describe-table table tr td, .describe-text table tr td {
    padding: 20px 137px 20px 10px
}

.describe-table table tr td:nth-child(even), .describe-text table tr td:nth-child(even) {
    font-weight: 700;
    font-size: 14px
}

.describe-table table tr td:nth-child(odd), .describe-text table tr td:nth-child(odd) {
    font-weight: 400;
    font-size: 14px
}

.describe-text ul, .describe-text ol {
    padding-left: 0;
    margin-left: 55px;
    margin-bottom: 20px
}

.describe-text ul li, .describe-text ol li {
    text-decoration: none;
    list-style-type: none;
    position: relative;
    margin-bottom: 10px;
    line-height: 24px
}

.describe-text ol li{
    list-style-type: decimal; 
}

.describe-text ul li:before {
    content: '';
    width: 8px;
    height: 8px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #005ab2;
    position: absolute;
    left: -18px;
    top: 8px
}

.describe-text h2, .describe-text h3, .describe-text h4, .describe-text h5 {
    margin-bottom: 30px
}

.describe-text p {
    line-height: 30px;
    margin-bottom: 20px
}

.describe-text p a {
    color: #005ab2;
    display: inline-block;
    text-transform: uppercase
}

.describe-text .describe-before {
    margin-left: 90px;
    margin-bottom: 20px
}

.describe-text .describe-before p {
    position: relative;
    margin-bottom: 10px
}

.describe-text .describe-before p:before {
    content: '';
    width: 8px;
    height: 8px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #005ab2;
    position: absolute;
    left: -14px;
    top: 9px
}

.describe__img {
    width: 100%;
    margin: 40px 0
}

.describe__img--width {
    width: 70%
}

.pclose:hover {
    color: #00f;
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

@media screen and (max-width: 1200px) {
    .error {
        height: -webkit-calc(100vh - 248px);
        height: calc(100vh - 248px)
    }

    .describe-text table tr td {
        padding: 20px 60px 20px 10px
    }
}

@media screen and (max-width: 992px) {
    .korpus > input:nth-of-type(1):checked ~ div:nth-of-type(1), .korpus > input:nth-of-type(2):checked ~ div:nth-of-type(2) {
        padding: 40px 5px
    }

    .describe-table table {
        margin-left: 0;
        width: 100%
    }

    .describe-text ul {
        margin-left: 30px
    }
}

@media screen and (max-width: 777px){

}

@media screen and (max-width: 768px) {
    .header-slider {
        background-image: url(../img/slid.png)
    }

    .popup-block {
        padding: 25px
    }

    .header-slider__img-box {
        width: 40%
    }

    .partners-box__item {
        max-width: 250px
    }

    .contacts-box .footer-form--margin {
        width: 100%;
        margin-bottom: 10px
    }

    .describe-text iframe {
        width: 100%
    }

    .describe-text p img {
        width: 100%;
        height: auto;
    }

    .describe-text table tr td {
        padding: 20px 10px 20px 10px
    }
    
    .describe__img img{
			width: 100%;
			height: auto;
    }

    .production-block__img a{
    	width: 100%
    }
}

@media screen and (max-width: 576px) {
    .header-slider__box--margin {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .breadcrumbs {
        margin-top: 30px
    }

    .korpus label {
        padding: 21px 23px
    }

    .request-block-info .request-block__item {
        text-align: center;
        margin-bottom: 7px
    }

    .describe-table table tr td {
        padding: 20px 10px 20px 10px
    }

    .production-block__buttons {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .production-block__buttons .slider-link {
        width: 65%
    }

    .describe-text .describe-before {
        margin-left: 30px;
        margin-bottom: 20px
    }

    .describe__img--width {
        width: 100%
    }

    .korpus {
        margin-bottom: 40px
    }

    .error {
        height: -webkit-calc(100vh - 208px);
        height: calc(100vh - 208px)
    }

    .error-block {
        font-size: 8em
    }

    .error p {
        font-size: 16px
    }

    .error p a {
        font-size: 16px
    }

    .describe-text table {
        margin: 0 auto
    }

    .popup .popup-block, .popup-order .popup-block, .popup-question .popup-block, .popup-sent .popup-block {
        padding: 40px 15px
    }

    .describe-text table tr td {
        padding: 20px 3px 20px 3px
    }

}

@media screen and (max-width: 460px) {
    .popup .popup-block, .popup-order .popup-block, .popup-question .popup-block, .popup-sent .popup-block {
        width: 100%;
        border: 6px solid #006ecd
    }
}

.footer {
    background: url(../img/footer.png);
    padding: 85px;
    -webkit-background-size: cover;
    background-size: cover
}

.footer--bgc {
    background: url(../img/footer-bgc.png)
}

.footer-form {
    margin: 0 auto;
    max-width: 555px;
    width: 100%
}

.captcha {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 25px
}

.forms-date {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.form-entrance {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.form-entrance h3 {
    text-transform: inherit;
    color: #fff;
    font-weight: 700;
    line-height: 60px
}

.form-entrance p {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 60px;
    margin-bottom: 30px
}

.form-entrance__area, .form-entrance__cont, .form-entrance__email, .form-entrance__name, .form-entrance__name-cl {
    width: 100%
}

.form-entrance__city, .form-entrance__date {
    width: 48%
}

.form-entrance__input {
    border: none;
    border-bottom: .5px solid #008efb;
    color: #fff;
    padding: 10px;
    background: inherit;
    width: 100%;
    height: 40px;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 25px;
    position: relative;
    font-family: Raleway-Medium, sans-serif
}

.form-entrance__input::-webkit-input-placeholder {
    color: #fff
}

.form-entrance__input::-moz-placeholder {
    color: #fff
}

.form-entrance__input:-ms-input-placeholder {
    color: #fff
}

.form-entrance__input::-ms-input-placeholder {
    color: #fff
}

.form-entrance__input::placeholder {
    color: #fff
}

.form-entrance textarea {
    height: 120px;
    resize: none;
    font-family: Raleway-Medium, sans-serif
}

.form-entrance__sub {
    background-color: #00a8ff;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    padding: 17px 60px;
    color: #fff;
    border: none;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    cursor: pointer
}

.form-entrance__sub::before {
    content: "";
    left: 0;
    top: 0;
    -webkit-border-radius: 6px 0 0 6px;
    border-radius: 6px 0 0 6px;
    position: absolute;
    width: 0;
    height: 100%;
    background-color: #fff;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease
}

.form-entrance__sub::after {
    content: "";
    right: 0;
    top: 0;
    -webkit-border-radius: 0 6px 6px 0;
    border-radius: 0 6px 6px 0;
    position: absolute;
    width: 0;
    height: 100%;
    background-color: #fff;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease
}

.form-entrance__sub:hover:before {
    width: 50%;
    opacity: .2;
    z-index: 0
}

.form-entrance__sub:hover span {
    color: inherit;
    opacity: 1;
    z-index: 1
}

.form-entrance__sub:hover:after {
    width: 50%;
    z-index: 0;
    opacity: .2
}

.form-entrance__sub:hover span {
    color: inherit;
    opacity: 1;
    z-index: 1
}

.form-entrance__sub:hover {
    color: #00a8ff;
    background: #fff;
    -webkit-box-shadow: 0 0 10px 0 #007eff inset, 0 0 10px 4px #007eff;
    box-shadow: 0 0 10px 0 #007eff inset, 0 0 10px 4px #007eff
}

.form-entrance--color h3 {
    color: #282828
}

.form-entrance--color .form-entrance__input {
    border-bottom: .5px solid grey;
    color: #282828
}

.form-entrance--color .form-entrance__input:focus {
    border-bottom: 1px solid grey !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    outline-offset: 0 !important;
    outline: 0 !important
}

.form-entrance--color .form-entrance__input::-webkit-input-placeholder {
    color: #282828
}

.form-entrance--color .form-entrance__input::-moz-placeholder {
    color: #282828
}

.form-entrance--color .form-entrance__input:-ms-input-placeholder {
    color: #282828
}

.form-entrance--color .form-entrance__input::-ms-input-placeholder {
    color: #282828
}

.form-entrance--color .form-entrance__input::placeholder {
    color: #282828
}

.footer-form--margin {
    margin-left: 0;
    width: 50%;
    margin-bottom: 70px
}

.footer-form--margin .form-entrance__sub {
    background-color: #005ab2
}

.footer-form--margin .form-entrance__sub:hover {
    background-color: #fff
}

.footer-form--margin .form-entrance {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

.footer-form--margin .form-entrance__text {
    color: #616161
}

.footer-form--margin .form-entrance__input {
    border-bottom: 1px solid #ddd;
    color: #282828
}

.footer-form--margin .form-entrance__input:focus {
    border-bottom: 1px solid grey !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    outline-offset: 0 !important;
    outline: 0 !important
}

.footer-form--margin .form-entrance__input::-webkit-input-placeholder {
    color: #282828
}

.footer-form--margin .form-entrance__input::-moz-placeholder {
    color: #282828
}

.footer-form--margin .form-entrance__input:-ms-input-placeholder {
    color: #282828
}

.footer-form--margin .form-entrance__input::-ms-input-placeholder {
    color: #282828
}

.footer-form--margin .form-entrance__input::placeholder {
    color: #282828
}

@media screen and (max-width: 992px) {
    .footer {
        padding: 40px
    }
}

@media screen and (max-width: 576px) {
    .footer {
        padding: 25px
    }

    .form-entrance p {
        font-size: 15px;
        line-height: 30px;
        text-align: center
    }

    .form-entrance__sub {
        padding: 11px 25px;
        font-size: 14px
    }

    .form-entrance h3 {
        line-height: 45px
    }
}

.about {
    padding: 130px 0 80px
}

.about h2 {
    text-align: left;
    margin-bottom: 50px;
    margin-top: 35px
}

.about--margin {
    margin-top: 50px;
    background: #fafafa;
    padding: 50px 0 0
}

.about__box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.about__list {
    padding: 40px 85px 40px 140px;
    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;
    background: #eaf4f6;
    margin: 70px 0 40px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.about__list p {
    font-weight: 700;
    line-height: 32px;
    position: relative
}

.about__list p:before {
    width: 5px;
    height: 100%;
    background: #00f;
    content: '';
    position: absolute;
    left: -30px;
    top: 0
}

.about__text {
    padding: 40px 105px
}

.about__text p {
    line-height: 30px;
    margin-bottom: 40px
}

.about__text p a {
    color: #005ab2;
    display: inline-block;
    text-transform: uppercase
}

.about__text p span {
    color: #005ab2;
    font-size: 17px;
    font-weight: 700
}

.about__info {
    width: 70%
}

.about__button {
    max-width: 250px;
    width: 100%
}

.about__button .slider-link {
    width: 100%;
    color: #005ab2;
    font-weight: 700;
    text-transform: none
}

.about__item {
    width: 30%;
    cursor: inherit;
    text-transform: none
}

.about__item p {
    font-weight: 700;
    line-height: 24px;
    max-width: 200px;
    color: #282828;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s
}

.about__img {
    max-width: 100px;
    width: 100%;
    margin-bottom: 25px
}

.about__box .slick-track .about__img{
    width: auto;
    max-width: initial;
}

.about__box .slick-track .about__item{
    width: auto;
}

.about__img img {
    width: 100%
}

.about-describe {
    position: relative
}

.about-describe p {
    text-align: left;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 30px
}

.about-describe p a {
    color: #005ab2;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: underline
}

.about-describe ul {
    padding-left: 0;
    margin-left: 30px;
    margin-bottom: 20px
}

.about-describe ul li {
    text-decoration: none;
    list-style-type: none;
    position: relative;
    margin-bottom: 10px;
    line-height: 30px
}

.about-describe ul li:before {
    content: '';
    width: 8px;
    height: 8px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #005ab2;
    position: absolute;
    left: -18px;
    top: 11px
}

@media screen and (max-width: 992px) {
    .container .about {
        padding: 0 0 50px
    }

    .about__item {
        width: 30%
    }

    .about-describe p {
        margin-bottom: 20px
    }

    .about__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .about__button {
        margin-top: 20px
    }

    .about__info {
        width: 100%
    }

    .about__text {
        padding: 30px 5px
    }
}

@media screen and (max-width: 992px){
    .about__box .slick-track {
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .about .about__list {
        padding: 30px 35px
    }

    .about__item {
        margin-right: 5px
    }
}

@media screen and (max-width: 576px) {
    .about h2 {
        margin-bottom: 15px;
        margin-top: 15px
    }

    .about-describe p {
        font-size: 14px
    }

    .about__item p {
        font-size: 13px
    }

    .about__box {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .about__item {
        margin-top: 10px
    }

    .about__list p {
        font-size: 14px
    }

    .about__text p {
        font-size: 14px
    }

    .about__text p span {
        font-size: 15px
    }

    .about__text {
        padding: 0
    }

    .about--margin {
        padding: 10px 0 0
    }

    .about__text p {
        margin-bottom: 25px
    }

    .about__list {
        margin: 35px 0 35px
    }

    .about--margin {
        margin-top: 30px
    }
}

.production {
    background-color: #fff;
    padding: 90px 0 80px
}

.production--bgc {
    background: inherit;
    padding: 36px 0 0
}

.production--bgc h2 {
    width: 80%
}

.production h2 {
    margin-bottom: 50px
}

.production-slider {
    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;
    width: 100%;
    position: relative
}

.production-slider .slick-list {
    margin-left: 8px
}

.production-slider .slick-track{
	display: flex;
	justify-content: space-between;
}
.production-slider .slick-slide{
	max-width: 350px;
	width: 100% !important;
}

.production-block {
    max-width: 350px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: white;
    margin-bottom: 25px;
    /*margin-left: 5px;*/
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-shadow: 0 4px 5px rgba(40, 40, 40, .1);
    box-shadow: 0 4px 5px rgba(40, 40, 40, .1);
    text-transform: none
}

.production-block__item {
    width: 30%;
    height: 80px !important;
    margin: 0 1px
}

.production-block__item img {
    width: 100%;
    height: 100%
}

.production-block__about {
    color: #025bb2;
    border-bottom: dotted;
    display: inline-block;
    margin: 30px 0;
    font-weight: 700;
    font-size: 14px
}

.production-block__about-text {
    display: none
}

.production-block--direction {
    max-width: 100%;
    background: #fff;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-shadow: 0 4px 26px rgba(40, 40, 40, .09);
    box-shadow: 0 4px 26px rgba(40, 40, 40, .09)
}

.production-block__img {
    width: 100%;
    /*height: 210px*/
    /*height: 230px;*/
}

.production-block__img--width {
    max-width: 350px;
    height: auto
}

.production-block__img--height {
    height: 100%;
}

.production-block__img--height img {
    height: 100%;
}

.production-block__img a {
    height: 100%;
    width: 100%
}

.production-block__img img {
    width: 100%;
    /*height: 100%*/
}

.production-block__describe {
    width: 100%;
    padding: 25px;
    overflow: hidden;
    /*height: 100%;*/
    z-index: 1;
    min-height: 155px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #fff
}

.production-block__describe h6 {
    text-align: center;
    line-height: 24px;
    color: #000;
    text-transform: none;
    margin-bottom: 20px
}

.production-block__describe p {
    font-size: 14px;
    text-align: center;
    line-height: 24px;
    color: #000
}

.production-block__describe p strong {
    display: block;
    margin-bottom: 20px
}

.production-block__describe p span {
    margin-bottom: 0;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    margin-left: 10px
}

.production-block__slider {
    margin-top: 5px;
    width: 100%;
    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;
    height: 80px;
    margin-bottom: 5px
}

.production-block__describe--direction {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: auto
}

.production-block__describe--direction .production-block__text {
    width: 70%
}

.production-block__describe--direction .production-block__text h6 {
    text-align: left
}

.production-block__describe--direction p {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left
}

.production-block__describe--direction .slider-link {
    width: 20%;
    margin-top: auto
}

.production-block--bgc {
    background: inherit;
    -webkit-box-shadow: none;
    box-shadow: none
}

.production-block__describe--padding {
    padding: 5px 0 30px 120px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: inherit
}

.production-block__describe--padding .slider-link {
    width: 100%;
    max-width: 250px;
    display: inline-block;
    margin-top: 0;
    margin: 0;
    margin-right: 10px
}

.production-block__describe--padding .slider-link--width {
    max-width: 150px;
    color: #fff;
    background-color: #005ab2;
    border: 2px solid #005ab2
}

.production-block__describe--padding .slider-link--width:hover {
    color: #005ab2;
    background: #fff
}

.production-block__describe--padding .slider-link--width::before {
    content: "";
    left: 0;
    top: 0;
    -webkit-border-radius: 6px 0 0 6px;
    border-radius: 6px 0 0 6px;
    position: absolute;
    width: 0;
    height: 100%;
    background-color: #fff;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease
}

.production-block__describe--padding .slider-link--width::after {
    content: "";
    right: 0;
    top: 0;
    -webkit-border-radius: 0 6px 6px 0;
    border-radius: 0 6px 6px 0;
    position: absolute;
    width: 0;
    height: 100%;
    background-color: #fff;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease
}

.production-block__describe--padding .slider-link--width:hover:before {
    width: 50%;
    opacity: .2;
    z-index: 0
}

.production-block__describe--padding .slider-link--width:hover span {
    color: inherit;
    opacity: 1;
    z-index: 1
}

.production-block__describe--padding .slider-link--width:hover:after {
    width: 50%;
    z-index: 0;
    opacity: .2
}

.production-block__describe--padding .slider-link--width:hover span {
    color: inherit;
    opacity: 1;
    z-index: 1
}

.production-block__describe--padding .slider-link--width:hover {
    color: #005ab2;
    background: #fff
}

.production-scale .production-block__describe {
    padding: 25px 50px 20px
}

.production-scale .production-block__describe p {
    margin-bottom: 0;
    text-align: center;
    line-height: 24px
}

.production-scale:hover {
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
    -webkit-box-shadow: 0 3px 24px -2px rgba(0, 0, 0, .75);
    box-shadow: 0 3px 24px -2px rgba(0, 0, 0, .75);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

.production-box .production-block__img img{
    height: auto;
}


@media screen and (max-width: 1200px) {
    .production-block {
        max-width: 285px
    }

    .production-block--direction {
        max-width: 100%
    }

    .production-block__describe p {
        font-size: 14px
    }

    .production-scale .production-block__describe {
    padding: 15px;
   }

   .production-block__img {
    /*height: 205px;*/
    /* height: 230px; */
}
    
    .production-block__img--height{
        height: 100%
    }

.production-block__img--height img {
    height: 100%;
}

}

@media screen and (max-width: 992px) {
    .production-block {
        max-width: 335px
    }

    .production {
        padding: 55px 0 0
    }

    .production-block--direction {
        max-width: 100%
    }

    .production-block__describe--direction {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .production-block__describe--direction .slider-link {
        width: 60%;
        margin-top: 10px;
        margin-left: 0
    }

    .production-block__describe--direction .production-block__text {
        width: 100%
    }

    .production-block__describe--padding {
        padding: 0 0 0 20px
    }

    .production-box .production-block__describe--direction .slider-link {
        width: 80%;
        max-width: 80%
    }

    .production-box .production-block__img--width{
    padding: 15px 15px 0;
    }
}

@media screen and (max-width: 768px) {
    .production-block {
        max-width: 500px;
        margin-left: auto
    }

    .production-block__describe p {
        font-size: 13.5px
    }

    .production-block__describe {
        width: 100%;
        /*padding: 15px;*/
        overflow: hidden;
        min-height: auto
    }

    .production--bgc {
        padding: 30px 0 0
    }

    .production h2 {
        margin-bottom: 25px
    }

    .production-block__describe h6 {
        margin-bottom: 7px
    }

    .production-block__about {
        margin: 10px 0
    }

    .production-box .production-block__describe--direction .slider-link {
        width: 100%;
        max-width: 100%
    }

    .production-block__img {
        height: auto;
    }

    .production-block__img--width {
        height: auto
    }

    .production-block__img--height {
        height: 100%
    }

    .production-block__img--width {
        max-width: 300px
    }

    .production-slider .slick-slide{
	     max-width: 500px;
	     width: 100% !important;
   }

}

@media screen and (max-width: 576px) {
    .production-box .production-block--direction {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .production--bgc h2 {
        width: 100%
    }

    .production-box .production-block__img--width {
        max-width: 100%;
        height: auto;
    }

    .production-block__describe p strong {
        margin-bottom: 0
    }

    .production-block__describe p {
        font-size: 14.5px
    }

    .production-box .production-block__describe--direction .slider-link {
        margin: 0 auto;
        margin-top: 5px;
        width: 70%
    }

    .production-block__describe--direction .production-block__text h6 {
        text-align: center
    }

    .production-block__describe--direction p {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center
    }

    .production-block__describe--direction .production-block__text {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }
}

@media screen and (max-width: 367px) {
    .production-box .production-block__describe--direction .slider-link {
        width: 100%
    }

    .production-block__img {
        /*height: 210px*/
    }

    .production-block__img--height {
        height: 100%
    }

    .production-block__slider {
        display: none
    }

    .production-block__describe--direction .production-block__text {
        margin-top: 25px
    }
}

.courses {
    padding: 90px 0 20px
}

.courses .production-block__describe {
    min-height: auto
}

.courses p {
    margin-bottom: 15px
}

.courses-program {
    background: #fff;
    padding: 50px 5px 120px
}

.courses-program p {
    line-height: 30px;
    margin-bottom: 10px
}

.courses-program p span {
    color: #005ab2;
    font-weight: 700;
    line-height: 23px
}

.courses-program p a {
    color: #005ab2;
    display: inline-block;
    text-transform: uppercase
}

.courses-program ul {
    padding-left: 0;
    margin-left: 30px;
    margin-bottom: 20px
}

.courses-program ul li {
    text-decoration: none;
    list-style-type: none;
    position: relative;
    margin-bottom: 10px;
    line-height: 23px
}

.courses-program ul li:before {
    content: '';
    width: 8px;
    height: 8px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #005ab2;
    position: absolute;
    left: -18px;
    top: 8px
}

.courses-text {
    margin-bottom: 20px
}

.courses h2 {
    margin-bottom: 35px
}

.courses p {
    text-align: left;
    font-weight: 500;
    line-height: 25px
}

.courses p span {
    font-weight: 700;
    line-height: 24px
}

.courses p a {
    color: #005ab2;
    display: inline-block;
    text-transform: uppercase
}

.courses--padding {
    padding: 50px 0
}

.courses-program h3 {
    margin-bottom: 30px
}

.courses-program nav {
    margin-bottom: 30px;
    margin-left: 15px
}

.courses-program ol li {
    padding-left: 10px;
    line-height: 35px
}

.courses-text-block {
    padding: 30px 0 40px
}

.courses-text p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 15px
}

.container-slider {
    max-width: 1685px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 10px 0 40px
}

.course-slider {
    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;
    overflow: hidden
}

.course-slider div {
    margin: 5px;
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02)
}

.course-slider__item {
    max-width: 257px;
    height: 257px;
    width: 100%;
    margin: 5px 10px
}

.course-slider__item-in {
    max-width: 257px;
    height: 260px;
    width: 100%;
    margin: 5px 1px
}

.course-slider__item img {
    width: 100%
}

.courses-box {
    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-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 40px
}

@media screen and (max-width: 992px) {
    .container .courses {
        padding: 40px 0 20px
    }
}

@media screen and (max-width: 768px) {
    .courses-box {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .container .courses {
        padding: 40px 0 0
    }
}

@media screen and (max-width: 576px) {
    .container .courses h2 {
        margin-bottom: 15px
    }

    .container .courses {
        padding: 20px 0 0
    }

    .courses-text-block {
        padding: 0
    }

    .courses-program li {
        font-size: 14px
    }

    .courses-text p {
        font-size: 14px
    }

    .course-slider__item {
        margin: 0 auto
    }

    .course-slider__item {
        max-width: 315px;
        height: auto
    }
}

.error {
    position: relative;
    height: -webkit-calc(100vh - 256px);
    height: calc(100vh - 256px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.error-block {
    font-size: 9em;
    text-align: center;
    color: #0067bc;
    margin-bottom: 20px;
    font-family: sans-serif
}

.error p {
    font-size: 18px;
    text-align: center;
    line-height: 21px
}

.error p a {
    font-size: 18px;
    color: #0067bc;
    display: inline-block
}

#go-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    color: #fff;
    font-size: 14px;
    text-transform: none;
    cursor: pointer;
    display: none;
    width: 60px;
    height: 35px;
    background: #6495ed;
    text-align: center;
    z-index: 2;
    -webkit-border-radius: 5px;
    border-radius: 5px
}

#go-top .fa-caret-up {
    text-align: center;
    display: block
}

#go-top:hover {
    background: #333
}

.breadcrumbs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 50px
}

.breadcrumbs li {
    list-style-type: none;
    margin-right: 15px;
    position: relative
}

.breadcrumbs li a {
    text-decoration: none;
    color: grey;
    font-size: 14px;
    line-height: 20px;
    text-transform: none
}

.breadcrumbs li:not(:first-child) {
    font-size: 14px
}

.breadcrumbs li:not(:first-child):before {
    content: '';
    width: 3px;
    height: 3px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: grey;
    position: absolute;
    top: 9px;
    left: -8px
}

.breadcrumbs li:not(:first-child) a {
    font-size: 15px
}

.slider-link {
    cursor: pointer;
    display: block;
    height: 40px;
    width: 60%;
    position: relative;
    margin: 0 auto;
    border: 2px solid #007eff;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background: inherit;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 10px 0;
    color: #007eff;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    text-transform: none
}

.slider-link:hover {
    -webkit-box-shadow: 0 4px 26px rgba(19, 135, 215, .33);
    box-shadow: 0 4px 26px rgba(19, 135, 215, .33);
    background-color: #007eff;
    color: #fff
}

.slider-link::before {
    content: "";
    left: 0;
    top: 0;
    -webkit-border-radius: 6px 0 0 6px;
    border-radius: 6px 0 0 6px;
    position: absolute;
    width: 0;
    height: 100%;
    background-color: #007eff;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease
}

.slider-link::after {
    content: "";
    right: 0;
    top: 0;
    -webkit-border-radius: 0 6px 6px 0;
    border-radius: 0 6px 6px 0;
    position: absolute;
    width: 0;
    height: 100%;
    background-color: #007eff;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease
}

.slider-link:hover:before {
    width: 50%;
    opacity: .1;
    z-index: 0
}

.slider-link:hover span {
    color: inherit;
    opacity: 1;
    z-index: 1
}

.slider-link:hover:after {
    width: 50%;
    z-index: 0;
    opacity: .1
}

.slider-link:hover span {
    color: inherit;
    opacity: 1;
    z-index: 1
}

.slider-link:hover {
    color: #fff
}

#next, #prev {
    width: 40px;
    height: 40px;
    background-color: #e8eef0;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    outline: 0;
    border: none;
    cursor: pointer;
    position: absolute;
    top: -80px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

#next:hover, #prev:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

#next {
    right: 0
}

#next:hover {
    background-color: #007eff
}

#next:hover .fa-arrow-right {
    color: #fff
}

#next .fa-arrow-right {
    color: #999;
    font-weight: 100
}

#prev {
    right: 50px
}

#prev .fa-arrow-left {
    color: #999
}

#prev:hover {
    background-color: #007eff
}

#prev:hover .fa-arrow-left {
    color: #fff
}

.slick-slide a, .slick-slide:focus {
    outline: 0
}

.request-block-info {
    position: relative;
    width: 100%;
    margin-top: -120px
}

.request-block-info .request-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 45px 0;
    background: url(../img/ed.png);
    -webkit-background-size: cover;
    background-size: cover;
    margin: 40px 0;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.request-block-info .request-block__item {
    color: #fff;
    font-weight: 700
}

.request-block-info .request-block__item h6 {
    line-height: 20px
}

.request-block-info .request-block__item h6 span {
    text-decoration: underline
}

.popup, .popup-order, .popup-question, .popup-sent {
    background: rgba(0, 0, 0, .7);
    position: fixed;
    display: none;
    z-index: 5000;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0
}

.popup .popup-block, .popup-order .popup-block, .popup-question .popup-block, .popup-sent .popup-block {
    max-width: 600px;
    width: 70%;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    background: #fff;
    padding: 70px 40px;
    z-index: 5001;
    text-align: center;
    border: 8px solid #006ecd;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .4);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .4)
}

.popup .popup-block h2, .popup-order .popup-block h2, .popup-question .popup-block h2, .popup-sent .popup-block h2 {
    margin-bottom: 20px
}

.popup .popup-block p, .popup-order .popup-block p, .popup-question .popup-block p, .popup-sent .popup-block p {
    margin-bottom: 10px;
    line-height: 23px
}

.korpus {
    background: #fff;
    position: relative;
    margin-bottom: 100px;
    font-size: 15px
}

.korpus > div, .korpus > input {
    display: none
}

.korpus label {
    padding: 21px 54px 19px;
    line-height: 28px;
    cursor: pointer;
    font-weight: 700;
    position: relative;
    bottom: 1px;
    top: 16px;
    background: #fff;
    border-right: 1px solid #e4ebec;
    margin-right: -5px
}

.korpus input[type=radio]:checked + label {
    background: #e4ebec;
    color: #005ab2;
    font-weight: 700
}

.korpus > input:nth-of-type(1):checked ~ div:nth-of-type(1), .korpus > input:nth-of-type(2):checked ~ div:nth-of-type(2) {
    display: block;
    padding: 40px 50px;
    margin-top: 30px;
    background: #fff;
    margin-bottom: 10px;
    border-top: 8px solid #f3f8f9
}

.describe-table table, .describe-text table {
    margin-left: 30px
}

.describe-table table tr:nth-child(even), .describe-text table tr:nth-child(even) {
    background: #fafafa
}

.describe-table table tr:nth-child(odd), .describe-text table tr:nth-child(odd) {
    background: #fff
}

.describe-table table tr td, .describe-text table tr td {
    padding: 20px 137px 20px 10px
}

.describe-table table tr td:nth-child(even), .describe-text table tr td:nth-child(even) {
    font-weight: 700;
    font-size: 14px
}

.describe-table table tr td:nth-child(odd), .describe-text table tr td:nth-child(odd) {
    font-weight: 400;
    font-size: 14px
}

.describe-text h2, .describe-text h3, .describe-text h4, .describe-text h5 {
    margin-bottom: 30px
}

.describe-text p {
    line-height: 30px;
    margin-bottom: 20px
}

.describe-text p a {
    color: #005ab2;
    display: inline-block;
    text-transform: uppercase
}

.describe-text .describe-before {
    margin-left: 90px;
    margin-bottom: 20px
}

.describe-text .describe-before p {
    position: relative;
    margin-bottom: 10px
}

.describe-text .describe-before p:before {
    content: '';
    width: 8px;
    height: 8px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #005ab2;
    position: absolute;
    left: -14px;
    top: 9px
}

.describe__img {
    /*width: 100%;*/
    display: inline-block;
    margin: 10px 0
    /*margin: 40px 0*/
}

.describe__img--width {
    width: 70%
}

.pclose:hover {
    color: #00f;
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

.courses-program ol{
    padding-left: 10px;
}



@media screen and (max-width: 1200px) {
    .error {
        height: -webkit-calc(100vh - 248px);
        height: calc(100vh - 248px)
    }

    .describe-text table tr td {
        padding: 20px 60px 20px 10px
    }
}

@media screen and (max-width: 992px) {
    .korpus > input:nth-of-type(1):checked ~ div:nth-of-type(1), .korpus > input:nth-of-type(2):checked ~ div:nth-of-type(2) {
        padding: 40px 5px
    }

    .describe-table table {
        margin-left: 0;
        width: 100%
    }

    .describe-text ul {
        margin-left: 30px
    }
}

@media screen and (max-width: 777px){
    .about .slick-slide {
    display: flex !important;
    width: 100%;
    flex-direction: column;
    align-items: center;
    }
}

@media screen and (max-width: 768px) {
    .header-slider {
        background-image: url(../img/slid.png)
    }

    .popup-block {
        padding: 25px
    }

    .header-slider__img-box {
        width: 40%
    }

    .partners-box__item {
        max-width: 250px
    }

    .contacts-box .footer-form--margin {
        width: 100%;
        margin-bottom: 10px
    }

    .describe-text iframe {
        width: 100%
    }

    .describe-text img {
        width: 100%;
        height: auto;
    }

    .describe-text table tr td {
        padding: 20px 10px 20px 10px
    }

    .popup .popup-block, .popup-order .popup-block, .popup-question .popup-block, .popup-sent .popup-block {
        padding: 40px 15px 15px
    }

}

@media screen and (max-width: 576px) {
    .header-slider__box--margin {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .breadcrumbs {
        margin-top: 30px
    }

    .korpus label {
        padding: 21px 23px
    }

    .request-block-info .request-block__item {
        text-align: center;
        margin-bottom: 7px
    }

    .describe-table table tr td {
        padding: 20px 10px 20px 10px
    }

    .production-block__buttons {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .production-block__buttons .slider-link {
        width: 65%
    }

    .describe-text .describe-before {
        margin-left: 30px;
        margin-bottom: 20px
    }

    .describe__img--width {
        width: 100%
    }

    .korpus {
        margin-bottom: 40px
    }

    .error {
        height: -webkit-calc(100vh - 208px);
        height: calc(100vh - 208px)
    }

    .error-block {
        font-size: 8em
    }

    .error p {
        font-size: 16px
    }

    .error p a {
        font-size: 16px
    }

    .describe-text table {
        margin: 0 auto
    }

    .describe-text table tr td {
        padding: 20px 3px 20px 3px
    }
}

@media screen and (max-width: 460px) {
    .popup .popup-block, .popup-order .popup-block, .popup-question .popup-block, .popup-sent .popup-block {
        width: 100%;
        border: 6px solid #006ecd
    }
}

.companies {
    padding: 10px 0 70px
}

.companies h5 {
    margin-bottom: 40px
}

.companies-box {
    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
}

.companies-box__item {
    margin-top: 10px;
    max-width: 140px;
    margin-right: 5px;
    width: 140px;
    height: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.companies-box__item img {
    width: 100%;
    -webkit-filter: grayscale(100%) brightness(110%) saturate(104%) contrast(99%) invert(15%);
    filter: grayscale(100%) brightness(110%) saturate(104%) contrast(99%) invert(15%)
}

.companies-box__item img:hover {
    -webkit-filter: none;
    filter: none
}

.companies-box__item:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

.companies-box .companies-box__item:hover:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

@media screen and (max-width: 992px) {
    .companies-box {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .companies {
        padding: 10px 0 20px
    }

    .companies h5 {
        margin-bottom: 15px
    }
}

@media screen and (max-width: 768px) {
    .companies h5 {
        margin-bottom: 0
    }
}

.partners {
    margin-bottom: 50px
}

.partners h2 {
    margin: 30px 0
}

.partners-box {
    width: 100%;
    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-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.partners-box__item {
    max-width: 300px;
    width: 100%
}

.partners-box__text {
    padding: 20px 0 30px
}

.partners-box__text h5 {
    color: #1a5fb5;
    line-height: 34px
}

.partners-box__text p {
    line-height: 24px;
    font-weight: 500;
    font-size: 14px
}

.partners-box__text p span {
    margin-bottom: 15px;
    display: block
}

.partners-box__text a {
    color: #1a5fb5;
    margin: 10px 0;
    font-weight: 700;
    text-transform: none;
    display: inline-block;
    border-bottom: dotted;
    -webkit-transition: -webkit-transform .5s linear;
    transition: -webkit-transform .5s linear;
    -o-transition: transform .5s linear;
    transition: transform .5s linear;
    transition: transform .5s linear, -webkit-transform .5s linear
}

.partners-box__text a:hover {
    letter-spacing: .1em;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

.partners-box__img {
    width: 100%;
    height: 160px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    -webkit-box-shadow: 2px -3px 0 -3px rgba(0, 0, 0, .75);
    box-shadow: 2px -3px 0 -3px rgba(0, 0, 0, .75);
    -webkit-transition: -webkit-transform .5s linear;
    transition: -webkit-transform .5s linear;
    -o-transition: transform .5s linear;
    transition: transform .5s linear;
    transition: transform .5s linear, -webkit-transform .5s linear
}

.popup-partners {
    display: none;
    background: 0 0;
    text-align: left
}

.popup-partners p {
    text-align: left;
    font-size: 14px
}

.popup-partners .popup-block {
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    max-width: 840px;
    width: 91%;
    position: relative;
    padding: 40px
}

.popup-partners .partners-box__item {
    max-width: 100%;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px
}

.popup-partners .partners-box__item--direction {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left
}

.popup-partners .partners-box__contact {
    margin-bottom: 10px;
    overflow: hidden
}

.popup-partners .partners-box__contact table tr {
    height: 18px
}

.popup-partners .partners-box__contact table tr td {
    padding: 5px 8px 0;
    line-height: 28px;
    white-space: nowrap
}

.popup-partners .partners-box__img {
    max-width: 180px;
    width: 100%;
    -webkit-box-pack: left;
    -webkit-justify-content: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: auto;
    margin-right: 20px
}

.popup-partners .partners-box__img img {
    width: 100%
}

.popup-partners .partners-box__text {
    width: 40%;
    text-align: left
}

.popup-partners .partners-closed {
    position: absolute;
    top: 15px;
    right: 15px
}

.popup-partners .partners-closed span {
    color: #aeaeae;
    font-size: 12px;
    cursor: pointer
}

.popup-partners .partners-closed span i {
    margin-left: 5px
}


@media screen and (max-width: 768px) {
    .partners-box__item {
        max-width: 250px
    }

    .popup-partners .partners-box__text {
        padding: 20px 0 0
    }

    .popup-partners .partners-box__text span {
        margin-bottom: 0
    }

    .popup-partners .partners-box__text {
        width: 100%;
        padding: 0
    }

    .popup-partners .popup-block {
        padding: 35px 10px 10px
    }

    .popup-partners .partners-box__contact {
        margin-bottom: 0
    }
}

@media screen and (max-width: 576px) {
    .partners-box__item {
        max-width: 100%
    }

    .popup-partners .partners-box__contact table tr td {
        padding: 5px 5px 0 0
    }

    .popup-partners .partners-box__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.contacts {
    margin: 20px 0 0
}

.contacts h2 {
    margin-top: 35px;
    margin-bottom: 10px
}

.contacts-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.contacts-info {
    width: 40%;
    padding: 40px
}

.contacts-info__item {
    margin-bottom: 55px
}

.contacts-info__item a {
    line-height: 25px;
    font-weight: 700;
    color: #282828;
    text-transform: none
}

.contacts-info__item p {
    line-height: 25px;
    font-weight: 700
}

.contacts-info__title {
    color: #616161;
    margin-bottom: 5px
}

@media screen and (max-width: 992px) {
    .contacts-box {
        margin-bottom: 10px
    }
}

@media screen and (max-width: 768px) {
    .contacts-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .contacts-info {
        width: 100%;
        padding: 40px 0 10px;
        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-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .contacts-info__item {
        margin-bottom: 20px
    }
}

@media screen and (max-width: 576px) {
    .contacts .form-entrance__text {
        text-align: left
    }
}

.video-responsive {
position:relative;
padding-bottom:56.25%;
padding-top:30px;
height:0;
overflow:hidden;
}
.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
