@font-face {
    font-family: 'Avenir Next Lig';
    src: url("/assets/fonts/AvenirNextCyr-Light.eot");
    src: local("../fonts/Avenir Next Cyr Light"), local("AvenirNextCyr-Light"), url("/assets/fonts/AvenirNextCyr-Light.eot") format("embedded-opentype"), url("/assets/fonts/AvenirNextCyr-Light.woff") format("woff"), url("/assets/fonts/AvenirNextCyr-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir Next Cyr';
    src: url("/assets/fonts/AvenirNextCyr-Regular.eot");
    src: local("../fonts/Avenir Next Cyr Regular"), local("AvenirNextCyr-Regular"), url("/assets/fonts/AvenirNextCyr-Regular.eot") format("embedded-opentype"), url("/assets/fonts/AvenirNextCyr-Regular.woff") format("woff"), url("/assets/fonts/AvenirNextCyr-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoSlab Regular';
    src: url("/assets/fonts/RobotoSlab-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoSlab Light';
    src: url("/assets/fonts/RobotoSlab-Light.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSerif Italic';
    src: url("/assets/fonts/NotoSerif-Italic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'NotoSerif BoldItalic';
    src: url("/assets/fonts/NotoSerif-BoldItalic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'RobotoSlab Bold';
    src: url("/assets/fonts/RobotoSlab-Bold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Avenir Next Cyr';
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

a:focus, input:focus, button:focus, textarea:focus, select:focus {
    outline: none;
}

button {
    font-family: 'Avenir Next Cyr';
}
.language {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    width: 48px;
    max-width: 48px;
}

.language__img {
    margin: 2px;
    cursor: pointer;
    opacity: .5;
}
.language__img:hover, .language__img_active {
    opacity: 1;
}
.menu_btn {
    position: fixed;
    background: url(/assets/images/menu.svg) no-repeat;
    background-position: center 0;
    background-size: 60px;
    border: none;
    width: 80px;
    padding-top: 50px;
    font-size: 18px;
    color: #839795;
    cursor: pointer;
    left: 18px;
    top: 50%;
    margin-top: -35px;
}

#menu_line {
    left: 0;
    top: 0;
    width: 110px;
    height: 100%;
    position: fixed;
    z-index: 90;
    background: #f5f5f5;
}

#menu_line.active {
    background: #434f4d;
}

#menu_line.active .menu_btn {
    background: url(/assets/images/close-white.svg) no-repeat;
    background-position: center 0;
    background-size: 60px;
    color: #fff;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

#menu_wrap {
    display: none;
    background: #434f4d;
    overflow: auto;
    color: #fff;
    padding: 20px;
    position: fixed;
    left: 100px;
    width: calc(100% - 100px);
    height: 100%;
    z-index: 81;
}

#menu_wrap menu {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}

.list-items ul {
    padding: 0;
}

.list-items ul li {

    margin-bottom: 30px;
    position: relative;
    padding-left: 35px;
    margin-right: 10px;
}

.list-items ul li::before {
    content: "_";
    position: absolute;
    left: 0;
    top: -15px;
    color: #839795;
    font-size: 26px;
}

.list-items ul li a {
    color: #839795;
    font-size: 18px;
}

.list-items ul li:first-child {
    font-family: 'RobotoSlab Bold';
    padding-left: 0;
}

.list-items ul li:first-child::before {
    display: none;
}

.list-items ul li:first-child a {
    font-size: 20px;
}

.list-items .title-m {
    font-size: 24px;
    color: #ffffff;
    font-family: 'RobotoSlab Bold';
}

.local-bl {
    font-family: 'RobotoSlab Regular';
}

.local-bl ul {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    padding: 0;
    margin: 0;
}

.local-bl ul li {
    padding: 5px 8px;
    margin: 0 5px;
    display: inline-block;
    font-size: 18px;
    color: blue;
}

.local-bl ul li.active {
    background: #e8e3e3;
    /* color: #000; */
    padding-left: 3px;
    padding-right: 3px;
}

.local-bl ul li a {
    color: #9ab1ad;
}

.local-bl ul li.active a {
    color: rgba(0, 0, 0, 1);
}

.menu_top_line {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.btn-c {
    min-width: 240px;
    background: #fff;
    font-size: 16px;
    border: none;
    display: inline-block;
    color: #434f4d;
    text-align: center;
    padding: 15px 5px;
    font-family: 'RobotoSlab Bold';
    transition: all .25s ease;
}

.btn-c:hover {
    opacity: .8;
    cursor: pointer;
}

.first-block {
    background: url(/assets/images/first-section-bg.jpg) no-repeat;
    background-size: cover;
    min-height: 500px;
    margin-bottom: 60px;
}

.first-block h1 {
    text-align: center;
    color: #fff;
}

.phone {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    color: #fff;
}

.phone a {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    padding-bottom: 5px;
}

.phone .phone-r {
    padding-left: 15px;
}

.phone.left {
    text-align: right;
}

.logo {
    text-align: center;
}

.logo .local-bl {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    position: relative;
    z-index: 9;
}

.logo .local-bl li {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.logo .img {
    width: 260px;
    height: 200px;
    padding: 20px;
    background: #fff url(/assets/images/logo_main_small_new.png) no-repeat;
    background-position: center;
    position: relative;
}

.logo .img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 20px;
    border: 130px solid transparent;
    border-top: 40px solid #fff;
}

@media (max-width: 640px) {
    .logo .img::before {
        content: "";
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        height: 20px;
        border: none;
        border-top: none;
    }
}

.top_header {
    width: 100%;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.top_header .phone {
    padding-top: 40px;
}

h1,
.title_h1 {
    font-family: 'RobotoSlab Light';
    font-size: 56px;
    font-weight: normal;
}

.title_h1 {
    position: relative;
    z-index: 3;
    display: inline-block;
    font-size: 48px;
    color: #839795;
}

.title_h1::before {
    content: "";
    height: 15px;
    background: #f5f5f5;
    width: 100%;
    position: absolute;
    left: -5px;
    z-index: -1;
    top: 40px;
    width: calc(100% + 5px);
}

.breadcrumbs {
    background: #f5f5f5;
    padding: 40px 5px 10px 5px;
    margin-top: -25px;
    margin-left: -10px;
}

.breadcrumbs ul {
    padding: 0;
    margin: 0;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    color: #839795;
}

.breadcrumbs ul a {
    font-size: 18px;
    padding-left: 5px;
    padding-right: 5px;
    color: #839795;
    font-family: 'RobotoSlab Regular';
}

.pag-area {
    margin-top: 60px;
    margin-bottom: 80px;
}

.pag-area .title_h1 {
    color: #434f4d;
}

.btn-c.arr {
    margin-right: 80px;
    position: relative;
}

.btn-c.arr::before {
    content: "";
    width: 65px;
    height: 18px;
    position: absolute;
    top: 17px;
    right: -65px;
    background-size: 80px;
    background: url(/assets/images/arrow-white.svg) no-repeat;
    background-position: center right;
}

.btn-c.blue {
    background: #839795;
    color: #fff;
}

.btn-c.arr.blue::before {
    background-size: 80px;
    background: url(/assets/images/arrow-blue.svg) no-repeat;
    background-position: center right;
}

.wrap-h {
    width: 100%;
    text-align: center;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    min-height: 250px;
    padding-bottom: 50px;
}

.wrap-h h1 {
    margin-top: 0;
}

.block-c {
    padding: 60px 0;
}

i {
    font-family: 'NotoSerif Italic';
}

.second-bl .title_h1 {
    margin-bottom: 30px;
    margin-top: -15px;
}

.second-bl .col-md-6 {
    padding-bottom: 80px;
}

.slider {
    background: #f5f5f5;
    overflow: hidden;
}

.name-category {
    display: inline-block;
    vertical-align: middle;
    min-height: 93px;
}

.slider_main > li {
    display: none;
}

.slider_main > li.active {
    display: block;
}

.slider_main ul {
    width: 100%;
    padding-left: 0;
}

.slider_center-block {
    position: relative;
    z-index: 5;
    width: 550px;
    height: 550px;
    margin-top: -250px;
    margin-left: auto;
    margin-right: auto;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.slider_center-block .slider_title {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    width: 300px;
    height: 300px;
    background: #fff;
    border-radius: 50%;
    font-family: 'RobotoSlab Bold';
    font-size: 20px;
    padding-bottom: 40px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.slider_center-block .slider_title span {
    font-size: 30px;
}

.slider_center-block .slider_pagination {
    position: absolute;
    top: 50%;
    left: 0;
}

.slider_center-block .slider_pagination ul li {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid #839795;
    border-radius: 50%;
}

.slider_center-block .slider_pagination ul li.active {
    background-color: #434f4d !important;
    border-color: #434f4d;
}

.slider_center-block .slider_pagination ul li.active::before {
    content: "";
    position: absolute;
    border: 5px solid transparent;
    border-bottom: 10px solid #434f4d;
}

.slider_center-block .slider_pagination ul li:nth-child(1) {
    left: 50px;
    top: 60px;
    background: url(/assets/images/001-case.svg) no-repeat;
    background-size: 40px;
    background-position: center;
}

.slider_center-block .slider_pagination ul li:nth-child(1).active::before {
    left: 111px;
    top: -14px;
    -webkit-transform: rotate(55deg);
    transform: rotate(55deg);
}

.slider_center-block .slider_pagination ul li:nth-child(2) {
    top: 170px;
    left: 240px;
    background: url(/assets/images/002-handshake.svg) no-repeat;
    background-size: 40px;
    background-position: center;
}

.slider_center-block .slider_pagination ul li:nth-child(2).active::before {
    top: -54px;
    left: 30px;
}

.slider_center-block .slider_pagination ul li:nth-child(3) {
    top: 60px;
    left: 420px;
    background: url(/assets/images/UkraineCoatOfArmsSmallBW.svg) no-repeat;
    background-size: 40px;
    background-position: center;
}

.slider_center-block .slider_pagination ul li:nth-child(3).active::before {
    left: -51px;
    top: -14px;
    -webkit-transform: rotate(-55deg);
    transform: rotate(-55deg);
}

.slider_center-block .slider_pagination ul li:nth-child(1).active {
    background: url(/assets/images/001-case-white.svg) no-repeat;
    background-size: 40px;
    background-position: center;
}

.slider_center-block .slider_pagination ul li:nth-child(2).active {
    background: url(/assets/images/002-handshake-white.svg) no-repeat;
    background-size: 40px;
    background-position: center;
}

.slider_center-block .slider_pagination ul li:nth-child(3).active {
    background: url(/assets/images/UkraineCoatOfArmsSmallBW.svg) no-repeat;
    background-size: 40px;
    background-position: center;
}

.slider_main {
    padding: 0;
    width: 100%;
    margin-top: -220px;
}

.slider_main .slider_img {
    position: relative;
}

.slider_main .slider_img img {
    width: 100%;
    height: auto;
}

.slider_main .slider_title {
    font-family: 'RobotoSlab Bold';
    font-size: 28px;
    color: #fff;
    position: absolute;
    left: 25px;
    bottom: 35px;
}

.slider_main .slider_wrap {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    padding-top: 20px;
}

.slider_main .slider_wrap ul {
    padding: 0;
    width: 25%;
}

.slider_main .slider_wrap ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.slider_main .slider_wrap ul li::before {
    content: "_";
    position: absolute;
    left: 0;
    top: -15px;
    color: #839795;
    font-size: 26px;
}

.slider_main .slider_content {
    width: 50%;
    line-height: 1.5;
    padding-right: 15%;
}

.slider_main .slider_content p {
    margin: 0;
}

.slider_main .slick-arrow {
    position: absolute;
}

.slider_main .slick-prev {
    left: 0;
    top: -40px;
}

.slider_main .slick-next {
    right: 0;
    top: -40px;
}

.w100 {
    width: 100%;
}

.slider_preview {
    width: 25%;
    position: relative;
    z-index: 1;
    margin-top: -60px;
    padding: 25px;
    background: url(/assets/images/bg-brands.jpg) no-repeat;
    background-position: center center;
    padding-bottom: 100px;
}

.slider_preview .slider_num {
    display: inline-block;
    font-size: 40px;
    padding-bottom: 5px;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'RobotoSlab Bold';
    border-bottom: 1px solid #fff;
}

.slider_preview b {
    font-size: 20px;
    color: #fff;
}

.slider_preview .slider_bl {
    position: absolute;
    right: 25px;
    color: #434f4d;
    bottom: 25px;
    font-family: 'NotoSerif Italic';
    text-align: right;
    font-size: 18px;
}

.cont {
    display: inline-block;
    width: 48px;
    height: 12px;
    margin-left: 5px;
    background: url(/assets/images/arrow_continue.svg) no-repeat;
    background-size: 100%;
    background-position: center;
}

.cont:hover {
    opacity: .8;
}

.slick-arrow {
    width: 100px;
    background: transparent;
    color: transparent;
    border: none;
    cursor: pointer;
}

.slick-arrow:hover {
    opacity: .7;
}

.slick-prev {
    background: url(/assets/images/arrow-left.svg) no-repeat;
    background-size: 100px;
}

.slick-next {
    background: url(/assets/images/arrow-right.svg) no-repeat;
    background-size: 100px;
}

.clear {
    clear: both;
}

.mission {
    font-size: 18px;
}

.mission .title_h1 {
    margin-bottom: 60px;
}

.mission .img_wrap {
    position: relative;
    width: 50%;
    float: left;
    margin-right: 40px;
    margin-bottom: 100px;
}

.mission .img_wrap img {
    width: 100%;
    height: auto;
}

.mission .img_wrap-panel {
    min-width: 450px;
    position: absolute;
    background: #f5f5f5;
    bottom: -40px;
    left: 0;
    z-index: 3;
    padding: 20px;
}

.mission .img_wrap-panel .name {
    font-size: 24px;
    font-family: 'RobotoSlab Bold';
}

.mission .img_wrap-panel .position {
    color: #839795;
    font-size: 18px;
}

.abilities {
    padding-left: 20px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}

.abilities li {
    display: inline-block;
    vertical-align: top;
}

.abilities li b {
    font-size: 40px;
    font-family: 'RobotoSlab Bold';
    color: #434f4d;
}

.abilities li p {
    color: #839795;
    line-height: 1.5;
    font-size: 15px;
}

.specialists .title_h1 {
    margin-bottom: 60px;
}

.slider-specialists {
    width: 100%;
}

.slider-specialists .slick-slide {
    position: relative;
}

.slider-specialists .slick-list {
    overflow: visible;
    z-index: 9;
}

.slider-specialists ul {
    width: 100%;
    padding-left: 0;
    z-index: 9;
}

.slider-specialists ul ul {
    padding-top: 20px;
}

.slider-specialists ul ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 18px;
}

.slider-specialists ul ul li::before {
    content: "_";
    position: absolute;
    left: 0;
    top: -15px;
    color: #839795;
    font-size: 26px;
}

.slider-specialists img {
    width: 100%;
}

.slider-specialists .slider-specialists_name {
    background: #f5f5f5;
    padding: 25px;
    position: absolute;
    left: 0;
    width: 100%;
    top: 99%;
    display: none;
}

.slider-specialists .name {
    font-family: 'RobotoSlab Bold';
    font-size: 24px;
}

.slider-specialists .slick-slide:hover {
    z-index: 9;
    transition: all .5s ease;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.slider-specialists .slick-slide:hover .slider-specialists_name {
    display: block;
}

.slider-specialists .slick-arrow {
    position: absolute;
    bottom: -50px;
}

.slider-specialists .slick-next {
    right: 0;
}

.slider-specialists .slick-prev {
    left: 0;
}

.public .title_h1 {
    margin-bottom: 60px;
}

.public div[class*="col-md-"] {
    padding-left: 0;
    padding-top: 0;
}

.new_wrap {
    margin-bottom: 15px;
}

.new_wrap .new_wrap-img {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    overflow: hidden;
    margin-bottom: 15px;
}

.new_wrap .new_wrap-img img {
    width: 100%;
    height: auto;
}

.new_wrap .new_wrap-descr {
    line-height: 1.5;
}

.new_wrap .new_wrap-date {
    font-family: 'RobotoSlab Light';
    color: #839795;
    padding: 0 25px;
}

.new_wrap .new_wrap-date .new_wrap-day {
    font-size: 34px;
    border-bottom: 2px solid #839795;
}

.new_wrap .new_wrap-date p {
    margin: 0;
}

.pagination {
    width: 100%;
    display: block;
    padding: 0;
    text-align: center;
}

.pagination li {
    display: inline-block;
}

.pagination li a {
    width: 35px;
    height: 35px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'RobotoSlab Bold';
}

.pagination li a.active {
    background: #839795;
    color: #fff;
    margin-right: 70px;
    position: relative;
}

.pagination li a.active::before {
    content: "";
    width: 65px;
    height: 18px;
    position: absolute;
    top: 9px;
    right: -65px;
    background-size: 80px;
    background: url(/assets/images/arrow-blue.svg) no-repeat;
    background-position: center right;
}

.left-new-block {
    padding-right: 10%;
}

.left-new-block .btn-c {
    margin-top: 60px;
}

.slider_trust {
    width: 100%;
    padding: 0;
}

.beliave .title_h1 {
    margin-bottom: 60px;
}

.beliave .slick-list {
    overflow: visible;
    z-index: 9;
}

.beliave .slick-track {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.beliave .slider_trust-name {
    height: 70px;
    font-size: 18px;
    text-align: left;
}

.beliave .slick-slide {
    position: relative;
}

.beliave .slider_trust-info {
    position: absolute;
    overflow: hidden;
    z-index: 9;
    text-align: left;
    left: 0;
    top: 0;
    width: 100%;
    height: 110%;
    background: #f5f5f5;
    padding: 30px 40px;
    visibility: hidden;
    opacity: 0;
    transition: all .5s ease;
}

.beliave .slider_trust-info .name {
    font-family: 'RobotoSlab Bold';
    font-size: 24px;
    color: #434f4d;
}

.beliave .slider_trust-info p {
    line-height: 1.5;
}

.beliave .slick-slide {
    padding: 50px;
    text-align: center;
    background: url(/assets/images/bg-brands.jpg) no-repeat;
    background-size: cover;
}

.beliave .slick-slide > div {
    width: 100%;
}

.beliave .slick-slide:hover .slider_trust-info {
    visibility: visible;
    opacity: 1;
}

.beliave .slider_trust-namew {
    padding-top: 40px;
    margin-top: 30px;
    height: 100px;
    font-size: 20px;
    text-align: left;
    color: #fff;
    position: relative;
}

.beliave .slider_trust-namew::before {
    content: "";
    width: 100px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
}

.beliave img {
    height: 100px;
    margin-left: auto;
    margin-right: auto;
}

.beliave .slick-arrow {
    position: absolute;
    bottom: -50px;
}

.beliave .slick-next {
    right: 0;
}

.beliave .slick-prev {
    left: 0;
}

.contcts .cooperation {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#map {
    width: 100%;
    height: 540px;
}

.office .office_wrap {
    background: #434f4d;
    color: #fff;
    padding: 0 25px 25px;
}

.office .office_wrap * {
    display: block;
}

.office .office_wrap a {
    color: #fff;
}

.office .office_wrap .office-name {
    font-family: 'RobotoSlab Bold';
    margin-bottom: 20px;
    font-size: 20px;
}

.office .office_wrap .office-block {
    padding-left: 40px;
}

.office .office_wrap .office-title {
    color: #839795;
    margin: 10px 0;
    font-family: 'RobotoSlab Bold';
    margin-left: -40px;
}

.office .office-img {
    position: relative;
}

.office .office-img::before {
    content: "";
    width: 100%;
    height: 40px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(67, 79, 77, 0), #434f4d);
}

.map {
    width: 100%;
    position: relative;
    margin-top: 50px;
}

.map .office {
    position: absolute;
    z-index: 9;
}

.map .office.left {
    left: 0;
}

.map .office.right {
    right: 0;
}

h3 {
    font-family: 'RobotoSlab Bold';
    font-size: 24px;
}

.contact-page {
    padding-top: 80px;
}

.contact-page #map {
    height: 650px;
    margin-bottom: -80px;
}

.contact-page b {
    font-size: 26px;
    color: #839795;
    font-family: 'RobotoSlab Bold';
}

.static {
    position: static !important;
    display: block !important;
}

footer {
    margin-top: 80px;
    background: #434f4d;
    color: #fff;
    padding: 80px 0 0;
}

footer .bottom_foot_panel {
    margin-top: 60px;
    background: #839795;
    color: #000;
    padding: 10px 0;
}

.modal-wrap {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 991;
    overflow: auto;
}

.modal-wrap .modal-wrap-form {
    width: 500px;
    background: #f5f5f5;
    padding: 40px 60px;
}

.modal-wrap .modal-wrap-form .title {
    float: left;
    color: #434f4d;
    font-size: 26px;
    margin-bottom: 20px;
    font-family: 'RobotoSlab Bold';
}

.modal-wrap .modal-wrap-form .close {
    margin-top: 5px;
    width: 30px;
    height: 30px;
    float: right;
    background: url(/assets/images/close.png) no-repeat;
    background-size: 30px;
}

.modal-wrap .modal-wrap-form .input {
    margin: 20px 0;
}

.modal-wrap .modal-wrap-form .input label {
    display: block;
    margin-bottom: 10px;
}

.modal-wrap .modal-wrap-form .input input {
    width: 100%;
    padding: 20px;
    border: none;
}

.modal-wrap .modal-wrap-form .btn-c {
    width: calc(100% - 80px);
}

.new-page {
    font-size: 18px;
    line-height: 1.5;
}

.new-page .new_wrap {
    width: 100%;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.new-page table {
    text-align: left;
}

.new-page table td,
.new-page table th {
    padding: 15px 5% 15px 10%;
}

.new-page table thead {
    background: #f5f5f5;
}

.new-page table thead tr th:nth-child(1) {
    width: 30%;
}

.new-page .slider_preview {
    margin-top: 0;
    float: left;
    margin-right: 80px;
}

.new-page .newa-block {
    width: 100%;
}

.new-page .img-art {
    color: #839795;
}

.new-page .img-art p {
    margin: 20px 0;
}

.new-page .content-pad {
    padding-left: 10%;
}

.new-page h2 {
    margin: 30px 0;
}

.new-page b {
    font-family: 'RobotoSlab Bold';
    font-size: 18px;
}

.new-page p {
    margin: 50px 0;
}

.new-page img {
    width: 100%;
    height: auto;
}

.new-page ol {
    counter-reset: myCounter;
    padding-left: 0;
    margin-left: -10px;
}

.new-page ol li {
    list-style: none;
}

.new-page ol li:before {
    counter-increment: myCounter;
    content: counter(myCounter);
    font-family: 'RobotoSlab Bold';
    color: white;
    background: #839795;
    display: inline-block;
    text-align: center;
    margin: 5px 10px;
    line-height: 30px;
    width: 30px;
    height: 30px;
}

.new-page table {
    width: 100%;
}

.new-page ul {
    padding: 0;
}

.new-page ul li {
    display: inline-block;
    margin-bottom: 30px;
    position: relative;
    padding-left: 35px;
}

.new-page ul li::before {
    content: "_";
    position: absolute;
    left: 0;
    top: -15px;
    color: #839795;
    font-size: 26px;
}

.new-page .new_wrap-date {
    padding-left: 0;
}

.bottom-art-panel {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin-top: 40px;
    justify-content: space-between;
}

.bottom-art-panel .btn-p {
    width: 40%;
}

.bottom-art-panel .btn-p b {
    margin-top: 20px;
    display: block;
    width: 100%;
}

.bottom-art-panel .prev {
    text-align: right;
}

.btn-c.blue.arr.reverse {
    margin-right: 0;
    margin-left: 60px;
}

.btn-c.blue.arr.reverse::before {
    content: "";
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    left: -60px;
}

.quote {
    padding: 40px;
    background: #f5f5f5;
}

.icon-thank {
    width: 100%;
    height: 50px;
    background: url(/assets/images/smartphone.svg) no-repeat;
    background-size: 50px;
    background-position: center;
    margin: 30px 0 50px 0;
}

.checkbox {
    position: relative;
    padding-left: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    background: url(/assets/images/check.png) no-repeat;
    background-position: left center;
}

.checkbox.active {
    background: url(/assets/images/checkbox-active.jpg) no-repeat;
    background-position: left center;
}

.checkbox input {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.close {
    cursor: pointer;
}

.close:hover {
    opacity: .8;
}

.thank-wrap {
    text-align: center;
}

.thank-wrap .title {
    float: none !important;
}

.thank-wrap p {
    margin-bottom: 60px;
}

.politic {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
}

.politic a {
    color: #839795;
    font-weight: bold;
    position: relative;
    z-index: 9;
}

.modal-bg {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 91;
    background: rgba(0, 0, 0, 0.4);
}

header .row {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .row .phone {
    color: #000;
}

header .row .phone .phone-r {
    position: relative;
}

header .row .phone .phone-r:nth-child(2)::after {
    content: ".";
    position: absolute;
    right: 6px;
    top: -27px;
    line-height: 1;
    font-size: 65px;
    color: #839795;
}

header .row .phone a {
    color: #000;
    font-family: 'RobotoSlab Bold';
}

header .row .phone-r {
    padding-right: 40px;
}

header .row .local-bl ul li.active {
    background: #839795;
    color: #fff;
    padding-left: 5px;
    padding-right: 5px;
}

header .row .logo .img {
    width: 150px;
    height: 100px;
    background: #fff url(/assets/images/logo2.svg) no-repeat;
    background-position: center;
    background-size: 100px;
    background-color: #f5f5f5;
}

header .row .logo .img::before {
    border: 75px solid transparent;
    border-top: 40px solid #f5f5f5;
}

.news-list {
    padding-top: 80px;
}

.news-list .wrap {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}

.news-list .title_h1 {
    margin-bottom: 80px;
}

.news-list .new_wrap {
    width: 50%;
    float: left;
    margin-bottom: 50px;
}

.news-list .row .new_wrap:nth-child(odd) {
    padding-right: 10%;
}

.news-list .row .new_wrap:nth-child(even) {
    padding-left: 10%;
}

@media (max-width: 1200px) {
    header .logo {
        margin-bottom: 50px;
    }

    .beliave .slick-slide {
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .news-list .wrap {
        margin-left: -25px;
        margin-right: -25px;
    }

    .news-list .new_wrap {
        padding: 10px 25px !important;
    }

    .contact-page .modal-wrap.static {
        margin-top: 40px;
    }

    .contact-page .modal-wrap-form {
        width: 100% !important;
    }

    .wrap-h {
        margin-top: 30px;
        margin-bottom: 100px;
    }

    .top_header .phone {
        text-align: center !important;
        justify-content: center;
        margin-bottom: 30px;
    }

    .logo .img {
        margin-left: auto;
        margin-right: auto;
    }

    .top_header {
        display: block;
        text-align: center;
    }

    .mission .img_wrap {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .slider_preview {
        margin-top: 30px;
    }

    .slick-list {
        overflow: hidden !important;
    }

    .slider_main .slider_wrap {
        display: block;
        text-align: center;
    }

    .slider_main .slider_content {
        padding-right: 0;
        margin: 25px 0;
    }

    .slider_main .slider_content {
        width: 100%;
    }

    .slider_main .slider_wrap ul li {
        text-align: left;
    }

    .slider_main .slider_wrap ul {
        width: auto;
    }

    .slider_preview {
        width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .slider-specialists .slider-specialists_name {
        display: block;
        position: static;
    }

    .slider_center-block {
        display: none;
    }

    .slider_main {
        margin-top: 100px;
    }

    .mission .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .slider-specialists .slick-arrow {
        top: 50%;
        bottom: auto;
        z-index: 99;
    }

    .contact-page div[class*="col-"],
    .public div[class*="col-md-"],
    .contcts div[class*="col-md-"],
    .second-bl div[class*="col-md-"],
    footer div[class*="col-md-"] {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }

    .second-bl div[class*="col-md-"] {
        margin: 20px 0;
    }

    .left-new-block {
        order: 2;
    }

    .block-c {
        padding: 20px 0;
    }

    .beliave .slider_trust-info {
        position: static;
        visibility: visible;
        opacity: 1;
    }

    .map .office {
        position: static;
        text-align: center;
        margin: 30px 0;
    }

    .map .office img {
        width: 100%;
    }

    #menu_wrap menu {
        display: block;
    }

    .list-items {
        width: 100%;
    }

    .list-items li {
        width: 100%;
    }

    .beliave .slick-arrow {
        bottom: 30%;
        z-index: 99;
    }

    .beliave .slick-prev {
        left: 20px;
    }

    .beliave .slick-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .news-list .new_wrap {
        width: 100%;
    }

    header .row .phone .phone-r:nth-child(2)::after {
        display: none;
    }

    header .row {
        justify-content: center;
    }

    header .row .local-bl {
        margin-bottom: 15px;
    }

    .new-page table td, .new-page table th {
        padding: 10px;
    }

    .bottom-art-panel {
        display: block;
        text-align: center;
    }

    .bottom-art-panel .btn-p {
        width: 100%;
        margin-top: 20px;
    }

    #menu_wrap {
        left: 0;
        width: 100%;
        padding-left: 70px;
    }

    .first-block h1 {
        font-size: 36px;
    }

    #menu_line {
        width: auto;
    }

    body {
        padding-left: 0;
    }

    .menu_btn {
        top: 5px;
        left: 5px;
        margin-top: 0;
    }

    .container {
        padding-left: 35px;
        padding-right: 35px;
    }

    .abilities {
        display: block;
    }

    .slider_main .slider_title {
        position: static;
        color: #000;
        font-size: 24px;
    }

    .office .office_wrap .office-block {
        padding-left: 0;
    }
}

@media (max-width: 500px) {
    header .phone {
        width: 100%;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    .new-page .new_wrap {
        width: 100%;
        display: block;
    }

    .new-page .new_wrap .new_wrap-date {
        width: 65px;
        display: block;
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-c {
        font-size: 14px;
        min-width: 200px;
    }

    .menu_top_line {
        display: block;
    }

    .menu_top_line .local-bl {
        margin-bottom: 30px;
    }

    .modal-wrap .modal-wrap-form .btn-c {
        width: 100%;
        margin-right: 0;
    }

    .modal-wrap .modal-wrap-form .btn-c::before {
        display: none;
    }

    .modal-wrap .modal-wrap-form {
        width: 300px;
        padding: 10px;
    }

    .top_header {
        padding-top: 50px;
    }

    .menu_btn {
        background-color: #fff;
    }

    .wrap-h {
        margin-top: 10px;
        margin-bottom: 40px;
    }

    .title_h1 {
        font-size: 34px;
    }

    .title_h1::before {
        bottom: -5px;
    }

    .mission .img_wrap-panel {
        width: 100%;
        position: static;
        min-width: 1px;
    }

    .abilities {
        padding: 0;
    }

    .contcts .cooperation {
        display: block;
    }
}




section#el-bpl{
    margin: 50px 0;
}

section .el-add-el .left-new-block .new_wrap{
    position: relative;
}
section.el-add-el .left-new-block .new_wrap .new_wrap-date{
    position: absolute;
    left: 15px;
    top : 65px;
    padding: 10px 20px;
    width: auto;
    background: #eaeaea;
}
section.el-add-el .left-new-block .new_wrap  .new_wrap-img a{
    display: block;
    width: 100%;
}
section.el-add-el .left-new-block .new_wrap  .new_wrap-img {
    padding: 20px;
    border: 10px solid rgba(131, 151, 149, 0.25);
}
section.el-add-el .left-new-block .new_wrap  .new_wrap-img img{
    max-height: 350px;
    object-position: center;
    object-fit: cover;
}
section.el-add-el .new_wrap  h3 a{
    margin: 20px 0;
    display: block;
    padding-bottom: 10px;
    color: #333;
}
section.el-add-el .left-new-block .new_wrap  h3 a{
    margin: 20px 0;
    display: block;
    padding-bottom: 10px;
    color: #333;
}
.el-banner{
    min-height: 500px;
    background: #eaeaea;
    padding-bottom: 100px;
    border-bottom: 5px solid rgba(135, 135, 135, 0.2)
}
.el-banner .el-top-row{
    margin: 0 auto;
}
.el-banner .el-top-row .el-logo{
    text-align: center;
}
.el-banner .el-title{
    width: 100%;
    padding-top: 150px;
    text-align: center;
}
.el-banner .el-breadcrumbs{
    width: 100%;
    padding: 20px 0;
    text-align: center;
}
.el-banner .el-breadcrumbs ul{
    list-style: none;
    display: inline-block;
    padding: 0;
    margin: 0;
    margin-top: 80px;
}
.el-banner .el-breadcrumbs ul li{
    float: left;
    margin: 0 5px;
}
.el-banner .el-breadcrumbs ul li a{
    text-decoration: none;
    color: #333;
}
.el-banner .el-breadcrumbs ul li{
    color: #717171;

}
.el-wrap-posts{
    padding-top: 50px;
    padding-bottom: 120px;
}
.el-wrap-posts .el-wrap-articles {
    width: 100%;
    display: flex;
    flex-flow: wrap row;
    justify-content: flex-start;
}
.el-wrap-posts .el-wrap-articles .el-empty-alert{
    text-align: center;
    font-size: 17px;
    color: #333;
    padding: 30px 0;
}

.el-wrap-posts .el-wrap-articles article{
    width: calc(50% - 30px);
    margin-right: 30px;
    min-height: 350px;
    padding: 20px;
    background: #fff;
    margin-bottom: 30px;
    position: relative;
    border-radius: 10px;
    box-shadow: 4px 4px 20px #87878717;
    transition: 0.3s;
    overflow: hidden;
    opacity: 1;
    transform-origin: center;
    transform: scale(1, 1);
}
.el-wrap-posts .el-wrap-articles article.el-append-widget{
    opacity: 0;
    transform: scale(0.7, 0.7);
    transform-origin: center;
}
.el-wrap-posts .el-wrap-articles article:hover{
    box-shadow: 6px 6px 25px rgba(135, 135, 135, 0.14);
}
.el-wrap-posts .el-wrap-articles article .el-back-bg{
    position: absolute;
    top :0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.el-wrap-posts .el-wrap-articles article .el-back-bg::after{
    content: ' ';
    position: absolute;
    top : 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#7db9e8+0,000000+100&0+0,0.7+58 */
    background: -moz-linear-gradient(top, rgba(125,185,232,0) 0%, rgba(53,78,97,0.7) 58%, rgba(0,0,0,0.7) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(125,185,232,0) 0%,rgba(53,78,97,0.7) 58%,rgba(0,0,0,0.7) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(125,185,232,0) 0%,rgba(53,78,97,0.7) 58%,rgba(0,0,0,0.7) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007db9e8', endColorstr='#b3000000',GradientType=0 ); /* IE6-9 */
}
.el-wrap-posts{
    width: 100%;
}
article.el-dynamic-upload{
    opacity: 0;
}
article.el-dynamic-upload.el-toggle{
    opacity: 1;
}
.el-wrap-posts .el-wrap-articles article .el-back-bg img{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    transition: ease-in 0.3s;
    transform: scale(1,1);
    filter: blur(0)
}
.el-wrap-posts .el-wrap-articles article:hover .el-back-bg img{
    transform: scale(1.1,1.1);
    filter: blur(5px);
}
.el-wrap-posts .el-bottom-row{
    position: absolute;
    bottom: 20px;
    width: 100%;
    left: 0;
    z-index: 10;
    padding:30px 20px;
}
.el-wrap-posts .el-bottom-row .el-title h4{
    color: #eaeaea;
    margin-bottom: 20px;
    text-align: left;
    font-size: 30px;
    font-weight: 700;
    text-decoration: none;
    white-space:normal;
    overflow: hidden;
    text-overflow: ellipsis;
}
.el-wrap-posts .el-bottom-row .el-excerpt{
    font-size: 20px;
    margin: 15px 0;
    max-height: 60px;
    overflow: hidden;
}
.el-wrap-posts .el-bottom-row .el-excerpt p{
    font-size: 18px;
    text-align: left;
    line-height: 28px;
    color : #e6e6e6;
    margin-bottom: 0;
}
.el-wrap-posts .el-bottom-row .el-go {
    padding-top: 20px;
}
.el-wrap-posts .el-bottom-row .el-go span{
    border-radius: 5px;
    box-shadow: 3px 3px 6px #1f1f1f63;
    background: #fff;
    transition: 0.3s;
    text-transform: lowercase;
    font-size: 14px;
    padding: 14px 40px;
    color: #333;
}
.el-wrap-posts .el-bottom-row .el-go span:hover{
    background: #e4e4e4;
}
.el-wrap-posts .el-row-btn-upload-posts {
    margin: 30px 0;
    text-align: center;
    width: 100%;
}
.el-wrap-posts .el-row-btn-upload-posts button:disabled{
    opacity: 0.7;
    cursor: default;
}




.single .el-wrap-article .el-thumb{
    width: 100%;
    margin-top: -60px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 6px 6px 30px #eaeaea;
}
.el-wrap-article .el-banner-article{
    width: 100%;
    margin-bottom: 40px;
}
.single .el-wrap-article .el-banner-article img{
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
}



.single .el-content-layout .el-empty-content-alert{
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.single  .el-content-layout{
    margin: 0 auto;
    max-width: calc(100% - 370px);
    width: 100%;
    padding-bottom: 80px;
    padding-right: 50px;
}
.single  .el-content-layout{
    text-align: justify;
}
.single  .el-content-layout p{
    font-size: 22px;
    text-align: justify;
}

.single  .el-content-layout h1,
.single  .el-content-layout h2,
.single  .el-content-layout h3,
.single  .el-content-layout h4,
.single  .el-content-layout h5,
.single  .el-content-layout h6{
    font-weight: 600;
    font-family: 'RobotoSlab Bold';
    color: #333;
    padding-bottom: 20px;
    padding-top: 30px;
}

.single  .el-content-layout h1{
    font-size: 50px;
}
.single  .el-content-layout h2{
    font-size: 45px;
}
.single  .el-content-layout h3{
    font-size: 43px;
}
.single  .el-content-layout h4{
    font-size: 40px;
}
.single  .el-content-layout h5{
    font-size: 35px;
}
.single  .el-content-layout h6{
    font-size: 30px;
}
.single  .el-content-layout q,
.single  .el-content-layout blockquote{
    padding:  10px 20px 10px 40px;
    font-style: italic;
    font-weight: 600;
    border-left: 3px solid #eaeaea;
    margin: 10px 0;
}
.single  .el-content-layout  ul,
.single  .el-content-layout  ol{
    padding: 20px 0 20px 0;
    list-style: none;
    font-size: 22px;
}

.single  .el-content-layout  ul li,
.single  .el-content-layout  ol li{
    padding-left: 30px;
    position: relative;
    margin-bottom: 7px;
}

.single  .el-content-layout  ul li::after,
.single  .el-content-layout  ol li::after{
    content: ' ';
    position: absolute;
    left: 0;
    top: 13px;
    transform-origin: center;
}
.single  .el-content-layout  ul li::after{
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #929292;
}
.single  .el-content-layout  ol li{
    counter-increment: li;
    padding-left: 50px;
}
.single  .el-content-layout  ol li::after{
    content: counter(li) '.';
    position: absolute;
    color: #b7b6b6;
    width: 30px;
    height: 30px;
    font-weight: 600;
    text-align: center;
    line-height: 28px;
    left: 0;
    font-size: 16px;
    top: 50%;
    border-radius: 50%;
    background: #eaeaea;
    transform: translateY(-50%);
    transform-origin: center;
}
.single  .el-content-layout p img{
    margin: 0 auto;
    max-width: 100%;
    border-radius: 7px;
    overflow: hidden;
    display: inline-block;
}
.single article{
    width: 100%;
    display: flex;
    flex-flow: wrap row;
    justify-content: space-between;
    overflow: hidden;
    align-content: flex-start;
    align-items: flex-start;
    padding: 0 30px;
    padding-top: 50px;
}
.single article aside{
    width: 370px;
    border-radius: 7px;
    background: #f1f1f1;
    min-height: 300px;
    padding: 40px 25px;
}
.single article aside .el-title{
    margin-bottom: 20px;
}
.single article aside h4{
    font-weight: 700;
}
.single article aside .el-wrap-aside-posts{
    padding-top: 40px;
}
.single article aside .el-item-post{
    background: #fff;
    box-shadow: 5px 5px 10px #eaeaea;
    border-radius: 5px;
    display: flex;
    flex-flow: wrap row;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    transition: 0.3s;
}
.single article aside .el-item-post:hover{
    box-shadow: 7px 7px 12px #d2d2d2;
}
.single article aside .el-item-post .el-thumb-p{
    width: 70px;
    height: 70px;
    box-shadow: 5px 5px 10px #eaeaea;
    border-radius: 5px;
    overflow: hidden;
}
.single article aside .el-item-post .el-thumb-p img{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.single article aside .el-item-post .el-post-data{
    width: calc(100% - 70px);
    padding: 0 15px;
}
.single article aside .el-item-post .el-post-data .el-title{
    margin-bottom: 7px;
}
.single article aside .el-item-post .el-post-data .el-title a{
    font-weight: 600;
    font-size: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    color: #333;
}
.single article aside .el-item-post .el-post-data  .el-d-publ{
    color: #878787;
    font-size: 13px;
}


@media(max-width: 1200px){
    .el-wrap-posts .el-bottom-row .el-title h4{
        font-size: 22px;
    }
    .el-wrap-posts .el-bottom-row .el-excerpt p{
        font-size: 14px;
        line-height: 20px;
    }
    .el-wrap-posts .el-wrap-articles article{
        min-height: 300px;
    }
    .el-wrap-posts .el-bottom-row .el-go span{
        padding: 10px 30px;
    }
    .el-banner .el-title{
        padding-top: 110px;
    }
    .el-banner .el-title h1{
        font-size: 45px;
    }
    .single article aside{
        width: 320px;
    }
    .single .el-content-layout{
        max-width: calc(100% - 320px);
        padding-right: 30px;
    }
    .single article aside .el-item-post .el-post-data .el-title a{
        font-size: 17px;
    }
    .single article aside .el-item-post .el-post-data .el-d-publ{
        font-size: 12px;
    }


    .single  .el-content-layout h1{
        font-size: 35px;
    }
    .single  .el-content-layout h2{
        font-size: 33px;
    }
    .single  .el-content-layout h3{
        font-size: 30px;
    }
    .single  .el-content-layout h4{
        font-size: 25px;
    }
    .single  .el-content-layout h5{
        font-size: 22px;
    }
    .single  .el-content-layout h6{
        font-size: 18px;
    }

    .single  .el-content-layout p{
        font-size: 16px;
    }
    .single .el-content-layout ul, .single .el-content-layout ol{
        font-size: 17px;
    }

}


@media(max-width: 998px){
    .single .el-content-layout{
        width: 100%;
        padding-right: 0;
        max-width: 100%;
    }
    .single article aside{
        width: 100%;
    }
}

@media(max-width: 768px){
    .el-wrap-posts .el-wrap-articles article{
        width: 100%;
        margin-right: 0;
    }
    .el-wrap-posts .el-bottom-row .el-title h4{
        font-size: 20px;
    }
    .el-wrap-posts .el-bottom-row .el-go span{
        font-size: 12px;
    }
    .single article{
        padding-left: 0;
        padding-right: 0;
    }
    .el-banner .el-title{
        padding-top: 90px;
    }
    .el-banner .el-breadcrumbs ul{
        margin-top: 30px;
    }
    .single article{
        padding-top: 0;
    }
}

@media(max-width: 600px){
    .el-banner .el-title h1{
        font-size: 35px;
    }
    .single article aside{
        padding: 20px 10px;
    }
    .single article aside .el-wrap-aside-posts{
        padding-top: 20px;
    }
    .single article aside .el-item-post{
        padding: 10px;
    }
}

#arrow {
    border-right:2px solid black;
    border-bottom:2px solid black;
    width:10px;
    height:10px;
    transform: rotate(-45deg);
    margin-top:40px;
}

ul.list li {
  position: relative;
	padding-bottom: 10px;
}

ul.list {
  list-style: none;
}

ul.list li:before{
   content: '';
   position: absolute;
   border-right:2px solid black;
   border-bottom:2px solid black;
   width:10px;
   height:10px;
   top: calc(50% - 4px);
   left: -20px;
   transform: translateY(-50%) rotate(-45deg);
}