html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: 'Roboto', 'sans-serif' !important;
    background: #ffffff;
}

main {
    flex: 1 0 auto;
}

.wrapper {
    width: 1170px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    min-width: 180px;
    padding: 10px 16px;
    text-align: center;
    font-size: 18px;
    line-height: 130%;
    border: none;
    border-radius: 24px;
    font-family: 'Roboto', 'sans-serif' !important;
    text-decoration: none;
    font-weight: bold;
    color: #FFFFFF;
    background: #2F58A7;
    cursor: pointer;
}

.arrow-link {
    padding-right: 34px;
    background: url("../img/arrow.svg") no-repeat 100%;
}


/* header */
header {
    background-color: #FAFCFD;;
}

.profile-header {
    padding: 20px 0;
}

.profile-header > .wrapper {
    padding-bottom: 20px;
}

.profile-header .header-row {
    border-bottom: none;
}

.profile-header nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0;
}

.profile-header nav li {
    padding-right: 20px;
}

.profile-header nav ul a{
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    text-transform: uppercase;
    color: #6E7D8F;
}

.profile-header nav ul .active {
    text-decoration: none;
    color: #36B2E6;
}

.profile-header nav ul a.disabled:hover {
    color: #6E7D8F;
    cursor: unset;
}

.profile-header nav ul a:hover {
    text-decoration: none;
    color: #36B2E6;
}


header .wrapper {
    display: flex;
    align-items: center;
}

.site-logo {
    width: 98px;
    height: 98px;
    margin-right: 31px;
    object-fit: cover;
}

.header-column {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 29px 0 25px 0;
    border-bottom: 1px solid rgba(54, 178, 230, 0.25)
}

.site-name {
    /* width: 520px; */
    font-family: 'Roboto', 'sans-serif' !important;
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
    color: #323941;
}

.site-name span {
    display: block;
    text-transform: uppercase;
}

/* user-block */
.user-block {
    display: flex;
}

.auth-user-block {
    display: flex;
    flex-direction: row;
    align-items: baseline;
}

.auth-user-block .user {
    margin-right: 29px;
    padding: 4px 0 4px 39px;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.08em;
    background: url(../img/spritesheet.png) no-repeat -30px -856px;
    color: #323941;
    text-decoration: none;
}

.auth-user-block .btn {
    display:block;
    box-sizing: border-box;
    width: 100px;
    background-color: #FFFFFF;
    border: 2px solid #E6365A;
    padding: 8.5px 0;
    font-weight: 500;
    color: #E6365A;
}


.btn-sign-up {
    display: block;
    width: 145px;
    margin-right: 25px;
    background: #2F58A7;
    font-weight: 500;
    color: #F5F9FC;
    box-shadow: -4px -2px 18px rgba(0, 0, 0, 0.1), 4px 2px 18px rgba(0, 0, 0, 0.1);
}

.btn-sign-in {
    display:block;
    box-sizing: border-box;
    width: 100px;
    background-color: #FFFFFF;
    border: 2px solid #E6365A;
    padding: 8.5px 0;
    font-weight: 500;
    color: #E6365A;
}

.btn-sign-in:hover {
    background-color: #E6365A;
    border: 2px solid #fff;
    color: #fff;
}

.exit:hover {
    background-color: #E6365A;
    border: 2px solid #fff;
    color: #fff;
}


/* main-navigation */
.main-navigation ul {
    display: flex;
    margin: 0;
    padding: 12px 0;
    list-style: none;
}

.main-navigation li {
    margin-right: 54px;
}

.main-navigation li:last-child {
    margin-right: 0;
}

.main-navigation a {
    font-size: 16px;
    line-height: 130%;
    text-transform: uppercase;
    text-decoration: none;
    color: #6E7D8F;
}

.main-navigation a:hover {
    color: #36B2E6;
    font-weight: 500;
}

.main-navigation .active {
    font-weight: 500;
    color: #36B2E6;
}

.auth-modal {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 126px;
    box-sizing: border-box;
    padding: 54px 29px 29px 29px;
    width: 318px;
    min-height: 385px;
    background: #FFFFFF;
}

.modal-close { background: none; border: none; }

.auth-modal .modal-form {
    display: flex;
    flex-direction: column;
}

.auth-modal .modal-close {
    position: absolute;
    top: 35px;
    right: 33px;
    width: 14px;
    height: 14px;
    font-size: 0;
    cursor: pointer;
}

.auth-modal .modal-close::before,
.auth-modal .modal-close::after {
    content: "";
    position: absolute;
    top: 6px;
    left: -2px;
    z-index: 2;
    width: 18px;
    height: 2px;
    background: #6E7D8F;
}

.auth-modal .modal-close::before {
    transform: rotate(45deg);
}

.auth-modal .modal-close::after {
    transform: rotate(-45deg);
}

.auth-modal-title {
    margin-bottom: 24px;
    font-weight: bold;
    font-size: 26px;
    line-height: 120%;
    text-align: center;
    color: #36B2E6;
}

.auth-modal .modal-form label {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    display: flex;
    color: #6E7D8F;
}

.auth-modal input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid #B5BBC2;
    border-radius: 4px;
    font-family: 'Roboto', 'sans-serif';
    font-size: 14px;
    line-height: 130%;
    color: #323941;
    outline: none;
}

.auth-modal input::placeholder {
    font-family: 'Roboto', 'sans-serif';
    font-size: 14px;
    line-height: 130%;
    color: #C2C6CC;
}

.auth-modal .btn {
    box-sizing: border-box;
    width: 136px;
    height: 44px;
    line-height: 120%;
    border: 2px solid #E6365A;
    background: #E6365A;
    align-self: center;
}

.auth-modal .btn:hover {
    background-color: #fff;
    color: #E6365A;
}

.auth-modal .modal-form .fieldset {
    display: flex;
    justify-content: space-between;
}

.auth-modal .modal-form .forget-pass-link {
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    text-decoration-line: underline;
    color: #2F58A7;
}

.auth-modal .modal-form .fieldset label {
    position: relative;
    padding-left: 30px;
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    color: #2F58A7;
    cursor: pointer;
}

.auth-modal .fieldset input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.auth-modal .modal-form .fieldset .checkmark {
    position: absolute;
    top: -2px;
    left: 2px;
    box-sizing: border-box;
    height: 18px;
    width: 18px;
    border: 1px solid #2F58A7;
    border-radius: 3px;
    background-color: #ffffff;
  }

.auth-modal .modal-form .fieldset input:checked ~ .checkmark {
    background-color: #2F58A7;
}

.auth-modal .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.auth-modal input:checked ~ .checkmark:after {
    display: block;
}

.auth-modal .checkmark:after {
    box-sizing: border-box;
    left: 4px;
    top: 0 px;
    width: 8px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* profile content */

.profile-content .btn{
    border: none !important;
    background-color: #36B2E6 !important;
}


/* slider */
.slider {
    width: 1420px;
    margin: 0 auto;
    margin-bottom: 80px;
}

.slider-item-slogan {
    position: absolute;
    z-index: 2;
    top: 60px;
    left: 136px;
    width: 500px;
    font-weight: bold;
    font-size: 32px;
    line-height: 150%;
    text-transform: uppercase;
    color: #2F58A7;
}

.slider-item-slogan span {
    font-weight: normal;
    font-size: 28px;
    line-height: 160%;
    color: #3CB1E6;
}

.slider-item {
    position: relative;
    display: flex !important;
    max-width: 1423px;
    height: 660px;
    margin: 0 auto;
    /* background-color: rgb(126, 212, 198); */
}

.slick-prev {
    display: none !important;
}

.slick-next {
    position: absolute;
    top: 298px;
    right: 156px;
    width: 63px;
    height: 63px;
    border-radius: 50%;
    border: none;
    outline: none;
    font-size: 0px;
    background: #36B2E6 url("../img/spritesheet.png") no-repeat -9px -6px;
    cursor: pointer;
}

.slick-next::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    box-sizing: border-box;
    width: 83px;
    height: 83px;
    border: 1.42px solid #36B2E6;
    border-radius: 50%;
}

.slick-next::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    box-sizing: border-box;
    width: 104px;
    height: 104px;
    border: 1.42px solid #36B2E6;
    border-radius: 50%;
}

.slider-item img {
    display: block;
}

.slider-item-column {
    padding: 60px 141px 33px 65px;
    background: url("../img/slide-bg.jpg") no-repeat;
    background-size: cover;
}

.slider-item h3 {
    margin: 0px;
    font-weight: bold;
    font-size: 32px;
    line-height: 120%;
    color: #FFFFFF;
}

.slider-item h3 span {
    color: #3CB1E6;
}

.slider-item p {
    font-size: 22px;
    line-height: 130%;
    color: #FFFFFF;
}

.slider-item ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    margin-top: 0;
    padding: 0;
    list-style: none;
}

.slider-item ul li {
    margin-bottom: 24px;
    padding-left: 40px;
    font-size: 16px;
    line-height: 130%;
    text-transform: uppercase;
    color: #FFFFFF;
    background: url("../img/spritesheet.png") no-repeat -30px -424px;
}

.slider-item ul li span {
    display: block;
    font-weight: bold;
    font-size: 18px;
    line-height: 130%;
}

.slider-item .btn {
    box-sizing: border-box;
    height: 44px;
    border: 2px solid #E6365A;
    background: #E6365A;
    line-height: 120%;
}

.slider-item .btn:hover {
    background: #fff;
    color: #E6365A;
}

.slider-item .btn-request {
    width: 172px;
}




.seminar-slide-title {
    margin-bottom: 27px;
}

.seminar-slide-info {
    margin-bottom: 100px;
}

.seminar-slide-promo {
    margin-bottom: 24px;
    font-weight: bold;
    font-size: 20px;
    line-height: 120%;
    color: #FFFFFF;
}

.seminar-slide-promo span {
    color: #36B2E6;
}

.slider-cities-list {
    height: 185px;
    margin-bottom: 48px !important;
}

.slider-cities-list li:nth-child(1) {
    margin-right: 96px;
}

.slider-cities-list li:nth-child(3n) {
    margin-bottom: 0px;
}

.slider-info-list li:last-child {
    margin-bottom: 0;
}

.slider-info-list li span{
    text-transform: capitalize;
}

.slider-courses-info {
    margin-top: 25px;
    margin-bottom: 19px;
    font-weight: 300;
    font-size: 18px;
    line-height: 130%;
    color: #FFFFFF;
}

.issuance-of-certificates {
    margin-bottom: 24px;
    font-weight: bold;
    font-size: 18px;
    line-height: 130%;
    text-transform: uppercase;
    color: #36B2E6;
}

.contest-slide-title {
    margin-bottom: 44px !important;
}

.seminars {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.seminars-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 370px;
    height: 260px;
    margin-bottom: 30px;
}

.seminars-description h3 {
    margin: 0 0 34px 0;
    font-weight: bold;
    font-size: 26px;
    line-height: 120%;
    color: #6E7D8F;
}

.seminars-description h3 span {
    color: #36B2E6;
}

.seminars-description p {
    margin: 0;
    font-weight: 300;
    font-size: 18px;
    line-height: 130%;
    color: #323941;
}

.seminars-item {
    position: relative;
    width: 370px;
    height: 260px;
    border-radius: 4px;
    object-fit: contain;
}

.seminars-item img{
    border-radius: 4px;
}

.seminars-item-info {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 2px 29px;
    background: #36B2E6;
    border-radius: 4px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
}

.seminars-item-info span {
    display: block;
    font-weight: bold;
    line-height: 130%;
}

.semenars-item-description {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s linear;
    position: absolute;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    padding: 16px;
    width: 370px;
    border-radius: 3px;
    box-shadow: -4px -2px 18px rgba(0, 0, 0, 0.1), 4px 2px 18px rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
    font-size: 14px;
    line-height: 110%;
    text-align: center;
    color: #6E7D8F;
}

.seminars-item:hover .semenars-item-description {
    visibility: visible;
    opacity: 1;
}




/* monitoring */
.monitoring {
    display: flex;
    align-items: center;
    height: 533px;
    position: relative;
}

.monitoring-column{
    display: flex;
    flex-direction: column;
    width: 670px;
}

.monitoring h2 {
    margin: 0 0 38px 0;
    font-weight: bold;
    font-size: 26px;
    line-height: 120%;
    color: #6E7D8F;
}


.monitoring h2 span {
    color: #36B2E6;
}

.monitoring p {
    margin: 0 0 30px 0;
    font-weight: 300;
    font-size: 18px;
    line-height: 130%;
    color: #323941;
}

.monitoring p span {
    display: block;
}

.monitoring-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 36px;
    font-size: 16px;
    line-height: 22px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #6E7D8F;
}

.monitoring-deadlines {
    min-height: 71px;
    margin-right: 49px;
    background: url("../img/deadlines-bg.svg") no-repeat;
}

.monitoring-for-whom {
    flex-shrink: 1.2;
    background: url("../img/for-whom-bg.svg") no-repeat;
}

.monitoring-deadlines,
.monitoring-for-whom {
    padding-left: 85px;
}

.monitoring-details span {
    display: inline-block;
    margin-top: 4px;
    font-weight: bold;
    font-size: 18px;
    line-height: 130%;
    color: #6E7D8F;
    text-transform: lowercase;
}

.monitoring .more-link {
    align-self: flex-end;
    margin-right: 19px;
    font-weight: bold;
    font-size: 18px;
    line-height: 130%;
    color: #2F58A7;
    text-decoration: none;
}

.monitoring-img {
    position: absolute;
    right: -126px;
    top: 0;
}




/* contest */
.contest-row {
    max-width: 1423px;
    margin: 0 auto;
    padding: 60px 0 30px 0;
    background: url("../img/contest-bg.jpg") no-repeat center top;
}

.contest-row h2 {
    width: 681px;
    margin: 0 0 63px 0;
    font-weight: bold;
    font-size: 26px;
    line-height: 120%;
    color: #FFFFFF;
}

.contest-row h2 span {
    color: #36B2E6;
}

.contest-row p {
    width: 368px;
    margin: 0;
    font-weight: 300;
    font-size: 18px;
    line-height: 130%;
    color: #FFFFFF;
}
.contest-row .evgd-ppp {
    width: 285px;
}

.contest-stages {
    display:flex;
    flex-direction: row;
    justify-content: flex-end;
}

.contest-stages-item {
    position: relative;
    box-sizing: border-box;
    width: 270px;
    height: 367px;
    margin: -180px 30px 0 0;
    padding: 71px 16px 16px 16px;
    background: #FFFFFF;
    box-shadow: -4px -2px 18px rgba(0, 0, 0, 0.1), 4px 2px 18px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    text-align: center;
}

.contest-stages-item:last-child {
    margin-right: 0;
}

.stage-number {
    position: absolute;
    top: -55px;
    left: 50%;
    box-sizing: border-box;
    width: 110px;
    height: 110px;
    padding-top: 35px;
    margin-left: -55px;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15), -2px -2px 4px rgba(0, 0, 0, 0.05);
    font-weight: bold;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    text-transform: uppercase;
    color: #36B2E6;
}

.stage-number span {
    display: block;
    padding-bottom: 10px;
    font-size: 50px;
}

.stage-title {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    text-transform: uppercase;
    color: #323941;
}

.stage-duration {
    margin-bottom: 24px;
    font-weight: bold;
    font-size: 16px;
    line-height: 130%;
    color: #36B2E6;
}

.stage-description {
    font-size: 16px;
    line-height: 130%;
    color: #323941;
}

.stage-request {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 11px 0;
    background: #F5F9FC;
    border-radius: 0px 0px 4px 4px;
}

.stage-request a {
    font-weight: bold;
    font-size: 18px;
    line-height: 130%;
    color: #2F58A7;
    text-decoration: none;
}

.stage-date,
.stage-place {
    font-size: 16px;
    line-height: 130%;
    color: #6E7D8F;
}

.stage-date {
    margin-bottom: 8px;
}

.stage-place {
    margin-bottom: 21px;
}

.stage-date span,
.stage-place span {
    display: block;
    font-weight: bold;
    color: #36B2E6;
}

.stage-awards {
    font-size: 16px;
    line-height: 130%;
    color: #323941;
}

.stage-awards span {
    display: block;
    margin-bottom: 16px;
}

.contest-nominations {
    display: flex;
    justify-content: space-between;
    padding: 69px 0 69px 0;
    flex-wrap: wrap;
}

.contest-nominations-item {
    display: flex;
    align-items: center;
    width: 100%;
    height: 140px;
    border-radius: 4px;
    box-shadow: -4px -2px 18px rgba(0, 0, 0, 0.1), 4px 2px 18px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contest-nominations-item:nth-child(1) {
    background: url("../img/school.svg") no-repeat 98% 50%;
}

.contest-nominations-item:nth-child(2) {
    background: url("../img/nomi4.svg") no-repeat 98% 50%;
}

.contest-nominations-item:nth-child(3) {
    background: url("../img/web.svg") no-repeat 98% 50%;
}
.contest-nominations-item:nth-child(4) {
    background: url("../img/ebook.svg") no-repeat 98% 50%;
}
.contest-nominations-item:nth-child(5) {
    background: url("../img/book.svg") no-repeat 98% 50%;
}

.nominations-item-title {
    background: #F5F9FC url("/img/nomi-bg.svg") no-repeat 50% 0;
    box-shadow: 4px 2px 18px rgba(0, 0, 0, 0.1), -4px -2px 18px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-weight: bold;
    font-size: 18px;
    line-height: 140%;
    text-transform: uppercase;
    color: #36B2E6;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 170px;
    max-width: 100%;
    height: 100%;
}

.nominations-item-title span {
    margin-top: 40px;
    font-size: 56px;
    line-height: 120%;
}

.contest-nominations-item p {
    margin: 0;
    padding: 0 31px 0 31px;
    color: #323941;
    max-width: 68%;
    font-weight: normal;
    font-size: 16px;
    line-height: 130%;
}

.contest-nominations-item:nth-child(3) p span {
    display: block;
}

/* courses */
.courses {
    position: relative;
    display: flex;
    align-items: center;
    height: 484px;
    background: #F5F9FC;
}

.courses .wrapper {
    position: relative;
}

.courses-column {
    width: 533px;
}

.courses h3 {
    margin: 0 0 30px 0;
    font-weight: bold;
    font-size: 26px;
    line-height: 120%;
    color: #36B2E6;
}

.courses p {
    margin: 0 0 45px 0;
    font-weight: 300;
    font-size: 18px;
    line-height: 130%;
    color: #323941;
}

.courses .btn {
    box-sizing: border-box;
    width: 172px;
    color: #FFFFFF;
    background: #E6365A;
    box-shadow: -4px -2px 18px rgba(0, 0, 0, 0.1), 4px 2px 18px rgba(0, 0, 0, 0.1);
    border: 2px solid #e6365a;
    height: 44px;
}

.courses .btn:hover {
    background: #fff;
    color: #e6365a;
}

.courses-info {
    position: absolute;
    z-index: 1;
    top: 76px;
    left: 48%;
    width: 300px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.courses-info li {
    margin-bottom: 16px;
    padding: 16px 16px 16px 68px;
    background-color: #FFFFFF;
    font-size: 14px;
    line-height: 130%;
    text-transform: uppercase;
    color: #6E7D8F;
    box-shadow: -4px -2px 18px rgba(0, 0, 0, 0.1), 4px 2px 18px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.courses-info li:last-child {
    margin-bottom: 0px;
}
.courses-info li span {
    display: block;
    text-transform: lowercase;
    font-weight: bold;
    font-size: 16px;
    line-height: 130%;
    color: #6E7D8F;
}

.courses-info-request {
    background: url("../img/files.svg") no-repeat 17px 16px;
}

.courses-info-access {
    background: url("../img/user.svg") no-repeat 17px 16px;
}

.courses-info-education {
    background: url("../img/monitor.svg") no-repeat 17px 16px;
}

.courses-info-certificates {
    background: url("../img/contact.svg") no-repeat 17px 16px;
}

.courses img {
    position: absolute;
    top: -90px;
    right: -126px;
}


/* feedback */
.feedback {
    max-width: 1423px;
    margin: 0 auto;
    padding: 40px 0;
    background: url("../img/feedback-bg.svg") repeat-y center;
}
.feedback h3 {
    margin: 0px 0px 17px 0;
    font-weight: bold;
    font-size: 26px;
    line-height: 120%;
    text-align: center;
    color: #FFFFFF;
}

.feedback h3 span {
    color: #36B2E6;
}

.feedback .feedback-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feedback .feedback-form .fieldset {
    display: flex;
    flex-direction: row;
    width: 66%;
    margin: 0px 0px 16px 0px;
    padding: 0px;
    border: 0px;
}

.feedback input,
.feedback textarea {
    padding: 13px 18px;
    box-sizing: border-box;
    border: 1px solid #F5F9FC;
    outline: none;
    border-radius: 24px;
    background: #FFFFFF;
    font-family: 'Roboto', 'sans-serif';
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    color: #6E7D8F;
}

.feedback .feedback-form .fieldset input {
    flex-grow: 0.5;
}

.feedback .feedback-form .fieldset input:first-child {
    margin-right: 19px;
}

.feedback .feedback-form > input:first-child {
    width: 66%;
    margin-bottom: 16px;
}

.feedback textarea {
    width: 66%;
    min-height: 70px;
    margin-bottom: 30px;
    resize: vertical;
}

.feedback .feedback-form .btn {
    box-sizing: border-box;
    width: 179px;
    height: 44px;
    font-weight: bold;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    color: #FFFFFF;
    background: #2F58A7;
    border: 2px solid #2F58A7;
    box-shadow: 0px 5px 5px rgba(183, 47, 15, 0.1);
}


.feedback .feedback-form .btn:hover {
    color: #2F58A7;
    background-color: #fff;
}




/* footer */
footer {
    padding: 23px 0 23px;
    background: rgba(110, 125, 143, 0.15);
}

footer .wrapper {
    display: flex;
    justify-content: space-between;
}

.company-name {
    font-size: 14px;
    line-height: 22px;
    text-align: right;
    text-transform: uppercase;
    color: #6E7D8F;
}

.contacts {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contacts li {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-right: 33px;
    padding-left: 35px;
}

.contacts li a {
    font-size: 13px;
    line-height: 22px;
    color: #36B2E6;
    text-decoration: none;
}

.contacts li:last-child {
    margin-right: 0;
}

.contacts-mail {
    background: url("../img/spritesheet.png") no-repeat -30px -710px;
}

.contacts-phone {
    background: url("../img/spritesheet.png") no-repeat -26px -258px;
}

/* user profile */

.anket-container .btn {
    border: none !important;
    background: #36B2E6 !important;
}

/* course registration */
.course-registration-block {
    padding-bottom: 70px;
}

.course-registration-block .wrapper {
    position: relative;
    padding-top: 74px;
}

.course-registration-block .close-window {
    position: absolute;
    top: 42px;
    right: 198px;
}

.course-registration-block .close-window a {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    font-size: 0;
}

.course-registration-block .close-window a:before {
    content: "";
    position: absolute;
    top: 13px;
    left: 0px;
    width: 29px;
    height: 2px;
    background: #6E7D8F;
    transform: rotate(45deg);
}

.course-registration-block .close-window a:after {
    content: "";
    position: absolute;
    top: 13px;
    left: 0px;
    width: 29px;
    height: 2px;
    background: #6E7D8F;
    transform: rotate(-45deg);
}

.course-registration-title {
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 26px;
    line-height: 120%;
    text-align: center;
    color: #36B2E6;
}

.course-registration-block form {
    display: flex;
    flex-direction: column;
    width: 770px;
    margin: 0 auto;
}

.course-registration-block form label {
    margin-bottom: 0;
}

.course-registration-block form .fieldset {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 16px;
}

.course-registration-block form label {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    color: #6E7D8F;
}

.course-registration-block form input[type="text"],
.course-registration-block form input[type="tel"],
.course-registration-block form input[type="email"],
.course-registration-block form select {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px !important;
    border: 1px solid #B5BBC2;
    border-radius: 4px;
    font-family: 'Roboto', 'sans-serif';
    font-size: 14px !important;
    line-height: 130% !important;
    color: #323941;
    outline: none;
}

.course-registration-block form input[type="text"]::placeholder,
.course-registration-block form input[type="tel"]::placeholder,
.course-registration-block form input[type="email"]::placeholder {
    color: #C2C6CC;
}

.course-registration-block form input[type="text"]:focus,
.course-registration-block form input[type="password"]:focus,
.course-registration-block form input[type="tel"]:focus,
.course-registration-block form input[type="email"]:focus,
.course-registration-block form select:focus {
    border-color: #36B2E6;
}

.course-registration-block form select {
    color: #C2C6CC;
}

.course-registration-block form .fieldset:nth-child(1) label,
.course-registration-block form .fieldset:nth-child(2) label,
.course-registration-block form .fieldset:nth-child(5) label {
    width: 30%;
}


.course-registration-block form .fieldset:nth-child(3) label {
    width: 48%;
}

.course-registration-block .fieldset:nth-child(4) label,
.course-registration-block .fieldset:nth-child(7) label,
.course-registration-block .fieldset:nth-child(6) label {
    width: 100%;
}

.course-registration-block .btn {
    margin-top: 30px;
    align-self: center;
    box-sizing: border-box;
    height: 44px;
    line-height: 120%;
    background: #E6365A;
    border: 2px solid #E6365A;
}

.course-registration-block .btn:hover {
    color: #E6365A;
    background-color: #fff;
}

.course-registration-hint {
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    color: #6E7D8F;
}


.course-registration-block form .privacy-policy {
    position: relative;
    padding-left: 38px;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 130%;
    color: #6E7D8F;
    cursor: pointer;
}

.course-registration-block form .privacy-policy input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.course-registration-block form .privacy-policy .checkmark {
    position: absolute;
    top: -2px;
    left: 2px;
    box-sizing: border-box;
    height: 18px;
    width: 18px;
    border: 1px solid #2F58A7;
    border-radius: 3px;
    background-color: #ffffff;
  }

.course-registration-block form .privacy-policy input:checked ~ .checkmark {
    background-color: #2F58A7;
}

.course-registration-block form .privacy-policy .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.course-registration-block form .privacy-policy input:checked ~ .checkmark:after {
    display: block;
}

.course-registration-block form .privacy-policy .checkmark:after {
    box-sizing: border-box;
    left: 4px;
    top: 0 px;
    width: 8px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.inner-title {
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 26px;
    line-height: 120%;
    text-align: center;
    color: #36B2E6;
}

.module-type-list {
    width: 250px;
}
/* seminar block */

.seminar-block {
    margin-bottom: 66px;
}

.seminar-block-title {
    margin: 63px 0 8px 0;
    font-weight: bold;
    font-size: 32px;
    line-height: 120%;
    color: #6E7D8F;
}

.seminar-block-title span {
    color: #36B2E6;
}

.seminar-block-date {
    margin-bottom: 50px;
    padding-left: 35px;
    font-size: 18px;
    line-height: 120%;
    display: flex;
    align-items: center;
    color: #6E7D8F;
    background: url('/img/seminar-sprite.png') no-repeat -26px -30px;
}

.seminar-program {
    box-sizing: border-box;
    position: relative;
    display: block;
    overflow: hidden;
    width: 170px;
    height: 173px;
    margin-right: 30px;
    padding-top: 103px;
    font-weight: 300;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    color: #323941;
    border-radius: 4px;
    background: #F5F9FC url('/img/pdf-icon.svg') no-repeat 65px 55px;
    text-decoration: none;
    box-shadow: -4px -2px 18px rgba(0, 0, 0, 0.1), 4px 2px 18px rgba(0, 0, 0, 0.1);
}

.seminar-program:before {
    content: "";
    position: absolute;
    left: 50%;
    top: -33px;
    width: 66px;
    height: 66px;
    margin-left: -33px;
    background: #36E6C2;
    border-radius: 50%;
}

.seminar-content {
    display: flex;
    margin-bottom: 75px;
}

.seminar-content ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.seminar-content li {
    margin-bottom: 30px;
    overflow: hidden;
    width: 303px;
    height: 170px;
    margin-right: 30px;
    border-radius: 4px;
}

.seminar-content li:last-child {
    margin-right: 0;
}

.seminar-content ul img {
    display: block;
    width: 303px;
    height: 170px;
    object-fit: cover;
}

.seminar-block-materials-title {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    text-transform: uppercase;
    color: #6E7D8F;
}

.seminar-block-materials ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.seminar-block-materials li {
    display: flex;
    align-items: center;
    height: 32px;
    margin-bottom: 15px;
    padding-left: 39px;
}

.seminar-block-materials li.pptx {
    background: url('/img/seminar-sprite.png') no-repeat -30px -202px;
}

.seminar-block-materials li.pdf {
    background: url('/img/seminar-sprite.png') no-repeat -30px -110px;
}

.seminar-block-materials ul a {
    font-weight: 300;
    font-size: 18px;
    line-height: 130%;
    color: #323941;
    text-decoration: none;
}

.seminar-block-materials ul a:hover {
    color: #2F58A7;
}

button.btn.btn-secondary.button-prev {
    color: #fff;
}

a.btn.btn-secondary.button-prev {
    color: #fff;
}

.courses-page .alert-success {
    font-size: 22px;
}

.col-9.courses-info-text span {
    font-family: 'Roboto' !important;
}

@media screen and (max-width: 1419px) {
    .slider {
        width: 1346px;
    }

    .slider-item-column {
        padding: 60px 129px 33px 65px;
    }

    .monitoring-img {
        right: -89px;
    }

    .courses img {
        right: -89px;
    }

    .monitoring-column {
        width: 600px;
    }
}
.evgd-test-window {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    text-align: center;
    background: rgba(163, 137, 137, 0.8);
    width: 100%;
    height: 100%;
    padding-top: 10px;
}
.evgd-test-window iframe {
    min-width: 320px;
    min-height: 300px;
    width: 70%;
    height: 95%;
}
.close-test-window {
    position: absolute;
    top: 10px;
    right: 10%;
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}
.close-test-window {
    cursor: pointer;
}
.click-to-show-pptx {
    cursor: pointer;
    font-weight: 300;
    font-size: 18px;
    line-height: 130%;
    color: #323941;
    text-decoration: none;
}
.seminar-program:hover {
    text-decoration: underline;
}
.seminar-program {

}
.seminar-content ul {
    flex-wrap: wrap;
    flex-basis: 83%;
}
.seminar-content li:nth-child(3n) {
    margin-right: 0;
}

.evgd-video-pp {
    display: flex;
    flex-direction: column;
}


/*gallery*/
.ph-library-item {
    position: relative;
}
/* overlay at start */
.mfp-fade.mfp-bg {
    opacity: 0;

    -webkit-transition: all 0.45s ease-out;
    -moz-transition: all 0.45s ease-out;
    transition: all 0.45s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;

    -webkit-transition: all 0.45s ease-out;
    -moz-transition: all 0.45s ease-out;
    transition: all 0.45s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}
/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8; }

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden; }

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box; }

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }

.mfp-align-top .mfp-container:before {
    display: none; }

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto; }

.mfp-ajax-cur {
    cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out; }

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
    cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none; }

.mfp-loading.mfp-figure {
    display: none; }

.mfp-hide {
    display: none !important; }

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044; }
.mfp-preloader a {
    color: #CCC; }
.mfp-preloader a:hover {
    color: #FFF; }

.mfp-s-ready .mfp-preloader {
    display: none; }

.mfp-s-error .mfp-content {
    display: none; }

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation; }

button::-moz-focus-inner {
    padding: 0;
    border: 0; }

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace; }
.mfp-close:hover,
.mfp-close:focus {
    opacity: 1; }
.mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
    color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%; }

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap; }

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent; }
.mfp-arrow:active {
    margin-top: -54px; }
.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1; }
.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
    left: 0; }
.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
    right: 0; }
.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px; }
.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
.mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%; }
.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
    line-height: 0; }
.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
.mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto; }

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px; }

.mfp-image-holder .mfp-content {
    max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    /**
         * Remove all paddings around the image on small screen
         */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0; }
    .mfp-img-mobile img.mfp-img {
        padding: 0; }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0; }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px; }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0; }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px; }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0; } }

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75); }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0; }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%; }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px; }
}
/*-------------------*/
.user-edit-block {
    margin-top: 60px;
}
.seminar-content li:nth-child(3n)
.user-edit-form {
    display: flex;
    flex-direction: column;
    width: 900px;
    margin: 0 auto;
}

.user-edit-form .fieldset {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.user-edit-form .fieldset:nth-child(1) label {
    width: 30%;
}

.user-edit-form .fieldset:nth-child(2) label {
    width: 100%;
}

.user-edit-form .fieldset:nth-child(3) label,
.user-edit-form .fieldset:nth-child(6) label {
    width: 45%;
}

.user-edit-form input[type="text"],
.user-edit-form input[type="email"],
.user-edit-form input[type="password"] {
    width: 100%;
}

.delete-user-btn {
    position: relative;
}

.delete-user-btn:hover::after {
    display: block;
}

.delete-user-btn:after {
    content: "Удалить";
    position: absolute;
    top: -13px;
    left: 25px;
    display: none;
    font-size: 13px;
    width: 75px;
    box-sizing: border-box;
    background: rgb(255, 255, 255);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(187, 187, 187);
    border-image: initial;
    border-radius: 6px;
    padding: 0px 10px;
}

.delete-file-btn {
    position: relative;
}

.delete-file-btn:hover::after {
    display: block;
}


.delete-file-btn:after {
    content: "Удаление файла";
    position: absolute;
    top: -13px;
    left: 25px;
    display: none;
    font-size: 13px;
    width: 150px;
    box-sizing: border-box;
    background: rgb(255, 255, 255);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(187, 187, 187);
    border-image: initial;
    border-radius: 6px;
    padding: 0px 10px;
    font-weight: 700;
    font-family: 'Roboto', 'sans-serif';
}

.reference-info {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.template-download {
    height: 26px;
    padding-left: 40px;
    background: url("/img/exel.png") no-repeat;
    text-decoration: underline;
}

.flex_row {
    display: flex;
}

.notice {
    color: red;
}

.data-updated {
    color: #36B2E6 !important;
}
.list-group .card-header-active {
    text-decoration: underline;
    font-weight: bold;
}
.evgd-card-body-1 {
    padding-right: 0;
    padding-left: 0;
}
.evgd-star-feedback {
    width: 66%;
    color: #ffffff;
}
.invalid-feedback {
    width: 66%;
    color: red;
    margin-bottom: 16px;
    font-size: 14px;
}
.evgd-red-alert {
    color: red;
    padding-left: 15px !important;
}
.evgd-method-user-fio {
    font-size: 1.8rem;
}
.evgd-module-name {
    text-transform: uppercase;
}
.evgd-link-modules {
    color: blue;
    text-decoration: underline;
}
.evgd-color-green {
    color: green;
}
.evgd-color-red {
    color: red;
}
.evgd-progress-container {
    display: flex;
    flex-direction: column;
    padding-top: 55px;
    padding-bottom: 50px;
}
.evgd-module-number {
    color: #36B2E6;
    margin-bottom: 25px;
    font-family: "Roboto", "sans-serif";
    font-style: normal;
    font-weight: bold;
    font-size: 26px;
    line-height: 120%;
}
.evgd-module-items {
    display: flex;
    width: 100%;
    margin-bottom: 30px;
    border-bottom: 1px solid #36B2E6;
    border-top: 1px solid #36B2E6;
    border-radius: 24px;
}
.evgd-module-it {
    display: flex;
    flex-basis: 33.3333333333%;
    align-items: center;
    padding: 15px;
    border-right: 1px solid #36B2E6;
    border-radius: 24px;
}
.evgd-module-it p {
    margin-bottom: 0;
}
.evgd-module-items .evgd-module-it:first-child {
    border-left: 1px solid #36B2E6;
}
.evgd-module-it-name {
    color: #6E7D8F;
    font-family: "Roboto", "sans-serif";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
}
.evgd-module-it-status {
    color: #6E7D8F;
    font-family: "Roboto", "sans-serif";
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 130%;
}
.evgd-module-it-status-img {
    margin-left: auto;
}
.evgd-module-subwork {
    display: flex;
    margin-bottom: 40px;
    align-items: center;
    width: 32%;
}
.evgd-module-subwork p {
    margin-bottom: 0;
}
.evgd-module-it-solo {
    width: 33.33333333333333%;
}
.evgd-module-it-solo .evgd-module-it {
    flex-basis: 100%;
}
.evgd-module-notation {
    font-family: "Roboto", "sans-serif";
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 130%;
    color: #323941;
}
.evgd-mb-10px {
    margin-bottom: 10px;
}
.theme-info a {
    color: blue;
    text-decoration: underline;
}
.theme-info .nav-item {
    text-decoration: none;
}
.e-theme-active {
    color: #36B2E6;
}
.evgd-ws-nw {
    white-space: nowrap;
}
.evgd-mb-20 {
    margin-bottom: 20px;
}
.evgd-monitoring-container {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 25px;
}
.evgd-monitoring-title {
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 32px;
    line-height: 120%;
    color: #6E7D8F;
}
.evgd-monitoring-text {
    font-size: 18px;
    line-height: 120%;
    color: #6E7D8F;
    margin-bottom: 30px;
    margin-top: 25px;
    display: flex;
}
.evgd-monitoring-text img {
    margin-right: 7px;
}
.evgd-monitoring-container p {
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 133.5%;
    color: #061058;
    mix-blend-mode: normal;
    margin-bottom: 11px;
    margin-top: 0;
}
.evgd-monitoring-container .evgd-monitoring-target {
    font-weight: bold;
}
.evgd-monitoring-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
}
.evgd-monitor-link {
    background-color: #FFFFFF;
    border: 2px solid #F0F1F7;
    box-sizing: border-box;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    padding: 38px 29px;
    position: relative;
    flex-basis: 32%;
    text-decoration: none;
}
.evgd-monitor-link:hover {
    box-shadow: -5px 5px 20px 10px #e4e4e4;
    transition: .5s;
}
.evgd-monitoring-link-title {
    display: flex;
    z-index: 2;
}
.evgd-monitoring-link-title img {
    width: 120px;
    height: 120px;
}
.evgd-monitoring-link-title h2 {
    margin-top: 0;
    color: #6E7D8F;
    font-size: 18px;
}
.evgd-monitoring-flag {
    position: absolute;
    top: 0;
    left: 25px;
}
.evgd-monitoring-container p {
    font-weight: 300;
    font-size: 18px;
    line-height: 130%;
    color: #323941;
}
.evgd-monitoring-container p .evgd-targets-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    text-transform: uppercase;
    color: #6E7D8F;
    font-style: normal;
}
.evgd-monitoring-container p img {
    width: 17px;
}
.evgd-monitoring-container .evgd-monitor-targets-text {
    font-size: 11px;
    line-height: 108%;
}
.evgd-fill-the-form {
    padding: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #36b2e6;
    color: #ffffff;
    margin-top: auto;
    width: fit-content;
    border-radius: 4px;
    margin-left: auto;
}
.site-name {
    color: #36B2E6;
    font-size: 14px;
}
.evgd-site-title {
    font-weight: bold;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #36B2E6;
}
.header-row {
    border-bottom: 0;
}
.evgd-site-header-section {
    display: flex;
    width: 100%;
    padding-top: 12px;
}
.evgd-wrapper-head {
    flex-direction: column;
}
.evgd-main-nav {
    width: 100%;
}
.evgd-header {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    background: #FAFCFD;
}
.evgd-form1-title {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 31px;
}
.evgd-form1-tac {
    text-align: center;
    margin-bottom: 11px;
}
.evgd-form1-mb42 {
    margin-bottom: 42px;
}
.evgd-form1-section input:focus {
    outline: none;
}
.evgd-form1-krit-title {
    margin-bottom: 40px;
    margin-top: 55px;
}
.evgd-form1-labels label {
    position: relative;
    margin-bottom: 15px;
    display: block;
}
.evgd-form1-labels label:after {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    height: 100%;
    width: 5px;
    background: #3fa7e0;
}
.evgd-form1-section input[type=radio],
.evgd-form1-section input[type=checkbox] {
    position: relative;
}
.evgd-form1-section input[type=radio]:before {
    content: "\2022";
    position: absolute;
    left: -2px;
    top: 5px;
    color: transparent;
    display: inline-block;
    border: 1px solid #F4865A;
    font-size: 40px;
    line-height: 22px;
    margin: -5px 5px 0 0;
    height: 25px;
    width: 25px;
    text-align: center;
    vertical-align: middle;
    transition: color ease .3s;
    cursor: pointer;
    border-radius: 25px;
    background: white;
}
.evgd-form1-section input[type=radio]:checked:before {
    color: #fff;
    background-color: #F4865A;
}
.evgd-form1-section input[type=checkbox]:before {
    content: "\2713";
    position: absolute;
    left: -2px;
    top: 5px;
    color: transparent;
    display: inline-block;
    border: 1px solid #F4865A;
    font-size: 15px;
    line-height: 22px;
    margin: -5px 5px 0 0;
    height: 25px;
    width: 25px;
    text-align: center;
    vertical-align: middle;
    transition: color ease .3s;
    cursor: pointer;
    background: white;
}
.evgd-form1-section input[type=checkbox]:checked:before {
    color: #fff;
    background-color: #F4865A;
}
.evgd-form1-inputss .my-2 {
    margin-bottom: 7px;
}
.evgd-upyachka-btn {
    background: #4051A4;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.15);
    border-radius: 24px;
    margin-right: 15px;
    opacity: 1;
}
.evgd-form1-labels input[type=number] {
    background: #FAFAFA;
    border: 1px solid #4051A4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 100px;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #4051A4;
    height: 40px !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}
.evgd-form1-labels .evgd-col-12 {
    margin-bottom: 10px;
}
.modal-header span {
    padding-left: 100%;
}
.evgd-instruct-link {
    display: flex;
    text-decoration: none;
}
.evgd-instruct-link img {
    margin-right: 7px;
    zoom: 1.3;
}
.profile-header nav .evgd-courses-admin-menu {
    display: none;
    flex-direction: column;
}
.profile-header nav .evgd-courses-admin-menu li {
    margin-top: 5px;
    padding-right: 0;
}
.profile-header nav .evgd-courses-submenu-show:hover .evgd-courses-admin-menu {
    display: flex;
}
.course-registration-block input[type=text],
.course-registration-block input[type=email] {
    border-radius: 5px;
    box-sizing: border-box;
}
.course-registration-block input[type=text]:focus,
.course-registration-block input[type=email]:focus,
.course-registration-block select:focus {
    outline: none;
}
.course-registration-block select {
    border-radius: 5px !important;
    color: #6E7D8F !important;
}
.course-registration-block {

}
.course-registration-block .col-4 {
    flex-basis: 32%;
}
.course-registration-block label {
    color: #6E7D8F;
    margin-bottom: 3px;
}
.course-registration-block .col-12 {
    margin-bottom: 16px;
}
.evgd-regc-flex .col-6 {
    flex-basis: 49%;
}
.evgd-regc-flex {
    display: flex;
    justify-content: space-between;
}
.course-registration-hint {

}
.evgd-konk .evgd-konk-select {
    height: calc(1.6em + 0.75rem + 2px)!important;
}
.evgd-linknew-addfile {
    background: none!important;
    color: #36B2E6;
    text-decoration: underline;
}
.evgd-form-section-about .form-group .evgd-linknew-addfile {
    background: none!important;
    min-width: 120px;
    padding: 0;
}
.evgd-title-lislabel {
    font-size: 1.1rem;
}
.link-add-file {
    text-decoration: underline;
}
.evgd-flex-block-aic {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}
.evgd-form-sa2 .evgd-btn-clear {
    position: absolute;
    right: 10px;
}
.evgd-fz-11rem {
    font-size: 1.1rem;
}
.evgd-video-link .form-group {
    margin-bottom: 3px;
    margin-left: 10px;
}
.evgd-22 {
    width: 100%;
    margin-right: -5px;
}
.evgd-22 .col-8 {
    min-width: 100%;
    padding-right: 0;
}
.evgd-expert-documents {
    display: flex;
    flex-direction: column;
}
.evgd-expert-documents a {
    margin-bottom: 12px;
    display: flex;
    line-height: 104%;
    align-items: center;
    color: #36B;
}
.evgd-expert-documents a img {
    margin-right: 7px;
    width: 40px;
    height: 40px;
}
.contest-nominations-item {
    width: 32%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
}
.contest-nominations-item:nth-child(2) {
    width: 66%;
}
.nominations-item-title span {
    margin-top: 0;
}
.nominations-item-title {
    flex-direction: row;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    background: url(/img/nomi-left-bg.svg) no-repeat 0 0;
    padding-left: 37px;
    height: auto;
    margin-top: 15px;
    margin-bottom: 55px;
}
.contest-nominations-item:nth-child(1) {
    background: url(../img/school.svg) no-repeat 103% 0;
}
.contest-nominations-item:nth-child(2) {

    background: url(../img/web.svg) no-repeat 103% 0;
}
.contest-nominations-item:nth-child(3) {
    background: url(../img/nomi4.svg) no-repeat 103% 0;
}
.contest-nominations-item:nth-child(4) {
    background: url(../img/ebook.svg) no-repeat 103% 0;
}
.contest-nominations-item:nth-child(5) {
    background: url(../img/book.svg) no-repeat 103% 0;
}
.contest-nominations-item p {
    width: 100%;
    padding: 0 31px 31px 31px;
}
.evgd-new-color-blue {
    background: #36B2E6;
}
.mrtop-20px {
    margin-top: -20px;
}
.evgd-jcfs .evgd-jcfs-in {
    justify-content: flex-start;
}
.totals-konkurs {
    display: flex;
    width: 100%;
    justify-content: center;
}
.totals-konk-container {
    display: flex;
    max-width: 1170px;
    flex-direction: column;
    padding-top: 64px;
    padding-bottom: 134px;
}
.totals-konk-container .totals-title {
    font-style: normal;
    font-weight: bold;
    font-size: 26px;
    line-height: 120%;
    margin-bottom: 24px;
    color: #36B2E6;
}
.totals-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.totals-top-left {
    display: flex;
    flex-direction: column;
    flex-basis: 66%;
}
.totals-top-left p {
    font-weight: 300;
    font-size: 18px;
    line-height: 140%;
    color: #323941;
    margin: 0;

}
.totals-top-left-title {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    margin-top: 28px;
}
.totals-top-left-title img {
    margin-right: 10px;
}
.step-totals-step span {
    color: #36B2E6;
}
.totals-top-right {
    display: flex;
    flex-direction: column;
    flex-basis: 25%;
    align-items: center;
}
.totals-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    color: #36B2E6;
    width: 270px;
    height: 44px;
    border: 2px solid #36B2E6;
    box-sizing: border-box;
    border-radius: 44px;
    cursor: pointer;
    margin-top: auto;
    text-decoration: none;
}
.totals-bottom {
    font-weight: 300;
    font-size: 18px;
    line-height: 140%;
    color: #323941;
    margin-top: 24px;
}
.totals-btn:hover {
    background: #36B2E6;
    color: #ffffff;
}