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

::-webkit-scrollbar-track {
    background-color: #F5F5F5;
    border-radius: 10px;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
    border-radius: 10px;
    max-height: 6px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #ef7c1e;
}

body.admin {
    font-family: 'Roboto', sans-serif !important;
}

.slick-dots {
    top: -56px;
}

.slick-slider .slick-prev,
.slick-slider .slick-next {
    background: #a9a9a9;
    width: 40px;
    height: 40px;
    top: calc(50% - 30px);
}

.slick-slider .slick-next {
    right: -45px;
}

.slick-slider .slick-prev {
    left: -45px;
}

.slick-slider .slick-prev:hover,
.slick-slider .slick-prev:focus,
.slick-slider .slick-next:hover,
.slick-slider .slick-next:focus {
    background: #09a1d8;
}

.slick-slider .slick-prev:before,
.slick-slider .slick-next:before {
    content: '';
    border: solid #fff;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 9px;
    margin-left: 10px;
    transform: rotate(135deg);
}

.slick-slider .slick-next:before {
    margin-right: 10px;
    margin-left: 0;
    transform: rotate(-45deg);
}

input[type=range] {
    height: 26px;
    -webkit-appearance: none;
    margin: 10px 0;
    width: 100%;
    background: none;
}
input[type=range]:focus,
btn,
button {
    outline: none !important;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 2px #CEC9CB;
    background: #09A1D8;
    border-radius: 10px;
    border: 2px solid #FFFFFF;
}
input[type=range]::-webkit-slider-thumb {
    box-shadow: 0px 0px 2px #CEC9CB;
    border: 2px solid #FFFFFF;
    height: 16px;
    width: 16px;
    border-radius: 16px;
    background: #09A1D8;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -5px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #09A1D8;
}
input[type=range]::-moz-range-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 2px 2px 0px #CEC9CB;
    background: #09A1D8;
    border-radius: 10px;
    border: 2px solid #FFFFFF;
}
input[type=range]::-moz-range-thumb {
    box-shadow: 2px 2px 0px #CEC9CB;
    border: 2px solid #FFFFFF;
    height: 16px;
    width: 16px;
    border-radius: 16px;
    background: #09A1D8;
    cursor: pointer;
}
input[type=range]::-ms-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: #09A1D8;
    border: 2px solid #FFFFFF;
    border-radius: 20px;
    box-shadow: 2px 2px 0px #CEC9CB;
}
input[type=range]::-ms-fill-upper {
    background: #09A1D8;
    border: 2px solid #FFFFFF;
    border-radius: 20px;
    box-shadow: 2px 2px 0px #CEC9CB;
}
input[type=range]::-ms-thumb {
    margin-top: 1px;
    box-shadow: 2px 2px 0px #CEC9CB;
    border: 2px solid #FFFFFF;
    height: 16px;
    width: 16px;
    border-radius: 16px;
    background: #09A1D8;
    cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
    background: #09A1D8;
}
input[type=range]:focus::-ms-fill-upper {
    background: #09A1D8;
}
.sliderticks {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}
.sliderticks p {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 1px;
    height: 6px;
    margin: 0;
    font-weight: 500;
    font-size: 14px;
    color: #265785;
}

.sliderticks p.active {
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
}

html, body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
}

.modal-mask {
    border: none;
    border-radius: 0;
}

.custom-input {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.custom-input input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background: #F9F9F9;
}
input[type=radio] + .checkmark {
    border: 2px solid #A0999D;
    box-sizing: border-box;
    border-radius: 50%;
}

input[type=checkbox] + .checkmark {
    background: #FFFFFF;
    border: 2px solid #A0999D;
}

/* When the radio button is checked, add a blue background */
.custom-input input[type=radio]:checked ~ .checkmark {
    background-color: #09A1D8;
    border: 2px solid #0794C7;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.custom-input input[type=radio]:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.custom-input input[type=radio] + .checkmark:after {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
}

/* When the checkbox is checked, add a blue background */
.custom-input input[type=checkbox]:checked ~ .checkmark {
    background-color: #2196F3;
    border-color: #0794C7;
}

/* Show the checkmark when checked */
.custom-input input[type=checkbox]:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.custom-input input[type=checkbox] + .checkmark:after {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
}

#main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

.slick-slide {
    outline: none !important;
}

/*.slick-dots {*/
/*    top: -36px;*/
/*}*/

.close-modal {
    line-height: 1;
    cursor: pointer;
}

.close-modal:hover i {
    color: #8a8a8a;
}

.slider--dark .slick-dots li.slick-active button:before {
    content: url("../img/radiobutton.svg");
    opacity: 1;
}

.slider--light .slick-dots li button:before {
    content: url("../img/radiobutton-normal.svg");
}

.slider--light .slick-dots li.slick-active button:before {
    content: url("../img/radiobutton-active.svg");
    opacity: 1;
}

.slider--dark .slick-dots li button:before {
    color: #fff;
}

section .slick-dots li button:before {
    font-size: 16px;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInUpShort {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInUpShort {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUpShort {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
}

.fadeInUpShort.go {
    -webkit-animation-name: fadeInUpShort;
    animation-name: fadeInUpShort;
}

.btn-logout {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.btn-logout:hover circle,
.btn-logout:hover path {
    stroke: #EF7C1E;
}

main {
    flex-basis: 100%;
}

.left-panel {
    flex-direction: column !important;
    color: #265785;
}

.left-panel__name {
    font-size: 16px;
}

.left-panel__role {
    text-decoration: underline;
}

.heading {
    font-size: 40px;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
}

.heading--small {
    font-size: 24px !important;
}

.heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 5px;
    background-color: #1D97C2;
}

.heading--light {
    color: #FFF;
}

.heading--light:after {
    background-color: #FFF;
}

.small-text {
    font-size: 12px;
}

.section-contacts {
    background-color: #265785;
}

.section-contacts__wrapper {
    max-width: 1460px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.section-contacts a {
    color: #FFF;
    font-size: 18px;
}

.section-contacts a:hover {
    text-decoration: none;
}

.section-contacts a span {
    font-size: 24px;
}

.section-nav {
    max-width: 1460px;
    margin: 0 auto;
    background: #fff;
}

.section-nav .navbar {
    padding: 0;
}

.section-nav .navbar-brand {
    margin: -60px 0 0 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
}

.section-nav .navbar-nav.navbar-nav--main .nav-item {
    border-bottom: 5px solid transparent;
    height: 100px;
}

.section-nav .navbar-nav.navbar-nav--main .nav-item:hover {
    border-bottom: 5px solid #EF7C1E;
    background: #EFEDEE;
}

.section-nav .navbar-nav.navbar-nav--main .nav-item.active {
    border-bottom: 5px solid #EF7C1E;
    background: #E4E1E2;
}

.section-footer__wrapper .nav-item.active a {
    border-bottom: 5px solid #EF7C1E;
    background: #EFEDEE;
}

.section-nav .navbar-nav.navbar-nav--main .nav-link {
    text-transform: uppercase;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    padding: 20px 10px;
    font-size: 15px;
    font-family: 'Roboto';
    max-width: 200px;
    text-align: center;
    max-width: 100%;
    margin: 0;
}
.cursor-pointer {
    cursor: pointer;
}
.btn-primary-custom,
.btn-secondary-custom {
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    max-width: 250px;
    height: 40px;
    font-size: 0.9rem;
    padding: 0 20px;
}

.btn-primary-custom:hover,
.btn-secondary-custom:hover {
    text-decoration: none;
}

.btn-primary-custom {
    background: #09A1D8;
    border: 2px solid #0794C7;
    box-sizing: border-box;
    border-radius: 4px;
    color: #fff !important;
}

.btn-secondary-custom {
    background: #F9F9F9;
    border: 1px solid #CCEAFF;
    box-sizing: border-box;
    border-radius: 4px;
    color: #265785;
}

.btn-primary-custom--mod {
    background: #63d3f5;
    padding: 10px 20px;
    border: none;
}

.btn-primary-custom--mod:hover {
    color: #fff;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
    background-color: #EF7C1E;
    border-color: #E17115;
    color: #fff;
}

.btn-secondary-custom:hover,
.btn-secondary-custom:focus {
    border-color: #E17115;
    color: #E17115 !important;
}

.btn-primary-custom--colored {
    color: #265785 !important;
    background: #fff;
    border: 1px solid #CCEAFF;
}

.btn-secondary-custom--colored {
    color: #EF7C1E !important;
    background: #fff;
    border: 1px solid #FFEBDA;
}

.btn-primary-custom--colored:hover,
.btn-primary-custom--colored:focus {
    background: #99D6FF;
    border: 1px solid #CCEAFF;
}

.btn-secondary-custom--colored:hover,
.btn-secondary-custom--colored:focus {
    background: #FFDABF;
    border: 1px solid #FFEBDA;
}

.btn-font--big {
    font-size: 16px;
}

.breadcrumbs {
    display: flex;
}

.breadcrumbs a {
    color: #fff;
}

.breadcrumbs a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumbs .breadcrumbs__item {
    padding-left: 35px;
    position: relative;
    display: flex;
}

.breadcrumbs .breadcrumbs__item:after {
    content: url('../img/arrow.svg');
    position: absolute;
    right: -28px;
    top: 3px;
}

.breadcrumbs .breadcrumbs__item:first-child {
    padding-left: 0;
}

.breadcrumbs .breadcrumbs__item:last-child:after {
    content: none;
}

.section-heading-bg.breadcrumbs-bg {
    background-position: center;
    background-size: cover;
    background-image: url("/images/breadcrumbs-bg.svg");
    background-repeat: no-repeat;
}

.form-label {
    font-size: 18px;
    line-height: 27px;
    color: #1B2E4D;
    display: flex;
    align-items: center;
    font-family: 'Roboto';
}
.form-bg {
    background-color: #F6F5F5;
}

.form-bg.concurs-form {
    border: 1px solid #ECEAEB;
    box-sizing: border-box;
    border-radius: 0px 0px 20px 20px;
    background-image: url(/images/form-bg.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.concurs-form .btn-danger {
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    max-width: 250px;
    height: 40px;
    font-size: 0.9rem;
    padding: 0 21px;
    opacity: 0.75;
    transition: .5s;
}

.concurs-form .btn-danger:not(:disabled):not(.disabled),
.concurs-form .btn-danger:disabled {
    position: relative;
}

.concurs-form .btn-danger:not(:disabled):not(.disabled):hover,
.concurs-form .btn-danger:disabled:hover {
    opacity: 1;
    color: #fff;
    background-color: #e3342f;
    border-color: #e3342f;
}

.concurs-form .btn-danger:not(:disabled):not(.disabled):hover::before,
.concurs-form .btn-danger:disabled:hover::before {
    content: 'Для успешной подачи заявки необходимо дать согласие на обработку персональных данных и публикацию конкурсной работы в видеосборнике и на тематических интернет-ресурсах федерального уровня в случае победы';
    transition: .5s;
    position: absolute;
    bottom: 40px;
    right: auto;
    left: auto;
    background-color: #fff;
    padding: 15px;
    border: 1px solid #dedddd;
    color: #000;
    width: 400%;
    opacity: 1;
    max-width: 60vw;
    text-transform: initial;
    border-radius: 5px;
}

.concurs-form .form-control {
    min-height: 40px;
    margin-bottom: 0px;
}

.form-control {
    min-height: 40px;
}

select.form-control {
    -webkit-appearance: none;
    padding-right: 15px;
    background-image: url(/images/select-arrow-icon.svg);
    background-repeat: no-repeat;
    background-position: 99.5% center;
}

.concurs-form .form-control.input-error {
    border: 1px solid #f00;
}

.form-info-block p,
.form-info-block h4,
.form-info-block li {
    color: #1B2E4D;
}

.form-info-block p {
    font-size: 18px;
}

.form-info-block p,
.form-info-block li {
    font-size: 16px;
}

.form-info-block h4 {
    text-transform: uppercase;
}

.section-info {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: url('../img/section-info.svg') 50% no-repeat;
    background-size: cover;
    border-radius: 20px 20px 0 0;
    min-height: 80px;
}

.section-subheading {
    color: #1B2E4D;
    background: #99D6FF;
    padding: 16px;
}

.section-info h3,
.section-subheading h4 {
    margin-bottom: 0;
    text-align: center;
}

.section-heading {
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    color: #fff;
}

.section-heading-bg {
    background-image: url("../images/aboutcourses-breadcrumbs-bg.svg");
}

.breadcrumbs-bg-2 {
    background-image: url(../img/breadcrumbs-bg-2.svg);
}

.contest-bg {
    background-image: url("../img/contest.png");
}

.btn-register {
    color: #EF7C1E;
    border-bottom: 2px dotted #EF7C1E;
    display: block;
}

.btn-link-custom {
    color: #016089;
    border-bottom: 2px dotted #016089;
    display: block;
    cursor: pointer;
}

.btn-link-custom--delete {
    color: red;
    border-bottom: 2px dotted red;
}

.btn-register:hover {
    text-decoration: none;
}

.table-wrapper {
    margin: 4rem auto;
}

.section-project {
    color: #FFF;
    background: radial-gradient(875.95px at 54.17% 59.58%, #1D97C2 0%, #217BA7 58.08%, #265785 100%);
    padding: 30px;
}

.section-project .project-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-project .project-box__title {
    font-size: 12px;
    max-width: 100px;
    line-height: 18px;
    letter-spacing: 0.055em;
}

.section-project .project-box__divider {
    width: 2px;
    height: 170px;
    background-color: #FFF;
    margin: 0 30px;
}

.section-project .project-box__description {
    max-width: 990px;
    font-size: 21px;
    line-height: 29px;
    letter-spacing: 0.05em;
}

.section-slider {
    position: relative;
    height: 510px;
    overflow: hidden;
}

.section-slider .slider-slider {
    width: 1200px;
    height: 510px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 5;
    transform: translateX(-50%);
}

.section-slider .slider-slider .slider-box {
    width: 1200px;
    height: 510px;
    position: relative;
}

.section-slider .slider-slider .slider-box__content {
     height: 100%;
     margin-left: 56%;
     flex-direction: column;
     color: #fff;
     align-items: flex-start;
 }

.section-slider .slider-slider .slider-box__content--wide {
    margin-left: 40%;
}

.section-slider .slider-slider .slider-box__label {
    background: #EF7C1E;
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    padding: 2px 26px;
    letter-spacing: 0.1em;
}

.section-slider .slider-slider .slider-box__date {
    font-size: 24px;
}

.section-slider .slider-slider .slider-box__text {
    font-size: 18px;
    max-width: 468px;
}

.section-slider .slider-slider .slider-box__text--huge {
    font-size: 30px;
    font-weight: 900;
    line-height: 36px;
    max-width: 650px;
}

.section-slider .slider-slider--background {
    filter: blur(10px);
    -webkit-filter: blur(10px);
}

.section-slider .slider-slider--background .slider-box {
    width: 100%;
    height: 510px;
}

.section-slider .slider-slider .slider-box--history {
    background: url("../img/history.jpg") 50% no-repeat;
    background-size: cover;
}

.section-slider .slider-slider--background .slider-box--history {
    background: url("../img/history.jpg") 50% no-repeat;
    background-size: cover;
}


.section-slider .slider-slider .slider-box--courses {
    background: url("../img/courses.png") 50% no-repeat;
    background-size: cover;
}

.section-slider .slider-slider--background .slider-box--courses {
    background: url("../img/courses.png") 50% no-repeat;
    background-size: cover;
}

.section-slider .slider-slider .slider-box--concurs {
    background: url("../img/concurs-slider.png") 50% no-repeat;
    background-size: cover;
}

.section-slider .slider-slider--background .slider-box--concurs {
    background: url("../img/concurs-slider.png") 50% no-repeat;
    background-size: cover;
}

.section-tasks {
    background: url("../img/tasks-cover.png") 50% no-repeat;
    background-size: cover;
    padding: 70px;
}

.section-tasks .list-tasks {
    max-width: 1450px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

.section-tasks .list-tasks .task-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 30%;
    min-height: 240px;
}

.section-tasks .list-tasks .task-box.slick-active {
    opacity: 1;
}

.section-tasks .slick-dots {
    top: auto;
}

.section-tasks .list-tasks .task-box__header {
    border: 4px solid #99D6FF;
    border-radius: 50%;
    height: 90px;
    width: 90px;
    margin: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-tasks .list-tasks .task-box__content {
    font-weight: 500;
    font-size: 19px;
    line-height: 32px;
    text-align: center;
    color: #000;
    max-width: 368px;
}

.section-news {
    background: url("../img/news-cover.jpg") 50% no-repeat;
    background-size: cover;
}

.section-news__wrapper {
    padding: 70px;
}

.section-news .slider-news {
    max-width: 1250px;
    margin: 0 auto;
}

.section-news .slider-news .news-box {
    padding: 15px;
}

.section-news .slider-news .news-box__header {
    min-height: 218px;
    height: auto;
    position: relative;
    overflow: hidden;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.news-box__img {
    max-width: 100%;
}

.section-news .slider-news .news-box__date {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    background-color: #265785;
    width: 169px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    color: #FFF;
}

.section-news .slider-news .news-box__content {
    background-color: #FFF;
    padding: 20px;
    min-height: 240px;
}

.section-news .slider-news .news-box__title {
    text-transform: uppercase;
}

.section-news .slider-news .news-box__title a {
    color: #333;
    line-height: 23px;
}

.section-news .slider-news .news-box__preview {
    line-height: 20px;
    color: #333;
}

.section-news .slider-news .news-box__preview p {
    margin-bottom: 0;
}

.news-detail__content {
    font-size: 16px;
}

.section-events {
    background-color: #FFF;
    padding: 70px;
}

.section-events .slider-events {
    max-width: 1170px;
    margin: 110px auto 30px;
}

.section-events .slider-events .events-box {
    /*max-width: 1150px;*/
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
}

.section-events .slider-events .events-box .events-box__photo {
    width: 460px;
    height: 340px;
    max-width: 100%;
    background: url("../img/seminar.jpg") 50% no-repeat;
    background-size: cover;
    position: relative;
}

.section-events .slider-events .events-box:nth-child(2n) .events-box__photo {
    background: url("/images/seminar.jpg") 50% no-repeat;
    background-size: cover;
}

.section-events .slider-events .events-box:nth-child(2n) .btn-primary-custom {
    display: none;
}

.section-events .slider-events .events-box:nth-child(4n) .btn-primary-custom {
    display: flex;
}

.section-events .slider-events .events-box:nth-child(3n) .events-box__photo {
    background: url("/images/monitoring.jpg") 50% no-repeat;
    background-size: cover;
}

.section-events .slider-events .events-box:nth-child(3n) .btn-primary-custom {
    display: none;
}

.section-events .slider-events .events-box:nth-child(4n) .events-box__photo {
    background: url("/images/videolesson-konkurs.jpg") 50% no-repeat;
    background-size: cover;
}

.section-events .slider-events .events-box:nth-child(5n) .events-box__photo {
    background: url("/images/kpk.jpg") 50% no-repeat;
    background-size: auto 101%;
}

.section-events .slider-events .events-box:nth-child(6n) .events-box__photo {
    background: url("../img/seminar.jpg") 50% no-repeat;
    background-size: cover;
}

.section-events .slider-events .events-box:nth-child(7n) .events-box__photo {
    background: url("../img/russia.jpg") 50% no-repeat;
    background-size: cover;
}

.section-events .slider-events .events-box:nth-child(8n) .events-box__photo {
    background: url("../img/shutterstock_1350814859.jpg") 50% no-repeat;
    background-size: cover;
}

.section-events .slider-events .events-box:nth-child(9n) .events-box__photo {
    background: url("../img/moscow-conf.jpg") 50% no-repeat;
    background-size: cover;
}

.section-events .slider-events .events-box__date {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #265785;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFF;
    line-height: 1;
}

.section-events .slider-events .events-box__date .day {
    font-size: 42px;
    font-weight: 700;
}

.section-events .slider-events .events-box__date .month {
    font-size: 18px;
}

.section-events .slider-events .events-box__date .year {
    font-size: 24px;
    font-weight: 700;
}

.section-events .slider-events .events-box__content {
    max-width: 630px;
    font-size: 16px;
    line-height: 25px;
    padding: 0 20px;
}

.section-footer {
    background-color: #F2F0F1;
}

.section-footer__wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.section-footer .footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.section-footer .footer-nav li {
    list-style: none;
}

.section-footer .footer-nav a {
    border-bottom: 5px solid transparent;
    height: 80px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    padding: 0 10px;
    max-width: 200px;
    text-align: center;
}

.section-footer .footer-nav a:hover {
    border-bottom: 5px solid #EF7C1E;
    background: #E4E1E2;
    text-decoration: none;
}

.section-footer .footer-nav a.active {
    border-bottom: 5px solid #EF7C1E;
    background: #E4E1E2;
}

.section-footer .footer-nav a.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    height: auto;
}

.section-footer .footer-info {
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    color: rgba(27, 46, 77, 0.7);
    max-width: 620px;
    margin: 0 auto;
}

.section-footer .footer-rights {
    font-size: 14px;
    text-align: center;
    color: rgba(27, 46, 77, 0.7);
}

.section-footer .footer-mail {
    width: 188px;
}

.page-header {
    background-color: #265785;
}

.main-menu {
    margin-bottom: 0;
}

.main-menu a:hover {
    text-decoration: none;
}

.user-role, .user-name a {
    color: #fff;
}

.user-role {
    font-weight: 600;
}

.user-name a:hover {
    color: #fff;
    text-decoration: underline;
}

h1 {
    text-decoration: none;
    color: inherit;
}

.delete-icon,
.edit-icon {
    width: 14px;
    height: auto;
    cursor: pointer;
}

.delete-icon:hover polygon,
.edit-icon:hover path {
    fill: #275784;
}

.doc-icon,
.pdf-icon {
    width: 30px;
    height: auto;
    cursor: pointer;
}

.max-width-1440 {
    max-width: 1440px;
}

.section-themes {
    background: linear-gradient(180deg, #1D97C2 0%, #265785 100%);
    padding: 100px 0;
}

.section-themes .box {
    background: #fff;
    padding: 40px;
    min-height: 330px;
}

.section-themes .box .box__label {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.color-orange {
    color: #EF7C1E;
}

.color-blue {
    color: #09A1D8;
}

.section-themes .box .box__list li {
    list-style: none;
    position: relative;
 }

.section-themes .box .box__list li:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    top: 6px;
    left: -26px;
    border-radius: 50%;
    background: #09A1D8;
}

.section-themes .box .box__list.color-orange li:before {
    background: #EF7C1E;
}

.section-themes .box .box__list span {
    color: #1B2E4D;
    font-weight: 500;
    font-size: 18px;
}

.section-documents {
    background: #EF7C1E;
    padding: 100px 0;
}

.section-documents .box {
    background: #fff;
    height: 160px;
    padding: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.section-documents .box .box__link {
    display: block;
    font-size: 18px;
    line-height: 21px;
    color: #1B2E4D;
    max-width: 260px;
    padding-left: 30px;
}

.section-documents .box .box__icon {
    width: 38px;
}

.section-calendar {
    background: #fff;
    padding: 100px 0;
}

.section-calendar .box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section-calendar .box .box__icon {
    display: inline-flex;
    border-radius: 50%;
    height: 130px;
    width: 130px;
    justify-content: center;
    align-items: center;
    background: #0C7FCC;
    box-shadow: 0px 25px 40px rgba(146, 182, 206, 0.32);
    position: relative;
    z-index: 10;
}

.section-calendar .box .box__icon:after {
    content: "";
    position: absolute;
    width: 24vw;
    height: 2px;
    background: #99D6FF;
    top: 50%;
    left: 130px;
    z-index: -2;
}

.section-calendar .box--first .box__icon {
    background: #99D6FF;
}

.section-calendar .box--third .box__icon {
    background: #265785;
}

.section-calendar .box--second .box__icon:after {
    background: #09A1D8;
    box-shadow: 0px 25px 40px rgba(146, 182, 206, 0.32);
    z-index: -1;
}

.no-content:after {
    content: none !important;
}

.section-calendar .box .box__date {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    color: #265785;
    margin-bottom: 20px;
 }

.section-calendar .box .box__date span {
    padding-left: 10px;
}

.section-calendar .box .box__description {
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #265785;
    margin-top: 30px;
    max-width: 290px;
}

.map {
    width: 305px;
    height: 180px;
    background: url("../img/map.svg") 50% no-repeat;
    background-size: cover;
    position: absolute;
    right: 10%;
}

.section-contest {
    background: url(../img/tasks-cover.png) 50% no-repeat;
    background-size: cover;
}

.results-section {
    max-width: 1340px;
}

.results-section h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    color: #265785;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.01em;
}

.results-section .description {
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #1B2E4D;
}

.results-section .table-custom thead {
    background-color: #EF7C1E;
    color: #fff;
    text-transform: uppercase;
    border-radius: 100px;
}

.table-custom {
    display: grid;
    grid-template-columns: repeat(4, 2fr) 1fr;
}

.table-custom div {
    border-right: 1px solid #ECEAEB;
    padding: 4px 20px 30px 20px;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    color: #1B2E4D;
}

.table-custom div:nth-child(5n) {
    border-right: none;
}


.table-custom .table-custom__header {
    background-color: #EF7C1E;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
    border-right: 1px solid #BB5501;
    padding: 10px 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-custom .table-custom__header:first-child {
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}

.table-custom .table-custom__header:nth-child(5n) {
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    border-right: none;
}

.table-custom a {
    border: 1px solid #265785;
    border-radius: 100px;
    padding: 6px 34px;
}

.table-custom a:hover {
    border-color: #EF7C1E;
    color: #EF7C1E;
    text-decoration: none;
}

.winner-box {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
    border-right: 10px solid #09A1D8;
}

.winner-box:first-child {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
    border-right: 10px solid #99D6FF;
}

.winner-box:last-child {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
    border-right: 10px solid  #265785;
}

.winner-box .icon {
    width: 46px;
    height: 46px;
    background: url("../img/cup-second.svg") 50% no-repeat;
    background-size: cover;
}

.winner-box .item {
    margin-bottom: 0;
    margin-left: 10px;
    font-weight: 900;
    font-size: 24px;
    line-height: 150%;
    text-transform: uppercase;
    color: #1B2E4D;
}

.winner-box .score {
    font-size: 18px;
    line-height: 150%;
    color: #A0999D;
}

.winner-box .name svg {
    margin-bottom: 4px;
    margin-right: 2px;
}

.winner-box .score svg {
    margin-bottom: 3px;
    margin-left: 10px;
    margin-right: 2px;
}

.winner-box .title {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #1B2E4D;
    margin: 30px 0;
    text-transform: uppercase;
}

.winner-box img {
    max-width: 100%;
}

.winner-box__iframe {
    min-height: 292px;
}

.title-box {
    background: #EF7C1E;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    padding: 14px 2px;
    text-align: center;
}

.title-box--form {
    background: #09A1D8;
    border: 2px solid #0794C7;
    border-radius: 4px;
}

.title-box--form a {
    color: #fff;
    font-size: 16px;
}

.winner-box .name {
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
    color: #1B2E4D;
    margin-bottom: 10px;
}

.winner-box:first-child .icon{
    background: url("../img/cup-first.svg") 50% no-repeat;
    background-size: cover;
}

.winner-box:last-child .icon{
    background: url("../img/cup-third.svg") 50% no-repeat;
    background-size: cover;
}

.winner-box--approbation .icon {
    border-radius: 50%;
    background: #99D6FF !important;
}

.contest-list {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    text-transform: uppercase;
    color: #1B2E4D;
    margin-bottom: 30px;
    margin-left: 36px;
    cursor: pointer;
}

.contest-list.active {
    font-weight: 700;
    font-size: 18px;
}

.contest-list.active .line {
    width: 24%;
    border-bottom: 4px solid #EF7C1E;
    margin-top: 10px;
}

.file-block a {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: #1B2E4D;
    margin-left: 12px;
}

.file-word a {
    font-size: 18px;
    line-height: 27px;
    color: #1B2E4D;
    margin-left: 12px;
}

.sdo-menu {
    display: flex;
    justify-content: space-between;
}

.sdo-menu .nav-item {
    padding: 0.9em 0.3em
}

.lecture_content .theme_title {
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
    color: #1B2E4D;
}

.lecture_content p {
    text-align: left;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #1B2E4D;
}

.lecture_content .file-download-container a {
    background-image: url(/images/doc-download.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 29px 37px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 15px;
    color: #1B2E4D;
    padding-left: 47px;
}

.lecture_content .file-download-container {
    margin-bottom: 13px;
}

.lecture_content .file-download-container a.pptx-download {
    background-image: url(/images/pptx-download.png);
}

.lecture_content ul li {
    text-align: left;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #1B2E4D;
    margin: 10px 0px;
    background-color: inherit;
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.lecture_content ul li::before {
    content: '';
    width: 11px;
    height: 11px;
    position: absolute;
    left: 0;
    top: 4.5px;
    background-color: #EF7C1E;
    border-radius: 50%;
}

body .chat .profile-chat .btn-outline-secondary {
    align-items: center;
    text-align: right;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: #265785 !important;
    border: 0;
    background-color: inherit !important;
    box-shadow: none;
    margin-right: 55px;
    max-width: 100%;
}

.profile-chat .msg-wrapper {
    overflow: auto !important;
    max-height: 100% !important;
}

.profile-chat .msg-wrapper > div {
    background-color: #FCFCFC;
    border-radius: 3px;
    padding: 30px 29px 30px 86px;
    background-image: url(/images/user-img-chat.png);
    background-size: 31px 31px;
    background-repeat: no-repeat;
    background-position: 29px 20px;
}

body .form_block .btn {
    font-style: normal;
    font-weight: normal;
    font-size: 10.56px;
    line-height: 12px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 10px 18px;
    background-color: #09A1D8;
    border: 1.32px solid #0794C7;
    box-sizing: border-box;
    border-radius: 2.64px;
    text-transform: uppercase;
    border: 0;
}
body .classroom {
    color: #1B2E4D;
}

.video-lesson-file-download {
    padding: 0 45px;
}

.video-lesson-file-download .file-download-container {
    margin-bottom: 15px;
}

.video-lesson-file-download .file-download-container:last-child {
    margin-bottom: 0px;
}

.video-lesson-file-download a,
.video-lesson-file-download a.pdf-download {
    background-image: url(/images/pdf-download.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 29px 37px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 15px;
    color: #1B2E4D;
    padding-left: 47px;
}

.header-rukovodstvo {
    background-image: url(/images/pdf-download.png);
    background-repeat: no-repeat;
    min-height: 40px;
    display: flex;
    align-items: center;
    padding-left: 40px;
    margin-right: 20px;
}

.slider-box--concurs .slider-box__buttons {
    display: flex;
    flex-direction: column;
    max-width: 645px;
    left: auto;
    right: 31.5%;
    bottom: 115px;
    height: 100%;
    justify-content: flex-end;
    align-items: flex-start;
}

.slider-box--concurs .slider-box__buttons .btn-container {
    display: flex;
}

.slider-box--concurs .slider-box__buttons .btn {
    background-color: #09A1D8;
    border: 2px solid #0794C7;
    box-sizing: border-box;
    border-radius: 4px;
    color: #fff !important;
}

.slider-box--concurs .slider-box__buttons .date {
    font-style: normal;
    font-weight: 900;
    font-size: 36px;
    line-height: 42px;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    background-color: #EF7C1E;
    padding: 10px 20px;
}

.slider-box--concurs .slider-box__buttons .text {
    font-style: normal;
    font-weight: 900;
    font-size: 36px;
    line-height: 42px;
    color: #FFFFFF;
    margin-top: 25px;
}

.button-concurs-container {
    justify-content: flex-end;
}

.aboutconcurs-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0;
}

.aboutconcurs-page .image-block {
    max-width: 556px;
    width: 100%;
    margin: 0 auto;
}

.aboutconcurs-page img {
    width: 100%;
}

.aboutconcurs-page .content-block {
    max-width: 713px;
    width: 100%;
    margin: 0 auto;
}

.aboutconcurs-page .content-block .title-text {
    font-style: normal;
    font-weight: 500;
    font-size: 26px;
    line-height: 30px;
    display: flex;
    align-items: center;
    color: #265785;
}

.aboutconcurs-page .content-block .sub-title-text {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    display: flex;
    align-items: center;
    color: #265785;
    margin-bottom: 60px;
}

.aboutconcurs-page .content-block .text p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #1B2E4D;
    margin-bottom: 25px;
}

.aboutconcurs-page .content-block a.btn {
    max-width: 220px;
    padding: 13.5px 0;
    justify-content: center;
    transition: .5s;
}

.aboutconcurs-page .content-block a.btn:hover {
    opacity: 0.75;
    transition: .5s;
}

.publications-posts-container div > img {
    height: auto;
    width: 200px;
    margin-right: 15px;
}

.publications-posts-container div,
.publications-posts-container h2,
.publications-posts-container small {
    color: #1B2E4D;
}

.title_estimate{
    color: #265785;
    text-align: center;
    margin-top:25px;
}
.expert-estimate{
    padding:15px 0;
}
.estimate_table th{
    background: #F9F9F9;
    padding: 10px;
    color: #3490dc;
}
.estimate_table td{
    padding: 20px 10px;
}
.tdBold td{
    font-weight: bold;
    font-size: 1.5em;
}
.expert-estimate h3{
    color: #265785
}
.concurs-estimate label{
    font-weight: bold;
}

.concurs-estimate iframe {
    max-width: 100%;
    margin: 0 auto;
}

.concurs-estimate .concurs-estimate-bg {
    background-color: #F6F5F5;
    border: 1px solid #ECEAEB;
    box-sizing: border-box;
    border-radius: 0px 0px 20px 20px;
    background-image: url(/images/concurs-estimate-bg.png);
    background-position: center top;
    background-repeat: no-repeat;
    padding: 10px 40px;
    margin: 75px auto 35px;
}

.concurs-estimate .title_estimate {
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 127%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #1B2E4D;
}

.concurs-estimate .text {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 0 18px;
}

.concurs-estimate .text p {
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 127%;
    display: flex;
    align-items: center;
    color: #1B2E4D;
    margin: 0;
}

.concurs-estimate .text label {
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 127%;
    display: flex;
    align-items: center;
    color: #1B2E4D;
    margin: 0 10px 0 0;
}

.concurs-estimate .btn-estimate {
    background-image: url(/images/video-lesson-icon.svg);
    background-repeat: no-repeat;
    background-position: 16px center;
    background-size: 30px;
    background-color: #E5F4FE;
    border: 1.32px solid #99D6FF;
    box-sizing: border-box;
    border-radius: 2.64px;
    padding: 11px 17px 12px 64px;
    margin: 45px 0 55px;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 127%;
    color: #1B2E4D;
    transition: .5s;
}

.concurs-estimate .btn-estimate:hover {
    background-color: #e5f4fe8f;
    border: 1.32px solid #54b8fb;
    transition: .5s;
}

.concurs-estimate ul li {
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 127%;
    display: flex;
    align-items: center;
    color: #1B2E4D;
    margin: 0;
}

.concurs-estimate .estimate_table th {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 127%;
    color: #09A1D8;
    padding: 26px 27px 27px;
    position: relative;
    background-color: #ECEAEB;
    box-sizing: border-box;
    padding: 10px;
    vertical-align: middle;
    text-align: center;
}

.concurs-estimate .estimate_table th::before {
    content: '';
    background-color: #fff;
    width: 2.33px;
    height: 32px;
    display: block;
    position: absolute;
    top: calc(50% - 16px);
    right: 10px;
}

.concurs-estimate .estimate_table th:last-child::before {
    content: none;
}

.concurs-estimate .estimate_table td {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 127%;
    color: #1B2E4D;
    padding: 10px;
    border: 0px;
}
.estimate_table{
    margin-bottom: 30px;
}

.concurs-estimate .estimate-result-container {
    border-top: 1px solid rgba(27, 46, 77, 0.3);
}

.concurs-estimate .estimate-result-container td:not(.estimate-result) {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 127%;
    color: #1B2E4D;
}

.concurs-estimate .estimate_table td.estimate-result {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 127%;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #1B2E4D;
    justify-content: center;
}

#modal-1___BV_modal_content_ {
    max-width: 700px;
    background-color: #fff;
    box-shadow: 0px 15px 75px rgba(0, 0, 0, 0.22);
    display: flex;
    justify-content: center;
    padding: 10px 0px 0px;
    margin-top: 15%;
    border-bottom: 15px solid #EFEDEE;
}

#modal-1___BV_modal_backdrop_ {
    opacity: 0.3!important;
}
#modal-1___BV_modal_header_ {
    padding: 40px 15px 15px;
    position: relative;
}

#modal-1___BV_modal_header_ button.close {
    position: absolute;
    right: 15px;
    top: 5px;
    background-image: url(/images/close-modal.png);
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
    color: #ffffff00;
    text-shadow: none;
}

#modal-1___BV_modal_header_ h5 {
    display: flex;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 131.19%;
    text-transform: uppercase;
    color: #265785;
    justify-content: center;
    text-align: center;
    width: 100%
}

#modal-1___BV_modal_body_ p {
    display: flex;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 131.19%;
    color: #1B2E4D;
    width: 100%;
}

#modal-1___BV_modal_body_ p span {
    font-weight: bold;
    margin-left: 6px;
    font-size: 120%;
}

#modal-1___BV_modal_body_ button {
    margin: 5px auto 5px;
}

.estimate-modal-footer {
    background-color: #EFEDEE;
    padding: 15px 15px 0;
    display: flex;
    justify-content: center;
    margin: 0 -15px -16px;
}

body .admin-concurs-list {
    font-family: 'Roboto', sans-serif;
}

.concurs-estimate.concurs-estimate-appraisals .estimate_table th {
        font-size: 14px;
    }
.concurs-estimate.concurs-estimate-appraisals .estimate_table th::before {
    top: 0;
    height: 100%;
    right: 0px;
}

.concurs-estimate.concurs-estimate-appraisals .estimate_table td {
    position: relative;
    box-sizing: border-box;
    padding: 10px;
}

.concurs-estimate.concurs-estimate-appraisals .estimate_table td::before {
    content: '';
    background-color: #ECEAEB;
    width: 2.33px;
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
    right: 0px;
}

.cabinet-exit:hover .btn-logout circle,
.cabinet-exit:hover .btn-logout path,
.cabinet-exit:hover .left-panel__role {
    color: #EF7C1E;
    stroke: #EF7C1E;
}

.concurs-list li.video-lesson-file-download {
    padding-left: 0;
    margin-bottom: 12px;
}

.concurs-list li.video-lesson-file-download::before {
    content: none !important;
}

@media (max-width: 1420px) {
    .heading {
        margin-bottom: 30px;
    }
    .section-nav .navbar-nav.navbar-nav--main .nav-link {
        padding: 8px;
    }
    .section-tasks .list-tasks .task-box {
        padding: 10px;
    }
    .section-tasks .list-tasks .task-box__header {
        margin: 18px;
    }
    .section-tasks .list-tasks .task-box__content {
        font-size: 16px;
        line-height: 24px;
    }
    .section-events,
    .section-tasks,
    .section-news__wrapper {
        padding: 30px;
    }
    .section-project {
        padding: 10px;
    }
    .section-project .project-box__divider {
        height: 130px;
    }
    .section-slider .slider-slider {
        height: 450px;
    }
    .section-news .slider-news .news-box__header {
        height: 200px;
    }
    .section-news .slider-news .news-box__title h4 {
        font-size: 18px;
    }
    .section-nav .navbar-brand {
        margin: 0;
        height: 100px;
        max-width: 140px;
    }
    .section-footer .footer-nav a {
        padding:0 10px;
    }
}

@media (max-width: 1200px) {
    .section-nav .navbar-nav.navbar-nav--main .nav-item {
        height: 60px;
    }
    .section-footer {
        padding: 30px;
    }
    .left-panel {
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
}

@media (max-width: 1024px) {
    .section-footer .footer-nav ul {
        flex-direction: column;
    }

    .aboutconcurs-page {
        flex-wrap: wrap;
    }
}

@media (max-width: 992px) {
    .section-contacts__wrapper {
        justify-content: center;
    }

    .section-tasks .list-tasks .task-box {
        width: 45%;
    }

    .section-project .project-box {
        flex-direction: column;
    }

    .section-project .project-box__divider {
        height: 2px;
        width: 170px;
        margin: 14px 0;
    }

    .section-project .project-box__description {
        text-align: center;
        font-size: 18px;
        line-height: 25px;
    }
    .section-project .project-box__description p {
        margin: 0;
    }

    .section-project .project-box__title {
        text-align: center;
        max-width: 530px;
    }

    .section-events .slider-events .events-box {
        flex-direction: column;
    }

    .section-events .slider-events .events-box__photo {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .heading {
        font-size: 36px;
    }
    .section-events .slider-events .events-box__content {
        font-size: 18px;
        line-height: 26px;
    }

    .section-footer .footer-nav {
        flex-wrap: wrap;
        align-items: flex-start;
        max-width: 270px;
    }

    .section-footer .footer-nav a {
        height: 50px;
        font-size: 16px;
    }

    .section-calendar .box .box__icon:after {
        content: none;
    }

    .map {
        display: none;
    }

    .courses-page .courses-page-container .courses-content .container-fluid.profile-chat .msg-wrapper {
        padding: 0 15px;
    }

    .profile-chat .form_block {
        padding: 20px 15px 0px !important;
    }

    body .profile-chat .msg-wrapper > div {
        padding: 15px;
        background-image: none;
    }

    .msg-wrapper .order-first .comment-header {
        display: flex;
        flex-direction: column;
    }

    body .message_time {
        text-align: left;
    }

    body .button-concurs-container {
        justify-content: center;
    }

    .form-bg.concurs-form .col-sm-12,
    .form-bg.concurs-form .col-10 {
        padding: 0px;
    }

    .form-title-bg {
        padding-left: 5px;
        padding-right: 5px;
        font-size: 20px;
    }

    .form-bg.concurs-form .d-flex.offset-0.mt-4 {
        margin-left: 0px;
    }

    .form-bg.concurs-form .d-flex.offset-3 {
        margin-left: 0px;
    }

    .concurs-form .btn-danger:not(:disabled):not(.disabled):hover::before,
    .concurs-form .btn-danger:disabled:hover::before {
        left: auto;
        right: auto;
    }

    .publications-posts-container > div {
        flex-direction: column;
    }

    .publications-posts-container div > img {
        width: 100%;
    }

    .publications-posts-container .flex-column-1 > div {
        display: flex;
        flex-direction: column-reverse;
    }

    .publications-posts-container .flex-column-1 > div {
        margin-bottom: 20px;
    }

    .publications-posts-container .flex-column-1 > div small {
        margin: 20px 0;
    }
}

@media (max-width: 576px) {
    .heading {
        font-size: 21px;
    }
    .section-contacts__wrapper {
        flex-direction: column;
    }

    .section-contacts a {
        font-size: 16px;
    }

    .section-contacts a span {
        font-size: 18px;
    }

    .section-tasks .list-tasks .task-box {
        width: 90%;
    }

    .section-tasks,
    .section-news__wrapper,
    .section-footer {
        padding: 50px 15px;
    }
    .section-events {
        padding: 50px 15px 0px;
    }
    .section-events .slider-events .events-box__date {
        transform: unset;
        bottom: 0;
        top: auto;
    }

    .section-footer .footer-nav a {
        height: 40px;
        font-size: 12px;
    }
    .form-label {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .buttom-button-nav-tabs a {
        margin: 10px auto !important;
    }

    #nav-tab.nav-tabs.buttom-button-nav-tabs {
        padding: 10px;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    #main {
        display: block;
    }
}

