@font-face {
    font-display: swap;
    font-family: "RobotoRegular";
    src: url("fonts/RobotoRegular/RobotoRegular.eot");
    src: url("fonts/RobotoRegular/RobotoRegular.eot?#iefix") format("embedded-opentype"),
    url("fonts/RobotoRegular/RobotoRegular.woff") format("woff"),
    url("fonts/RobotoRegular/RobotoRegular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-display: swap;
    font-family: "RobotoLight";
    src: url("fonts/RobotoLight/RobotoLight.eot");
    src: url("fonts/RobotoLight/RobotoLight.eot?#iefix") format("embedded-opentype"),
    url("fonts/RobotoLight/RobotoLight.woff") format("woff"),
    url("fonts/RobotoLight/RobotoLight.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-display: swap;
    font-family: "RobotoMedium";
    src: url("fonts/RobotoMedium/RobotoMedium.eot");
    src: url("fonts/RobotoMedium/RobotoMedium.eot?#iefix") format("embedded-opentype"),
    url("fonts/RobotoMedium/RobotoMedium.woff") format("woff"),
    url("fonts/RobotoMedium/RobotoMedium.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-display: swap;
    font-family: "RobotoBold";
    src: url("fonts/RobotoBold/RobotoBold.eot");
    src: url("fonts/RobotoBold/RobotoBold.eot?#iefix") format("embedded-opentype"),
    url("fonts/RobotoBold/RobotoBold.woff") format("woff"),
    url("fonts/RobotoBold/RobotoBold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-display: swap;
    font-family: "RobotoThin";
    src: url("fonts/RobotoThin/RobotoThin.eot");
    src: url("fonts/RobotoThin/RobotoThin.eot?#iefix") format("embedded-opentype"),
    url("fonts/RobotoThin/RobotoThin.woff") format("woff"),
    url("fonts/RobotoThin/RobotoThin.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

:root {
    --orange: #f2561f;
    --orange-second: #ff6c00;
}

body {
    font-family: "RobotoLight";
    font-size: 1rem;
    background-color: #f6f6fb;
}

body.section_main_page {
    background-color: #fff;
}

*:focus {
    box-shadow: none !important;
}

a {
    color: #ff6c00;
}

a:hover {
    color: #f2561f;
}

.min-w-50 {
    min-width: 50%;
}

.form-control:focus {
    border-color: #f2561f !important;
}

.fs12 {
    font-size: 0.750em !important;
}

.fs13 {
    font-size: 0.813em;
}

.fs14 {
    font-size: 0.875em !important;
}

.fs15 {
    font-size: 0.938em !important;
}

.fs17 {
    font-size: 1.063em !important;
}

.fs20 {
    font-size: 1.250em !important;
}

.text-grey {
    color: #888888 !important;
}

.text-darkgray {
    color: #c9cacf !important;
}

.text-black {
    color: #000 !important;
}

a.text-black:hover {
    color: #f2561f !important;
}

.vjs-poster {
    background-size: cover;
}

.white-with-shadow {
    background: #fff;
    box-shadow: 0px 16px 51px 0px rgba(28, 84, 160, 0.22);
}

.blue-bg {
    background: #f6f6fb;
}

.white-bg {
    background: #fff;
}

.btn-secondary-orange {
    background: none;
    color: #f2561f;
    border: 1px solid #f2561f;
}

.btn-secondary-orange:hover {
    background: #f2561f;
    color: #fff;
    border-color: #f2561f;
}

.border-radius-50 {
    border-radius: 50%;
}

label[for=inputFile] {
    cursor: pointer;
    position: relative;
    margin-left: 20px;
    border-bottom: 1px #ff6c00 dashed;
    font-family: RobotoLight;
    font-size: 0.938em;
    color: #ff6c00;
}

label[for=inputFile]:before {
    border-bottom: 0;
    position: absolute;
    left: -20px;
    color: #404040;
    margin-right: 8px;
    content: "\f0c6";
    font-family: "Font Awesome\ 5 Free";
    font-weight: 800;
}

section.border-bottom {
    border-color: #efefef;
}

footer .border-bottom {
    border-color: #545a61 !important;
}

h2 {
    font-family: RobotoRegular;
    font-weight: normal;
    font-size: 1.563em;
}

#content ul, #content ol {
    list-style: none;
}

#content ol {
    counter-reset: ollist;
    padding-left: 0;
}

#content ul:not(.list-unstyled) li {
    position: relative;
    padding-left: 15px;
}

#content ul:not(.list-unstyled) li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.2em;
    font-family: Arial;
    color: #ff6c00;
}

#content ol > li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 0.5rem;
}

#content ol > li:before {
    counter-increment: ollist;
    content: counter(ollist);
    color: #ff6c00;
    position: absolute;
    left: 0;
    display: block;
    width: 26px;
    height: 26px;
    line-height: 22px;
    border: 2px solid #ff6c00;
    border-radius: 50%;
    text-align: center;
    font-family: RobotoMedium;
    font-size: 0.875rem;
}

.with-subline {
    position: relative;
}

.with-subline:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0px;
    width: 50px;
    background: #ff6c00;
    height: 3px;
}

.font-weight-bold {
    font-family: RobotoRegular !important;
    font-weight: normal !important;
}

.section_main_page #header {
    z-index: 1;
    position: relative;
    background: url(img/main_header_bg.webp) no-repeat center center;
    background-size: cover;
}

.section_main_page #header:after {
    z-index: -1;
    content: "";
    width: 100%;
    position: absolute;
    left: -15%;
    top: 0;
    height: 100%;
    background: url(img/before_main_head_bg.webp) no-repeat right center;
    background-size: auto 100%;
}

.section_main_page #header:before {
    z-index: -1;
    content: "";
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: url(img/after_main_header_bg.webp) no-repeat right bottom;
}

#header {
    color: #000;
    background: #fff;
}

#header a {
    color: #000
}

#header .mailto, #header .tel {
    font-size: 1.063em;
    font-family: RobotoRegular;
    text-decoration: none;
    white-space: nowrap;
}

#header i {
    margin-right: 5px;
    color: #f2561f;
}


#header .border-right {
    border-right: 1px solid #55504b!important;
}

#header .work-time {
    font-size: 0.813em;
    font-weight: normal;
    color: #b5b4b4;
}

#header .callback {
    background: none;
    color: #f2561f;
    border: 1px solid #f2561f;
}

#header .callback:hover {
    background: #f2561f;
    color: #fff;
    border-color: #f2561f;
}

#header .top-bar {
    border-bottom: 1px solid #f2f2f2;
}

.section_main_page #header {
    color: #fff;
}

.section_main_page #header a {
    color: #fff;
}

.section_main_page #header .top-bar {
    border-bottom: 0;
}

.btn {
    font-size: 1.063em;
    font-family: RobotoRegular;
    font-weight: normal;
}

.btn-primary {
    background-color: #ff6c00;
    border-color: #ff6c00;
}

.btn-light {
    color: #ff6c00;
}

.btn-light:hover {
    color: #f2561f;
}

.btn-primary:hover {
    background-color: #f2561f;
    border-color: #f2561f;
}

#header .h2 {
    font-family: RobotoRegular;
    font-weight: normal;
    font-size: 1.875em;
}

section.with-bg-1 {
    position: relative;
    z-index: 1;
}

section.with-bg-1:before {
    content: "";
    z-index: 0;
    opacity: 0.08;
    width: 100%;
    height: 100%;
    top: 0;
    left: -20%;
    position: absolute;
    background: url(img/before_main_head_bg.png) no-repeat right top;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
    background: #ff6c00;
    border-color: #ff6c00;
}

#about-counter i {
    font-size: 1.875em;
    color: #fff;
    background: #ff6c00;
    padding: 14px;
    border-radius: 50%;
}

#about-counter .number {
    color: #888888;
    font-size: 3.000em;
    font-family: RobotoRegular;
}

#about-avatar {
    background: url(/upload/img/golubev.jpg) no-repeat center top;
    background-size: cover;
    color: #fff;
}

#about-avatar .name {
    display: inline-block;
    font-size: 1.125em;
    font-family: RobotoRegular;
    border-bottom: 2px solid #ff6c00;
}

#about-avatar .workname {
    font-size: 0.938em;
}

.through-line {
    position: relative;
    color: #ff6c00;
    min-height: 12px;
    background: url(img/line-arrow.png) no-repeat center right;
}

.through-line.to-right-down {
    background: url(img/line-arrow-down.png) no-repeat right center;
    min-height: 34px;
}

.through-line.to-left {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
}

.bx-wrapper {
    position: relative;
}

.bx-controls {
    width: 60%;
    z-index: 100;
    margin: 0 auto;
}

.bx-prev, .bx-next {
    z-index: 3;
    cursor: pointer;
    display: inline-block;
    width: 11px;
    height: 22px;
    font-size: 0;
}

.bx-controls {
    position: relative;
}

.bx-controls .bx-controls-direction {
    display: flex;
    justify-content: space-between;
}

.bx-prev {
    background: url(img/arrow_left.png);
}

.bx-next {
    background: url(img/arrow_right.png);
}

.bx-wrapper .bx-pager.bx-default-pager {
    position: absolute;
    width: 100%;
    bottom: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: #dadada;
    text-indent: -9999px;
    display: block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    outline: 0;
    border-radius: 50%;
}

.bx-pager-link.active {
    background: #ff6c00 !important;
}

footer {
    background: #363d45;
}

.bg-lightgray {
    background: #40474f;
}

.left-radius {
    border-radius: 2px 0px 0px 2px;
    -moz-border-radius: 2px 0px 0px 2px;
    -webkit-border-radius: 2px 0px 0px 2px;
}

.right-radius {
    border-radius: 0 2px 2px 0;
    -moz-border-radius: 0 2px 2px 0;
    -webkit-border-radius: 0 2px 2px 0;
}

footer .social {
    display: inline-block;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    text-align: center;
    line-height: 44px;
    font-size: 20px;
    background: #40599a;
    padding: 0;
}

#mobile-head {
    background: #ff6c00;
    color: #fff;
}

#mobile-head i {
    font-size: 26px;
}

#mobile-head a {
    color: #fff;
}

#modal-callback .modal-content {
    border: 0;
    position: relative;
    background: #fff;
}

#modal-callback .modal-title {
    font-size: 3.125em;
    font-family: RobotoThin;
    text-transform: uppercase;
}

#modal-callback .close {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 1;
    color: #f24604;
    font-size: 3em;
    font-weight: lighter;
}

#top-bg-line {
    padding-top: 2rem;
    position: relative;
    background: #ff6c00;
    color: #fff;
}

#top-bg-line a {
    color: #fff;
}

#top-bg-line:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(img/top_bg_line.png) no-repeat left;
    background-size: auto 100%;
}

#top-bg-line h1 {
    font-size: 1.938em;
    font-family: RobotoRegular;
}

#top-bg-line .bx-breadcrumb a, #top-bg-line .bx-breadcrumb {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.750em;
}

main#content, .block-with-shadow {
    margin-top: -40px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 16px 51px 0px rgba(28, 84, 160, 0.22);
}

aside .aside-form {
    background: #fff;
}

.preview-video {
    position: relative;
}

.preview-video:after {
    content: "";
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    background: url(img/play.png) no-repeat center center;
    width: 41px;
    height: 41px;
}

.faq-item {
    background: #f6f6fb;
}

main {
    font-size: 0.938rem;
}

main h2, main h3, main h4 {
    font-family: RobotoLight;
    font-weight: normal;
    font-size: 1.750em;
    margin-bottom: 1.250rem;
}

main b, main strong {
    font-weight: normal !important;
    font-family: RobotoMedium;
}

.no-underline {
    text-decoration: none !important;
}

.aside-form.fixed {
    z-index: 101;
    position: fixed;
    top: 20px;
}

.fancybox-button, .fancybox-button:link, .fancybox-button:visited {
    color: #ff6c00;
}

.fancybox-button:hover {
    color: #f2561f;
}

#content blockquote {
    position: relative;
    background: #f6f6fb;
    padding: 20px 0 20px 74px;
    border-top: 2px solid #ff6c00;
    font-family: RobotoMedium;
}

#content blockquote:before {
    content: "!";
    position: absolute;
    top: calc(50% - 13px);
    left: 30px;
    font-size: 18px;
    width: 26px;
    height: 26px;
    background: #ff6c00;
    color: #f6f6fb;
    border-radius: 50%;
    text-align: center;
    font-family: Arial;
}

#toc {
    margin-bottom: 1rem;
}

#toc .toc-t {
    position: relative;
    background: #f6f6fb;
    padding: 20px 0 20px 74px;
    border-top: 2px solid #ff6c00;
    font-family: RobotoMedium;
    font-size: 0.938em;
    margin: 0 !important;
}

#toc .toc-t:before {
    content: '\f0ca';
    position: absolute;
    top: calc(50% - 13px);
    left: 26px;
    font-size: 12px;
    width: 26px;
    height: 26px;
    line-height: 26px;
    background: #ff6c00;
    color: #f6f6fb;
    border-radius: 50%;
    text-align: center;
    font-family: FontAwesome;
    font-weight: normal;
}

#toc .toc-t span{
    position: absolute;
    right: 24px;
    cursor: pointer;
    border-bottom: 1px dashed #000;
}

#toc > ol {
    border: 1px solid #f6f6fb !important;
}

#toc > ol > li {
    border-bottom: 1px solid #f6f6fb !important;
    outline-offset: -1px;
    margin: 0 !important;
    padding: 10px 10px 10px 74px !important;
}

#toc > ol > li:before {
    left: 26px;
}

#toc li:before {
    content: counters(ollist, ".") " "!important;
    counter-increment: ollist!important;
}

#toc ol ol{
    margin-top: 10px;
}

#toc ol ol li:before{
    border: none!important;
    position: relative!important;
    display: inline!important;
    font-family: RobotoLight!important;
}

.bordered-items{
    border-left: 1px solid #f6f6fb;
    border-top: 1px solid #f6f6fb;
}
.bordered-items > div{
    border-bottom: 1px solid #f6f6fb;
    border-right: 1px solid #f6f6fb;
}

.lines-title{
    font-size: 1.313em;
    padding: 16px 0;
    border-bottom: 2px solid #ff6c00;
    border-top: 1px solid #f2f2f2;
}
.api-mf-antibot {
    border: 0 none!important;
    font-size: 0!important;
    height: 0!important;
    line-height: 0!important;
    padding: 0!important;
    position: absolute!important;
    right: 0!important;
    top: 0!important;
    width: 0!important;
}
.type_of_product a {
	font-size: 16px;
	color: #000;
	font-family: "RobotoRegular";
}
.type_of_product a:hover {
	text-decoration: none;
    color: #f2561f;
}
.type_of_product_item a {
    border-top: 1px solid #f2f2f2;
}























.eksperty-list{
    margin-left: 28px;
    margin-right: 28px;
}

.eksperty-list__item-text{
    padding-left: 0px;
    padding-bottom: 20px;

}


.eksperty-list__item{
    border-bottom: 1px solid #e0e0e0;
}

.eksperty-list__item-picture-container{
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 0px;
}

.eksperty-list__item-picture{
    width: 100%;
    max-width: 100px;
    height: auto;
    border-radius: 50%;
    display: block;
    overflow: hidden;
}

.eksperty-list__item-picture img{
    width: 100%;
}

.eksperty-list__item-title{
    margin: 0;
    padding-top: 0px;
    font-weight: 600;
    font-size: 16px;
    color: #212529;
}

@media (min-width: 751px) {
    .eksperty-list__item-title{
        padding-top: 42px;
    }
}

.eksperty-list__item-dolzhnost{
    padding-top: 3px;
    font-weight: normal;
    font-size: 16px;
    color: #212529;
}

.eksperty-list__item-button-container{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 20px;
    padding-left: 0px;
    padding-bottom: 20px;
}

@media (min-width: 751px) {
    .eksperty-list__item-button-container {
        justify-content: flex-end;
        padding-top: 20px;
    }
}

.eksperty-list__item-button{
    display: inline-block;
    border: 1px solid #ee742f;
    text-align: center;
    line-height: 30px;
    border-radius: 2px;
    padding: 3px 16px;
    font-size: 16px;
    color: #ee742f;
}



.eksperty-list__item-button:hover{
    text-decoration: none;
}


.clearfloat{
    clear: both;
}









.perelinkovka-s-uslugami{

}

.perelinkovka-s-uslugami__item{
    margin-bottom: 14px;

}

.perelinkovka-s-uslugami__item-link{
    border: 1px solid #cccbd1;
    display: flex;
    height: 100%;
    align-items: center;
    padding-left: 43px;
    padding-top: 19px;
    padding-bottom: 19px;
    font-size: 17px;
    padding-right: 10px;
    color: #000004;
    background-image: url(/local/templates/pskpb_v2/images/perelinkovka-s-uslugami__item-link-icon.png);
    background-repeat: no-repeat;
    background-position: 17px center;
}

.perelinkovka-s-uslugami__item-link:hover{
    border: 1px solid #ee742f;
    text-decoration: none;
    color: inherit;
}

.perelinkovka-s-uslugami__item-link-border{
    border-bottom: 1px dashed #ccc;
}


.perelinkovka-s-uslugami__title{
    font-size: 1.45em;
    padding-top: 2em;
}




#content img.eksperty-single__picture{
    width: 100%;
    height: auto;
}

@media (min-width: 751px) {
    #content img.eksperty-single__picture {
        width: 40%;
        float: left;
        margin-right: 1em;
    }
}



.eksperty-single__text h2, .eksperty-single__text h3, .eksperty-single__text h4, .eksperty-single__text h5, .eksperty-single__text h6 {
    font-size: 15px;
    font-weight: bold;
}


#content .eksperty-single__text ul:not(.list-unstyled) li,
#content .eksperty-single__text ol:not(.list-unstyled) li{
    list-style: none;
    position: relative;
    padding-left: 0px;
    margin-bottom: 10px;
    display: flex;
}


#content .eksperty-single__text ul:not(.list-unstyled) li:before {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    border: 2px solid #ff6c00;
    box-sizing: border-box;
    border-radius: 50%;
    margin-top: 9px;
    flex: 0 0 9px;
    margin-right: 10px;
    position: static;
}


#content .eksperty-single__text ol > li:before {
    counter-increment: ollist;
    content: counter(ollist);
    color: #ff6c00;
    position: static;
    display: block;
    min-width: 26px;
    height: 26px;
    margin-right: 10px;
    line-height: 22px;
    border: 2px solid #ff6c00;
    border-radius: 50%;
    text-align: center;
    font-family: RobotoMedium;
    font-size: 0.875rem;
}











.news-single__picture{
    width: 100%;
    height: auto;
}

.news-single__date{
    display: block;
    padding-top: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #a6a6a6;
    background-image: url(/local/templates/pskpb_v2/images/czrc-news-list__item-date-icon.png);
    background-repeat: no-repeat;
    background-position: 0px 11px;
    padding-left: 15px;
}

.news-single h1{
    font-size: 1.5em;
}













.czrc-news-list__item{
    padding-bottom: 15px;
}

.czrc-news-list__item-link{

}

.czrc-news-list__item-link:hover{
    text-decoration: none;
}

.czrc-news-list__item-picture{
    max-width: 100%;
    height: auto;
}

.czrc-news-list__item-date{
    display: block;
    padding-top: 5px;
    font-size: 15px;
    color: #a6a6a6;
    background-image: url('/local/templates/pskpb_v2/images/czrc-news-list__item-date-icon.png');
    background-repeat: no-repeat;
    background-position: 0px 11px;
    padding-left: 15px;
}

.czrc-news-list__item-title{
    font-size: 15px;
    padding-top: 2px;
    color: #010101;
    font-weight: normal;
}


.speaker__title{
    color: grey;
}

.speaker-block a, .speaker-block a:hover{
    color: #000;
    text-decoration: none;
}


.speaker__name{
    font-weight: 600;
    font-size: 1.6em;
}

.speaker-block__border{
    box-shadow: 0 1px 6px rgb(32 33 36 / 28%);
    padding: 1em 0;
}

.img-fluid img{
    width: 100%;
}

