@font-face {
    font-family: 'Muller';
    font-weight: 300;
    font-style: normal;

    src: url('/assets/fonts/MullerLight.woff') format('woff'),
        url('/assets/fonts/MullerLight.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Muller';
    font-weight: 400;
    font-style: normal;

    src: url('/assets/fonts/MullerRegular.woff') format('woff'),
        url('/assets/fonts/MullerRegular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Muller';
    font-weight: 500;
    font-style: normal;

    src: url('/assets/fonts/MullerMedium.woff') format('woff'),
        url('/assets/fonts/MullerMedium.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Muller';
    font-weight: 700;
    font-style: normal;

    src: url('/assets/fonts/MullerBold.woff') format('woff'),
        url('/assets/fonts/MullerBold.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Fugue';
    font-weight: 400;
    font-style: normal;

    src: url('/assets/fonts/fugueRegular.woff') format('woff'),
        url('/assets/fonts/fugueRegular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Fugue';
    font-weight: 500;
    font-style: normal;

    src: url('/assets/fonts/fugueHeadline.woff') format('woff'),
        url('/assets/fonts/fugueHeadline.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'PTRoubleSans';
    font-weight: normal;
    font-style: normal;

    font-display: swap;
    src: url('/assets/fonts/PTRoubleSans.woff') format('woff'),
        url('/assets/fonts/PTRoubleSans.ttf') format('truetype');
}



* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:before,
*:after {
    box-sizing: border-box;
}

img {
    border: none;
}

textarea {
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active {
    -webkit-border-radius: 0;
    border-radius: 0;
    outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
    appearance: none;
    -moz-outline: none !important;
}

input[type=submit],
button[type=submit],
input[type=reset],
button[type=reset] {
    -webkit-border-radius: 0;

    -webkit-appearance: none;
}

:focus {
    outline: none;
}

:hover,
:active {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}


::-ms-clear {
    display: none;
}



/*---------------
    Main styles
---------------*/
:root {
    --scroll_width: 17px;
    --font_family: 'Montserrat', 'Arial', sans-serif;
    --font_family2: 'Muller', 'Arial', sans-serif;
    --font_family3: 'Fugue', 'Arial', sans-serif;
}



.clear {
    clear: both;
}


.left {
    float: left;
}


.right {
    float: right;
}


html {
    height: 100%;

    background: #fff;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}


body {
    color: #000;
    font: 14px var(--font_family);

    height: 100%;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
    text-decoration-skip: objects;
}

body.lock {
    overflow: hidden;
}


.wrap {
    position: relative;

    display: flex;
    /* overflow: hidden; */
    flex-direction: column;

    min-height: 100%;
}

.wrap.with_cart {
    padding-bottom: 96px;
}


.main {
    flex: 1 0 auto;
}


.cont {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 15px;
}


.compensate-for-scrollbar {
    margin-right: var(--scroll_width) !important;
}


.lozad {
    transition: .5s linear;

    opacity: 0;
}

.lozad.loaded {
    opacity: 1;
}


.flex {
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}


::-webkit-input-placeholder {
    color: rgba(59, 85, 96, .3);
}

:-moz-placeholder {
    color: rgba(59, 85, 96, .3);
}

:-ms-input-placeholder {
    color: rgba(59, 85, 96, .3);
}



.form .label {
    color: #191919;

    margin-bottom: 3px;
}

.form .help {
    font-size: 12px;
    color: #000;
    margin-bottom: 10px;
}

.modal .form .label {
    font-size: 16px;
    line-height: 23px;
}

.form .line_flex {
    margin-left: -19px;
}

.form .line_flex.padding_top {
    padding-top: 5px;
}

.form .line_form {
    margin-bottom: 18px;
}

.personal .form .line_form {
    margin-bottom: 14px;
}

.form .line_form.flex {
    justify-content: space-between;
}

.form .line_form.flex .label {
    width: 100px;
    margin: 5px 0 0;
}

.form .line_form.flex .label.big_label {
    width: 70%;
}

.form .line_form.flex .label.full_label {
    width: 100%;
}

.form .line_flex .line_form {
    width: calc(50% - 19px);
    margin-left: 19px;
}

.form .input {
    color: #3b5260;
    font: 16px var(--font_family);
    display: block;
    width: 100%;
    height: 32px;
    padding: 0 10px 0 20px;
    transition: .2s linear;
    border: 1px solid transparent;
    border-radius: 2px;
    background: #fff;
    /*box-shadow: 0 0 5px rgba(0, 0, 0, .2);*/
    border-bottom: 1px solid #c4c4c4;
}

.form .line_form.flex .field {
    width: calc(100% - 120px);
}

.form .line_form.flex .field.small_field {
    width: calc(30% - 20px);
}

.form .line_form.flex .field.full_field {
    width: 100%;
}

.form textarea {
    color: #3b5260;
    font: 16px/20px var(--font_family);
    display: block;
    width: 100%;
    padding: 0 10px 0 20px;

    resize: none;
    /*  transition: .2s linear; */

    border: none;
    border-radius: 2px;
    background: #fff;
    /*box-shadow: 0 0 5px rgba(0, 0, 0, .2);*/
    border-bottom: 1px solid #c4c4c4;
}

.form .success,
.form .success+.nice-select .current {
    border-color: green;
}

.form .error,
.form .line_form.error input,
.form .line_form.error textarea,
.form .error+.nice-select .current {
    border-bottom-color: red;
}

.error .help-block {
    font-size: 12px;
    color: #f00;
    text-align: right;
    display: block;
    width: 100%;
}

.error.left_label .help-block {
    text-align: left;
}


.form .input:disabled,
.form textarea:disabled,
.form input[type=file]:disabled+label,
.checkbox .label_check input[type=checkbox]:disabled+.check_text,
.radio_payment .label_check input[type=radio]:disabled+.check_text {
    cursor: default;
    pointer-events: none;

    opacity: .7;
}


.form .error_text {
    color: red;
    font-size: 12px;
    line-height: normal;

    margin-top: 4px;
}


.form .submit {
    margin-top: 50px;
}

.form .line_flex+.submit {
    margin-top: 32px;
}

.form .submit_btn.wide {
    width: 100%;
}

.form .required {
    color: #d93025;
}

.form .agree {
    color: #3b5261;
    font-size: 18px;
    line-height: normal;

    margin-top: 34px;
}

.form .agree.marg_none {
    margin: 0;
}

.form .agree a {
    color: #3b5261;

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px solid transparent;
}

.form .agree a:hover {
    border-bottom-color: #3b5261;
}


.form .box_btn {
    justify-content: space-between;
}

.form .box_btn .agree {
    max-width: calc(100% - 221px);
    margin: 0;
}

.form .box_btn .submit {
    width: 201px;
    margin: 0;
}

.form .box_btn .submit_btn {
    width: 100%;
    padding: 0;
}

.box_datepicker {
    position: relative;
}

.form .input.datepicker-here {
    overflow: hidden;

    padding-right: 55px;

    white-space: nowrap;
    text-overflow: ellipsis;

    background: #fff url(/assets/images/front/ic_calendar.svg) calc(100% - 29px) 50% no-repeat;
}


.checkbox input[type=checkbox] {
    display: none;
}

.checkbox .label_check {
    display: inline-block;

    cursor: pointer;
    vertical-align: middle;
}

.checkbox .label_check .check_text {
    position: relative;
    display: block;
    padding-left: 48px;
    margin: 3px 0;
}

.checkbox .label_check .check_text:before {
    position: absolute;
    top: .5px;
    left: 0;

    width: 18px;
    height: 18px;

    content: '';
    transition: .2s linear;

    border-radius: 2px;
    background: #fff;
    border: 1px solid #c4c4c4;
}

.checkbox.agree .label_check .check_text:before {
    top: 50%;

    margin-top: -9px;
}

.checkbox .label_check .check_text:after {
    position: absolute;
    top: .5px;
    left: 0px;

    width: 18px;
    height: 18px;

    content: '';
    transition: .2s linear;

    opacity: 0;
    background: url(/assets/images/front/ic_check.svg) 50% no-repeat;
}

.checkbox.agree .label_check .check_text:after {
    top: 50%;

    margin-top: -11px;
}

.checkbox .label_check input[type=checkbox]:checked+.check_text:after {
    opacity: 1;
}


.radio_payment+.radio_payment {
    margin-top: 5px;
}

.radio_payment input[type=radio] {
    display: none;
}

.radio_payment .label_check {
    display: inline-block;

    cursor: pointer;
    vertical-align: top;
}

.radio_payment .label_check .check_text {

    line-height: normal;
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.radio_payment .label_check .check_text .icon {
    position: relative;
    display: flex;
    width: 18px;
    height: 18px;
    margin-right: 25px;
    /* padding: 10px 30px; */
    border-radius: 50%;
    background: #fff;
    /* box-shadow: 0 0 5px rgb(0 0 0 / 20%); */
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    flex-shrink: 0;
    border: 1px solid #c4c4c4;
}

.radio_payment .label_check .check_text .icon:before {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    content: '';
    transition: .2s linear;
    opacity: 0;
    border-radius: 50%;
    background: #999;
}

.radio_payment .label_check input[type=radio]:checked+.check_text .icon:before {
    opacity: 1;
}

.radio_payment .label_check .check_text .icon img {
    display: block;

    max-width: 100%;
    max-height: 100%;
}


.select_wrap {
    position: relative;
}

.select_wrap select {
    position: absolute;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    opacity: 0;
}

.select_wrap .nice-select {
    position: relative;

    display: block;
}

.select_wrap .nice-select.open {
    z-index: 11;
}

.select_wrap .nice-select .current {
    color: rgba(59, 82, 96, .3);
    font-size: 20px;
    line-height: 53px;

    position: relative;
    z-index: 10;

    display: block;
    overflow: hidden;

    padding: 0 54px 0 44px;

    cursor: pointer;
    transition: .2s linear;
    white-space: nowrap;
    text-overflow: ellipsis;

    border: 1px solid transparent;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

.select_wrap .nice-select.open .current {
    border-radius: 26px 26px 0 0;
}

.select_wrap .nice-select .current:after {
    position: absolute;
    top: 50%;
    right: 8px;

    width: 13px;
    height: 7px;
    margin-top: -3.5px;

    content: '';

    background: url('/assets/images/front/ic_arrow1.svg') 0 0 no-repeat;
}

.select_wrap .nice-select.open .current:after {
    transform: rotate(180deg);
}

.select_wrap .nice-select .list {
    position: absolute;
    z-index: 9;
    top: 100%;
    left: 0;

    visibility: hidden;
    overflow: hidden;

    min-width: 100%;
    padding: 10px 0 20px;

    transition: .2s linear;
    pointer-events: none;

    opacity: 0;
    border-radius: 0 0 26px 26px;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

.select_wrap .nice-select.open .list {
    visibility: visible;

    pointer-events: all;

    opacity: 1;
}

.select_wrap .nice-select .list .scrollbar {
    overflow-y: auto;

    max-height: 250px;
}

.select_wrap .nice-select .list .list_item {
    color: rgba(59, 82, 96, .3);
    font-size: 20px;
    line-height: normal;

    display: flex;

    min-height: 50px;
    padding: 5px 44px;

    cursor: pointer;
    transition: .2s linear;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.select_wrap .nice-select .list .list_item:empty {
    display: none;
}

.select_wrap .nice-select .list .list_item:hover {
    color: var(--color3);
}

.select_wrap .nice-select .list .list_item.selected {
    color: var(--color4);

    background: var(--bg2);
}


.amount {
    width: 90px;

    border: 1px solid #ededed;

    align-items: center;
    align-content: center;
    justify-content: center;
}

.amount button {
    position: relative;

    width: 30px;
    height: 31px;

    cursor: pointer;

    border: none;
    background: none;
}

.amount button:before {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 12px;
    height: 2px;

    content: '';
    transform: translate(-50%, -50%);
    margin-right: -11px;

    background: #c6c6c6;
}

.amount button:after {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 2px;
    height: 12px;

    content: '';
    transform: translate(-50%, -50%);

    background: #c6c6c6;
}

.amount button.minus:after {
    display: none;
}

.amount .input {
    color: #000;
    font-family: var(--font_family);
    font-size: 14px;
    font-weight: 600;

    width: 28px;
    height: 31px;
    /*margin: 0 6px;*/

    text-align: center;

    border: none;
    background: none;
}



.rub {
    font-family: 'PTRoubleSans';
    font-weight: normal !important;
    font-style: normal;
}


.text_block {
    font-weight: 300;
    line-height: 23px;
}

.text_block> :last-child {
    margin-bottom: 0 !important;
}

.text_block h1,
.text_block>.title {
    color: #3b5261;
    font-size: 35px;
    font-weight: 600;
    line-height: 45px;

    margin-bottom: 35px;
}

.text_block h2 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 23px;

    margin-bottom: 20px;

    text-transform: uppercase;
}

.text_block *+h2 {
    margin-top: 25px;
}

.text_block h3 {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;

    margin-bottom: 11px;
}

.text_block *+h3 {
    margin-top: 39px;
}

.text_block p,
.text_block ul,
.text_block ol {
    margin-bottom: 26px;
}

.text_block img {
    display: block;

    max-width: 100%;
    margin-bottom: 26px;
}

.text_block img.left {
    width: calc(50% - 30px);
    margin-right: 30px;
}

.text_block img.right {
    width: calc(50% - 30px);
    margin-left: 30px;
}

.text_block ul li {
    font-size: 14px;
    line-height: 18px;

    position: relative;

    display: block;

    padding-left: 17px;

    list-style-type: none;
}

.text_block ul li+li {
    margin-top: 10px;
}

.text_block ul li b {
    font-weight: 500;
}

.text_block ul li:before {
    position: absolute;
    top: 6px;
    left: 0;

    width: 5px;
    height: 5px;

    content: '';

    border-radius: 50%;
    background: #000;
}

.text_block ol {
    counter-reset: li;
}

.text_block ol li {
    position: relative;

    display: block;

    list-style-type: none;
}

.text_block ol li:before {
    color: var(--color3);
    font-weight: 700;

    display: inline;

    content: counter(li)'.';
    counter-increment: li;
}

.text_block ol li+li {
    margin-top: 8px;
}

.text_block a,
.gray_link a,
.events_next a {
    color: #3b5261;
    transition: .2s linear;
    text-decoration: none;
    border-bottom: 1px solid;
}

.text_block a:hover,
.gray_link a:hover,
.events_next a:hover {
    color: #82145a;
}


.supports_error {
    font-family: 'FuturaPT', 'Arial', sans-serif;
    font-size: 20px;
    line-height: 30px;

    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;
    padding: 20px;

    text-align: center;

    background: #fff;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.supports_error.show {
    display: flex;
}


.main_tabs {
    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.main_tabs button {
    color: rgba(0, 0, 0, .3);
    font: 18px/23px var(--font_family);

    position: relative;

    cursor: pointer;
    transition: .2s linear;
    text-align: center;

    border: none;
    background: none;
}

.main_tabs button+button {
    margin-left: 40px;
}

.main_tabs button:hover {
    color: rgba(0, 0, 0, 1);
}

.main_tabs button.active {
    color: #3b5261;
}


.tab_content {
    position: relative;

    visibility: hidden;
    overflow: hidden;

    height: 0;

    pointer-events: none;

    opacity: 0;
}

.tab_content.active {
    visibility: visible;
    overflow: visible;

    height: auto;

    transition: opacity .5s linear;
    pointer-events: all;

    opacity: 1;
}


.main_title {
    color: #000;
    font-size: 25px;
    font-weight: 600;
    line-height: 149%;

    text-transform: uppercase;
}

.main_title span {
    display: inline-block;

    padding-right: 162px;

    vertical-align: top;
}

.wrap_title {
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

.wrap_title .main_title {
    margin-right: 50px;
}

.wrap_title .link_btn {
    margin: 0;

    flex-shrink: 0;
}

.link_btn a {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;

    position: relative;

    display: inline-block;

    padding-right: 30px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.link_btn a:hover {
    color: #2f384f;
}

.link_btn a:before {
    position: absolute;
    top: 50%;
    right: 0;

    width: 20px;
    height: 20px;
    margin-top: -10px;

    content: '';

    background: url(/assets/images/front/ic_arrow2.svg) 0 0 no-repeat;
}

.link_btn a span {
    position: relative;

    display: inline-block;

    vertical-align: top;
}

.link_btn a span:after {
    position: absolute;
    bottom: -4px;
    left: 0;

    width: 0;
    height: 2px;

    content: '';
    transition: .3s ease-out;
    pointer-events: none;

    background: #2f384f;
}

.link_btn a:hover span:after {
    width: 100%;
}



.subTitle {
    font-size: 14px;
    line-height: 24px;

    margin-top: 16px;
}


.page_content {
    position: relative;
    margin-top: 85px;
}

.head_title {
    flex-wrap: nowrap;

    margin-bottom: 55px;
    align-items: center;
    align-content: center;
}

.page_title {
    color: #000;
    font-size: 25px;
    font-weight: 600;
    line-height: 37px;

    position: relative;

    display: flex;

    margin-bottom: 55px;

    text-transform: uppercase;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
}

.page_title:not(:first-child) {
    margin-top: 55px;
}

.head_title .page_title {
    margin-bottom: 0;
    width: 100%;
}

.page_title span {
    margin-right: 39px;

    background: #fff;

    flex-shrink: 0;
}

.page_title:after {
    position: relative;

    display: inline-block;

    width: 100%;
    height: 1px;

    content: '';
    vertical-align: top;

    opacity: .5;
    background: #c4c4c4;

    flex-shrink: 1;
}

.head_title .link {
    color: #fff;
    font-size: 13px;
    font-weight: 700;

    display: flex;

    height: 57px;
    padding: 2px 33px 0;
    font-family: var(--font_family2);

    transition: .2s linear;
    text-decoration: none;
    letter-spacing: .035em;
    text-transform: uppercase;

    background: linear-gradient(141.07deg, #262e45 0%, rgba(45, 58, 91, .63) 62%, #262e45 100%);
    background-size: 200% auto;

    justify-content: center;
    text-align: center;
    align-items: center;
    align-content: center;
    margin-left: 37px;
    flex-shrink: 0;
}

.head_title .link:hover {
    background-position: 100% 0;
}

.head_title .link .icon {
    width: 20px;
    margin-left: 10px;
    margin-top: -2px;
}

.head_title .link .icon img {
    display: block;

    max-width: 100%;
}


.content_flex {
    margin-top: 52px;

    justify-content: space-between;
}

.content_flex.marg {
    margin-top: 30px;
}

.content_flex .content {
    position: relative;

    width: calc(100% - 304px);
}

.content_flex .content.small {
    max-width: 814px;
}



.owl-carousel .owl-stage {
    white-space: nowrap;
}

.owl-carousel .owl-item {
    display: inline-block;
    float: none;

    vertical-align: top;
    white-space: normal;
}




.page_content .img_absAll1 {
    position: absolute;
    z-index: -1;
    top: 90px;
    left: 50%;

    display: block;

    margin-left: 614px;

    transform: rotate(-17.73deg);
    pointer-events: none;

    opacity: .1;
}

.page_content .img_absAll2 {
    position: absolute;
    z-index: -1;
    top: 200px;
    left: 50%;

    display: block;

    height: 25px;
    margin-left: 280px;

    transform: rotate(27.65deg);
    pointer-events: none;

    opacity: .1;
}

/*---------------
   Header
---------------*/
header .top {
    padding: 5px 0;

    border-bottom: 1px solid #eee;
    background: #f9f9f9;
}

header .top .cont {
    align-items: center;
    align-content: center;
    height: 40px;
}

header .search {
    width: 50px;
    margin-left: auto;

    flex-wrap: nowrap;
}

header .search .submit_btn {
    display: flex;

    width: 60px;
    height: 42px;

    cursor: pointer;

    border: none;
    background: none;

    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .search .submit_btn i {
    display: block;

    width: 17px;
    height: 16px;

    transition: .2s linear;

    background: url(/assets/images/front/ic_search.svg) 50% no-repeat;
}

header .search .submit_btn:hover i {
    transform: scale(1.2);
}

header .search .input {
    color: #000;
    font: 15px var(--font_family);

    width: 100%;
    height: 42px;

    border: none;
    background: none;
}

header .socials {
    margin-left: 50px;

    align-self: center;
    align-content: center;
}

header .socials a {
    display: block;
}

header .socials a+a {
    margin-left: 20px;
}

header .socials img {
    display: block;

    transition: .2s linear;
}

header .socials a:hover img {
    transform: scale(1.2);
}

header .login {
    color: #262e45;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;

    position: relative;

    display: block;

    margin-left: 50px;
    padding-left: 36px;

    text-decoration: none;
}

header .login:before {
    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '';

    background: url(/assets/images/front/ic_user.svg) 0 0 no-repeat;
}

header .info {
    margin-top: -16px;
}

header .logo a,
header .logo img {
    display: block;
    max-width: 100%;
    min-width: 290px;
}

header .menu {
    margin: 37px 0 0 auto;
}

header .menu .item {
    position: relative;
}

header .menu .item+.item {
    margin-left: 5px;
}

header .menu .item>a {
    color: rgba(0, 0, 0, .5);
    font-size: 15px;
    font-weight: 500;
    line-height: 50px;
    display: block;
    padding: 0 8px;
    transition: .2s linear;
    text-decoration: none;
}

header .menu .item:hover>a,
header .menu .item>a.active,
header .menu .item>a.view {
    color: #fff;

    background: #2f384f;
}

header .menu .item .sub_link span {
    position: relative;

    display: inline-block;

    padding-right: 16px;

    vertical-align: top;
}

header .menu .item .sub_link .icon {
    position: absolute;
    top: 50%;
    right: 0;

    display: block;

    width: 8px;
    height: 6px;
    margin-top: -3px;

    transition: .2s linear;

    stroke: rgba(0, 0, 0, .5);
}

header .menu .item:hover .sub_link .icon,
header .menu .item>.sub_link.active .icon,
header .menu .item>.sub_link.sub_link.view .icon {
    stroke: #fff;
}

header .menu .item .sub_menu {
    position: absolute;
    z-index: 99;
    top: 100%;
    left: 0;

    visibility: hidden;

    width: 146px;
    min-width: 100%;

    transition: .2s linear;
    pointer-events: none;

    opacity: 0;
}

header .menu .item:hover .sub_menu {
    visibility: visible;

    pointer-events: all;

    opacity: 1;
}

header .menu .item .sub_menu div {
    margin-top: 5px;
}

header .menu .item .sub_menu a {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;

    display: flex;

    min-height: 50px;
    padding: 3px 16px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;

    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .25);

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .menu .item .sub_menu a:hover {
    color: #fff;

    background: #2f384f;
}


.mob_header {
    display: none;
}

.mob_header .cont {
    align-items: center;
    align-content: center;
}

.mob_header .logo {
    width: 180px;
    margin-right: auto;
}

.mob_header .logo a,
.mob_header .logo img {
    display: block;

    max-width: 100%;
}

.mob_header .socials {
    align-self: center;
    align-content: center;
}

.mob_header .socials a {
    display: block;
}

.mob_header .socials a+a {
    margin-left: 20px;
}

.mob_header .socials img {
    display: block;

    transition: .2s linear;
}

.mob_header .socials a:hover img {
    transform: scale(1.2);
}

.mob_header .login {
    color: #262e45;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;

    position: relative;

    display: block;

    margin-left: 30px;
    padding-left: 36px;

    text-decoration: none;
}

.mob_header .login:before {
    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '';

    background: url(/assets/images/front/ic_user.svg) 0 0 no-repeat;
}

.mob_menu_link {
    display: none;

    width: 40px;
    height: 40px;
    margin-right: -6px;
    margin-left: 30px;
    padding: 11px 6px;

    cursor: pointer;
    transition: .2s linear;

    border: none;
    background: none;
}

.mob_menu_link span {
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    transition: .2s linear;

    border-radius: 50px;
    background: linear-gradient(141.07deg, #262e45 -.73%, rgba(45, 58, 91, .63) 125.28%);
}

.mob_menu_link span+span {
    margin-top: 6px;
}


.close_header {
    position: fixed;
    z-index: 101;
    top: 0;
    left: 270px;

    display: none;

    width: 50px;
    height: 50px;
    padding: 11px;

    cursor: pointer;

    border: none;
    background: none;
}

.close_header span {
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    background: #fff;
}

.close_header span:nth-child(1) {
    top: 1px;

    transform: rotate(45deg);
}

.close_header span:nth-child(2) {
    top: -1px;

    transform: rotate(-45deg);
}

.overlay {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    opacity: .7;
    background: #000;
}

/*---------------
   Main section
---------------*/
.projects {
    margin-top: 70px;
    padding-bottom: 80px;
}

.projects .item .thumb {
    position: relative;

    display: block;
    overflow: hidden;

    width: 100%;
    padding-bottom: 125%;
}

.projects .item .thumb img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    min-width: 10px;
    height: 100%;
    min-height: 10px;

    transition: .2s linear;

    object-fit: cover;
}

.projects .item .thumb:hover img {
    transform: scale(1.2);
}

.projects .item .name {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;

    margin-top: 28px;

    text-transform: uppercase;

    opacity: .9;
}

.projects .item .name a {
    color: #000;

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px solid transparent;
}

.projects .item .name a:hover {
    border-color: currentColor;
}

.projects .slider {
    margin-top: 45px;
}


section.nominations {
    margin-top: 60px;
}

.nominations .bg {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}

.nominations .bg img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    min-width: 10px;
    height: 100%;
    min-height: 10px;

    object-fit: cover;
}

.nominations .bg:after {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';

    opacity: .95;
    background: #eef0f5;
}

.nominations .cont {
    /*  max-width: 1440px;
    padding: 0; */

    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}

.nominations .col {
    /* width: 50%; */
    width: calc(100% + 174px);
    margin: 45px -87px 0;
}

.nominations .col.col_l {
    position: relative;

    width: calc(50% - 6px);

    align-self: stretch;
}

.nominations .info {
    position: relative;
    z-index: 10;

    padding: 86px 98px 65px 127px;
}

.nominations .text_block {
    margin-top: 27px;
}

.nominations .info .block {
    margin-top: 157px;
    padding-left: 10px;

    flex-wrap: nowrap;
}

.nominations .info .block .icon {
    width: 114px;
    margin-right: 53px;

    flex-shrink: 0;
}

.nominations .info .block .icon img {
    display: block;

    max-width: 100%;
}

.nominations .info .block .data .name {
    color: #000;
    font-size: 30px;
    font-weight: 500;

    margin-top: 10px;

    text-transform: uppercase;

    opacity: .8;
}

.nominations .info .block .data .name a {
    color: #000;

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px solid transparent;
}

.nominations .info .block .data .name a:hover {
    border-color: currentColor;
}

.nominations .link_btn {
    margin-top: 35px;
}

.nominations .item {
    position: relative;

    padding: 30px 10px 30px 55px;
}

.nominations .item .data {
    position: relative;
    z-index: 10;
}

.nominations .item .icon {
    height: 103px;
}

/*.nominations .item .icon.icon3 img
{
    margin-left: -10px;

    transform: rotate(-15deg);
}

.nominations .item .icon.icon4 img
{
    margin-left: -25px;

    transform: rotate(161deg);
}

.nominations .item .icon.icon5 img
{
    margin-left: -7px;
}*/

.nominations .item .icon img {
    display: block;

    min-width: 30px;
    max-width: 100%;
    min-height: 30px;
    max-height: 100%;
}

.nominations .item .name {
    color: #000;
    font-size: 22px;
    font-weight: 500;

    margin-top: 10px;

    text-transform: uppercase;

    opacity: .8;
}

.nominations .item .name a {
    color: #000;

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px solid transparent;
}

.nominations .item .name a:hover {
    border-color: currentColor;
}

.nominations .item .link_btn {
    margin-top: 30px;
}

.nominations .grid {
    min-height: calc(100% + 6px);
    margin-bottom: -6px;
    margin-left: -6px;

    --nominations_count: 3;
    align-items: stretch;
    align-content: stretch;
}

.nominations .grid .item {
    width: calc(100% / var(--nominations_count) - 6px);
    min-height: 200px;
    margin-bottom: 6px;
    margin-left: 6px;
}

.nominations.winners .grid .item {
    min-height: 160px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nominations.winners .item .name {
    font-size: 22px;
    margin-top: 0px;
}

.nominations.winners a .name {
    border-bottom: 1px solid transparent;
    transition: all ease .2s;
}

.nominations.winners a:hover .name {
    border-bottom: 1px solid;
}


.nominations_inner {
    margin-top: 90px;
}

.nominations_inner .cont {
    max-width: 1404px;
}

.nominations_inner .items {
    margin-left: -6px;
    align-items: stretch;
    align-content: stretch;

    --nominations_count: 6;
}

.nominations_inner .items .item {
    width: calc(100% / var(--nominations_count) - 6px);
    margin-top: 6px;
    margin-left: 6px;

    padding: 44px 15px 39px 36px;
    display: block;
    position: relative;
    text-decoration: none;

    color: #000;
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
}

.nominations_inner .item .bg {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}

.nominations_inner .item .bg img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    min-width: 10px;
    height: 100%;
    min-height: 10px;

    object-fit: cover;
}

.nominations_inner .item .bg:after {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';

    opacity: .95;
    background: #eef0f5;
}

.nominations_inner .item .data {
    position: relative;
    z-index: 10;
    height: 100%;

    display: flex;
    flex-direction: column;
}

.nominations_inner .item .icon {
    height: 95px;
}

.nominations_inner .item .icon img {
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.nominations_inner .item .name {
    width: 100%;

    margin-top: 30px;

    text-transform: uppercase;

    opacity: .8;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;

    flex: 1 0 auto;
}

.nominations_inner .item:hover .name_text span {
    border-bottom: 1px solid transparent;
    transition: .2s linear;
}

.nominations_inner .item:hover .name_text span {
    border-color: currentColor;
}



.map {
    height: 509px;
    margin-top: 94px;

    filter: grayscale(100%);
}

/*.ymaps-layers-pane {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); / Firefox 3.5+ /
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%); / Chrome 19+ & Safari 6+ /
}*/


.about_columns {
    justify-content: space-between;
}

.about_columns .col_l {
    width: 50%;
    max-width: 581px;
}

.about_columns .col_r {
    width: calc(50% - 30px);
    max-width: 555px;
}

.about_columns .col_r .text_block {
    position: relative;

    padding: 33px 0 56px 33px;

    background: #f9f9f9;
}

.about_columns .col_r .text_block:after {
    position: absolute;
    top: 0;
    left: 100%;

    width: 120px;
    height: 100%;

    content: '';

    background: #f9f9f9;
}


.premium_projects {
    margin-top: 100px;
}

.premium_projects .title,
.stages .title {
    color: #000;
    font-size: 18px;
    font-weight: 600;

    text-transform: uppercase;
}

.premium_projects .cont.big {
    max-width: 1440px;
    padding: 0 15px;
}

.premium_projects .item {
    padding: 33px 33px 40px;

    background: #f2f3f7;
}

.premium_projects .item .inner {
    flex-wrap: nowrap;
}

.premium_projects .grid {
    margin-top: 45px;
    margin-bottom: -5px;
    margin-left: -5px;

    align-items: stretch;
    align-content: stretch;
}

.premium_projects .grid .item {
    width: calc(100% / 3 - 5px);
    margin-bottom: 5px;
    margin-left: 5px;
    position: relative;
    flex-grow: 1;
}

.premium_projects .item:nth-child(1) {
    padding-left: 120px;
}

.premium_projects .item:nth-child(3) {
    padding-right: 120px;
}

.premium_projects .item:nth-child(4) {
    padding-left: 120px;
}

.premium_projects .item:nth-child(6) {
    padding-right: 120px;
}

.premium_projects .item .icon {
    display: flex;

    width: 70px;
    height: 70px;
    margin-right: 20px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.premium_projects .item .icon img {
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.premium_projects .item:nth-child(3) .icon img {
    transform: rotate(-15deg);
}

.premium_projects .item:nth-child(4) .icon img {
    transform: rotate(161deg);
}

.premium_projects .item .name {
    font-size: 20px;
    font-weight: 600;

    text-transform: uppercase;

    opacity: .8;
}

.premium_projects .item .name a {
    color: #000;

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px solid transparent;
}

.premium_projects .item .name a:hover {
    border-bottom-color: #000;
}

.premium_projects .item table {
    margin-top: 15px;

    border-collapse: collapse;
}

.premium_projects .item table tr+tr td {
    padding-top: 5px;
}

.premium_projects .item table td {
    padding-right: 10px;
}

.premium_projects .item table td:last-child {
    padding-right: 0;
}


.about_text {
    margin-top: 90px;
}

.about_text .cont {
    max-width: 1440px;
    padding: 0;
}

.about_text .item {
    padding: 33px 90px 70px;

    background: #f9f9f9;
}

.about_text .item .text_block {
    font-size: 14px;
    line-height: 18px;

    position: relative;

    padding-top: 20px;
}

.about_text .item .text_block:before {
    position: absolute;
    top: 0;
    left: 0;

    width: 300px;
    height: 1px;

    content: '';

    background: #000;
}

.about_text .grid {
    margin-bottom: -5px;
    margin-left: -5px;

    align-items: stretch;
    align-content: stretch;
}

.about_text .grid .item {
    margin-bottom: 5px;
    margin-left: 5px;
    padding: 33px 120px 70px;
}

.about_text .grid .item_l {
    width: calc(50% - 5px);
    padding-right: 90px;
}

.about_text .grid .item_r {
    width: calc(50% - 5px);
    padding-left: 90px;
}


.gallery {
    margin-top: 90px;
}

.gallery .slider {
    margin-top: 45px;
}

.gallery .slide .img {
    position: relative;

    display: block;
    overflow: hidden;

    width: 100%;
    padding-bottom: 132%;
}

.gallery .slide .img+.img {
    margin-top: 22px;
}

.gallery .slide .img img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    min-width: 10px;
    height: 100%;
    min-height: 10px;

    transition: .2s linear;

    object-fit: cover;
}

.gallery .slide .img:hover img {
    transform: scale(1.2);
}


.nominations_grid {
    margin-bottom: -20px;
    margin-left: -20px;

    align-items: stretch;
    align-content: stretch;
    --nominations_grid: 4;
}

.nominations_grid .item {
    position: relative;

    width: calc(100% / var(--nominations_grid) - 20px);
    min-height: 183px;
    margin-bottom: 20px;
    margin-left: 20px;
}

.nominations_grid .item.hide {
    display: none;
}

.nominations_grid .item:hover {
    z-index: 10;
}

.nominations_grid .item .box_inner {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    padding: 8px 19px 22px;
    border: 1px solid #dedede;
    background: linear-gradient(124.95deg, #f3f4f7 40.98%, rgba(255, 255, 255, .67) 97.15%), rgba(239, 242, 249, .95);
}

.nominations_grid .item .box_inner.people {
    border: 1px solid transparent;
    background: #fff;
}

/*.nominations_grid .item:hover .box_inner{
    position: absolute;
    z-index: 10;
    padding-bottom: 80px;
}

.nominations_grid.peoples .box_inner{
    padding-bottom: 80px;
}

*/

.nominations_grid .item:hover .box_inner.board,
.nominations_grid .item:hover .box_inner.people {
    position: relative;
    padding-bottom: 22px;
}


.nominations_grid .item .title {
    color: #c0cbe3;
    font-size: 45px;
    font-weight: 600;
    line-height: 68px;

    text-transform: uppercase;

    opacity: .6;
}

.nominations_grid .item .name {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;

    margin-top: 6px;

    text-transform: uppercase;
}

.nominations_grid .item .text {
    color: #000;
    font-size: 14px;
    line-height: 21px;

    display: none;

    margin-top: 20px;

    opacity: .5;
}

.nominations_grid .item:hover .text {
    display: block;
}

.nominations_grid .item .link_btn {
    margin-top: 17px;
}

.nominations_grid .item:hover .link_btn {
    margin-top: 39px;
}

.nominations_grid .item .link_btn a {
    color: #000;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;

    position: relative;

    display: inline-block;

    max-width: 204px;
    padding-right: 18px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.nominations_grid .item:hover .link_btn a {
    padding-right: 30px;
}

.nominations_grid .item .link_btn a span {
    display: none;
}

.nominations_grid .item:hover .link_btn a span {
    display: inline-block;
}


.more_btn {
    margin-top: 63px;

    text-align: center;
}

.more_btn button,
.more_btn .more_nom {
    color: #000;
    font-family: var(--font_family);
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;

    display: inline-block;

    padding: 0 3px;

    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    letter-spacing: .035em;
    text-transform: uppercase;

    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, .2);
    background: none;
}

.more_btn button:hover,
.more_btn .more_nom:hover {
    border-color: #000;
}


.sect_cart {
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;

    overflow-y: auto;
    overflow-x: hidden;

    width: 100%;
    max-height: 100%;

    background: #fff;
}

.sect_cart .cont {
    max-width: 1414px;
}

.sect_cart .top {
    padding: 20px 0;

    border-top: 1px solid rgba(0, 0, 0, .2);
    position: relative;
}

.sect_cart .top:before {
    content: '';
    position: absolute;
    left: 100%;
    top: -1px;
    width: 5000px;
    height: 1px;
    background: rgba(0, 0, 0, .2);
}

.sect_cart .top:after {
    content: '';
    position: absolute;
    right: 100%;
    top: -1px;
    width: 5000px;
    height: 1px;
    background: rgba(0, 0, 0, .2);
}

.sect_cart .top .grid {
    max-width: 1200px;
    margin: 0 auto;

    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

.sect_cart .top .open_cart_btn {
    margin-right: auto;
}

.sect_cart .top .open_cart_btn button {
    color: #000;
    font-family: var(--font_family);
    font-size: 14px;
    font-weight: 600;

    position: relative;

    padding-left: 53px;

    cursor: pointer;
    letter-spacing: .035em;
    text-transform: uppercase;

    border: none;
    background: none;
}

.sect_cart .top .open_cart_btn button:before {
    position: absolute;
    top: 2px;
    left: 0;

    width: 17px;
    height: 13px;

    content: '';
    transform: rotate(180deg);

    opacity: .6;
    background: url('/assets/images/front/ic_arrow4.svg') 50% 50% no-repeat;
    background-size: contain;
}

.sect_cart .top .open_cart_btn button.active:before {
    top: 3px;

    transform: rotate(0);
}

.sect_cart .top .total {
    color: #000;
    font-size: 20px;
    font-weight: 600;

    margin-left: 60px;
}

.sect_cart .top .link {
    margin-left: 60px;
}

.sect_cart .top .link a,
.submit_btn {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 55px;

    display: flex;

    height: 55px;
    padding: 0 35px;

    transition: .2s linear;
    text-decoration: none;
    letter-spacing: .035em;
    text-transform: uppercase;

    background: linear-gradient(141.07deg, #262e45 0%, rgba(45, 58, 91, .63) 62%, #262e45 100%);
    background-size: 200% auto;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    border: 0;
}

.sect_cart .top .link a:hover,
.submit_btn:hover {
    background-position: 100% 0;
}

.sect_cart .top .link .icon {
    width: 20px;
    margin-left: 10px;
}

.sect_cart .top .link .icon img {
    display: block;

    max-width: 100%;
}

.sect_cart .bottom {
    display: none;

    padding: 43px 0 65px;

    border-top: 1px solid rgba(0, 0, 0, .2);
    position: relative;
}

.sect_cart .bottom:before {
    content: '';
    position: absolute;
    left: 100%;
    top: -1px;
    width: 5000px;
    height: 1px;
    background: rgba(0, 0, 0, .2);
}

.sect_cart .bottom:after {
    content: '';
    position: absolute;
    right: 100%;
    top: -1px;
    width: 5000px;
    height: 1px;
    background: rgba(0, 0, 0, .2);
}

.sect_cart table {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    border-collapse: collapse;
}

.sect_cart table th {
    color: #000;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;

    text-align: left;
    letter-spacing: .035em;
    text-transform: uppercase;

    opacity: .3;
}

.sect_cart table td {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 129.5%;

    padding: 40px 0;
    padding-right: 25px;

    text-transform: uppercase;
}

.sect_cart table td.td_nomination {
    color: rgba(0, 0, 0, .8);
}

.sect_cart table td a {
    color: rgba(0, 0, 0, .8);

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px solid transparent;
}

.sect_cart table td a:hover {
    border-color: currentColor;
}

.sect_cart table tr+tr td {
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.sect_cart table .td_block {
    white-space: nowrap;
}

.sect_cart table .td_price {
    white-space: nowrap;
}

.sect_cart table td:last-child {
    padding-right: 0;
}

.sect_cart table .delete {
    position: relative;

    display: block;

    width: 20px;
    height: 20px;

    transition: .2s linear;

    opacity: .2;
    border: none;
}

.sect_cart table .delete:hover {
    opacity: 1;
}

.sect_cart table .delete:before {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 14px;
    height: 3px;

    content: '';
    transform: translate(-50%, -50%) rotate(45deg);

    background: #000;
}

.sect_cart table .delete:after {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 14px;
    height: 3px;

    content: '';
    transform: translate(-50%, -50%) rotate(-45deg);

    background: #000;
}

.sect_cart table .td_price {
    white-space: nowrap;
}

.sect_cart table .hide {
    display: none;
}




.first_section {
    position: relative;

    margin-top: 42px;
    padding-bottom: 34px;
}

.first_section .img_abs1 {
    position: absolute;
    top: 20px;
    left: 50%;

    display: block;

    margin-left: -70px;

    transform: rotate(-32.27deg);
    pointer-events: none;

    opacity: .1;
}

.first_section .img_abs2 {
    position: absolute;
    top: 50%;
    right: 50%;

    display: block;

    height: 26px;
    margin: -13px 630px 0 0;

    transform: rotate(-150.15deg);
    pointer-events: none;

    opacity: .1;
}

.first_section .img_abs3 {
    position: absolute;
    right: 50%;
    bottom: -60px;

    display: block;

    height: 26px;
    margin-right: 200px;

    transform: rotate(-18.94deg);
    pointer-events: none;

    opacity: .1;
}

.first_section .video_bg {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.first_section .cont {
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}

.first_section .block_l {
    width: 55%;
    padding-top: 53px;
}

.first_section .title {
    color: #000;
    font-size: 32px;
    font-weight: 600;
    line-height: 45px;

    position: relative;

    text-transform: uppercase;
}

.first_section .desc {
    color: #000;
    font-size: 14px;
    line-height: 20px;

    position: relative;

    max-width: 382px;
    margin-top: 36px;
}


.first_section .desc a {
    text-decoration: none;
    color: #000;
    transition: .3s linear;
    border-bottom: 1px solid #fff0;
}

.first_section .desc a:hover {
    border-bottom: 1px solid;
}

.first_section .btns {
    position: relative;

    margin-top: 54px;
}

.first_section .take_part {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 57px;

    display: block;

    padding: 0 30px;

    text-align: center;
    text-decoration: none;
    letter-spacing: .035em;
    text-transform: uppercase;

    background: linear-gradient(141.07deg, #262e45 -.73%, rgba(45, 58, 91, .63) 125.28%);
}

.first_section .take_part:hover {
    background: linear-gradient(141.07deg, rgba(45, 58, 91, .63) -.73%, #262e45 125.28%);
}

.first_section .more {
    color: #000;
    font-size: 13px;
    font-weight: 600;
    line-height: 57px;

    margin-left: 20px;

    text-decoration: none;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.first_section .more span {
    position: relative;

    display: inline-block;

    padding-right: 30px;

    vertical-align: top;
}

.first_section .more span:after {
    position: absolute;
    top: 50%;
    right: 0;

    width: 20px;
    height: 20px;
    margin-top: -10px;

    content: '';

    background: url(/assets/images/front/ic_arrow2.svg) 0 0 no-repeat;
}

.first_section .block_r {
    position: relative;
    position: relative;

    display: flex;

    width: calc(45% - 20px);

    justify-content: flex-end;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: wrap;
}

.first_section .block_r .video-container {
    position: absolute;
    right: 0;
    background-color: #fffa;
    width: 590px;
    height: 390px;
}

.first_section .video {
    position: absolute;
    right: 0;
    bottom: 0;
    /* -34px; */
    width: 100%;
    background: #cfcfcf;
    height: 338px;
}

.first_section .video iframe {
    width: 100%;
    height: 100%;
    position: relative;
}

.first_section .video a {
    position: relative;

    display: block;

    padding-bottom: 57.18%;
}

.btns .anounce {
    display: flex
}

.btns .anounce img {
    width: 70%
}


.first_section .video a img {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.first_section .info {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    position: absolute;
    /* width: 467px; */
    /* margin: 0 40px 0 auto; */
    /* padding-left: 46px; */
    right: 0;
    top: 8px;
}

/*
.first_section .info:after
{
    position: absolute;
    top: 50%;
    left: 0;

    width: 20px;
    height: 20px;
    margin-top: -10px;

    content: '';

    background: url(/assets/images/front/ic_arrow3.svg) 0 0 no-repeat;
}
*/

.first_section .info span {
    color: #696969;

    display: block;
}


.archive {
    position: relative;
    padding-top: 50px;
}

.archive:before {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: calc(100% - 68px);

    content: '';

    background: rgba(0, 26, 91, .03);
}

.archive .img_abs {
    position: absolute;
    right: 50%;
    bottom: -82px;

    display: block;

    margin-right: -580px;

    transform: rotate(-17.73deg);
    pointer-events: none;

    opacity: .1;
}

.archive .cont {
    position: relative;
}

.archive .sector {
    margin-top: 50px;

    justify-content: space-between;
}

.archive_video {
    width: 65.58%;
}

.archive_video .video {
    position: relative;
    /*  padding-bottom: 56.4%; */
}

.video .play_video {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    overflow: hidden;

    width: 100%;
    height: 100%;

    cursor: pointer;
}

.video .play_video img {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.video .play_video:before {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';
    transition: .2s linear;

    opacity: .4;
    background: #000;
}

.video .play_video:hover:before {
    opacity: .2;
}

.video .play_video:after {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';
    transition: .2s linear;

    background: url(/assets/images/front/ic_play.svg) 50% no-repeat;
}

.video .play_video:hover:after {
    transform: scale(1.2);
}

.video video {
    position: absolute;
    top: 0;
    left: 0;

    visibility: hidden;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.video video.show {
    visibility: visible;
}

.archive .block {
    width: calc(34.42% - 40px);
}

.archive .items {
    margin-top: 20px;
}

.archive .items .item {
    position: relative;
}

.archive .items .item+.item {
    margin-top: 24px;
    padding-top: 24px;

    border-top: 1px solid rgba(0, 0, 0, .05);
}

.archive .items .item+.item:before {
    position: absolute;
    top: -1px;
    left: 100%;

    /*  width: 500px; */
    height: 1px;

    content: '';

    background: rgba(0, 0, 0, .05);
}

.archive .items .item a {
    color: rgba(0, 0, 0, .9);
    font-size: 15px;
    line-height: 21px;

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px solid transparent;
}

.archive .items .item a:hover {
    border-bottom-color: rgba(0, 0, 0, .9);
}

.archive .items .item button {
    color: rgba(0, 0, 0, .9);
    font-size: 15px;
    line-height: 21px;
    font-family: var(--font_family);

    border: none;
    cursor: pointer;
    background: none;
    display: block;
    text-align: left;
}

.archive .items .item button span {
    transition: .2s linear;
    border-bottom: 1px solid transparent;
}

.archive .items .item button:hover span {
    border-bottom-color: rgba(0, 0, 0, .9);
}

.archive .link_btn {
    margin-top: 63px;
}

.partners {
    margin-top: 50px;
}

.partners .grid {
    margin-left: -50px;
}

.partners .item {
    color: #000;

    display: block;

    width: calc(20% - 50px);
    margin: 80px 0 0 50px;

    text-decoration: none;
}

.partners .item .img {
    position: relative;

    display: flex;

    height: 77px;
    margin-bottom: 30px;
    padding-right: 10px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.partners .item .img:before {
    position: absolute;
    top: 50%;
    left: 100%;

    width: 1px;
    height: 42px;
    margin-top: -21px;

    content: '';

    background: rgba(0, 0, 0, .05);
}

.partners .item:nth-child(5n) .img:before {
    display: none;
}

.partners .item:last-child .img:before {
    display: none !important;
}

.partners .item .img img {
    display: block;

    max-width: 100%;
    max-height: 100%;

    opacity: .2;

    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    transition: .2s linear;
}

.partners .item:hover .img img {
    opacity: 1;
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
}

.partners .item .name {
    font-size: 13px;
    font-weight: 500;
    line-height: 17px;

    transition: .2s linear;

    border-bottom: 1px solid transparent;
}

.partners .item:hover .name {
    border-bottom-color: #000;
}

.partners_page .grid.flex {
    margin-bottom: 60px;
}

.partners_page h3 {
    width: 100%;
    margin-bottom: 20px;
}

.partners_page .item {
    display: flex;
    width: 150px;
    margin: 0 20px 0 0;
    height: 100px;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.partners_page .item img {
    max-height: 80px;
    max-width: 100%;
}


.news {
    position: relative;
    margin-top: 0px;
}

.news:before {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: calc(100% - 203px);

    content: '';

    background: rgba(0, 26, 91, .03);
}

.news .cont {
    position: relative;
}

.news .slider {
    margin-top: 45px;
}

.news .item {
    color: #000;

    position: relative;

    display: block;

    min-height: 283px;

    transition: .2s linear;
    text-decoration: none;
}

.news .item:hover {
    color: #fff;
}

.news .item .img {
    display: block;

    padding-bottom: 75.82%;
}

.news .item .img img {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.news .item .img:after {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';
    transition: .2s linear;

    border: 1px solid #cfcfcf;
    background: rgba(242, 247, 255, .8);
}

.news .item:hover .img:after {
    background: rgba(0, 0, 0, .5);
}

.news .item .box {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    padding: 70px 26px 24px;
}

.news .item .date {
    font-size: 15px;
    font-weight: 600;
    line-height: 19px;

    display: block;

    margin-bottom: 22px;
}

.news .item .name {
    font-size: 17px;
    font-weight: 600;
    line-height: 27px;

    display: block;
    display: -webkit-box;
    overflow: hidden;

    max-height: 135px;

    text-overflow: ellipsis;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.news .item .name span {
    border-bottom: 1px solid;
}


.winners {
    position: relative;

    padding-top: 70px;
}

.winners:before {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: calc(100% - 163px);

    content: '';

    background: rgba(0, 26, 91, .03);
}

.winners .cont {
    position: relative;
}

.winners .slider {
    width: calc(100% + 174px);
    margin: 45px -87px 0;
    margin-top: 45px;
}

.winners .winner .img {
    position: relative;

    display: block;
    overflow: hidden;

    padding-bottom: 57.93%;
}

.winners .winner .img img {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    transition: .2s linear;

    object-fit: cover;
}

.winners .winner .img:hover img {
    transform: scale(1.2);
}

.winners .winner .bot {
    margin-top: 21px;
    padding: 0 46px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

.winners .winner .like {
    color: rgba(0, 0, 0, .8);
    font-family: var(--font_family3);
    font-size: 20px;
    line-height: 28px;

    position: relative;

    padding-left: 38px;

    flex-shrink: 0;
}

.winners .winner .like:before {
    position: absolute;
    top: 3px;
    left: 0;

    width: 24px;
    height: 22px;

    content: '';

    background: url(/assets/images/front/like.svg) 0 0 no-repeat;
}

.winners .winner .name {
    color: rgba(0, 0, 0, .9);
    font-family: var(--font_family3);
    font-size: 17px;
    line-height: 24px;

    position: relative;

    width: 100%;
    margin-left: 42px;
    padding-right: 54px;

    text-transform: uppercase;
}

.winners .winner .name a {
    color: rgba(0, 0, 0, .9);

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px solid transparent;
}

.winners .winner .name a:hover {
    border-bottom-color: rgba(0, 0, 0, .9);
}

.winners .winner .name:before {
    position: absolute;
    top: 50%;
    right: 0;

    width: 20px;
    height: 20px;
    margin-top: -10px;

    content: '';

    opacity: .3;
    background: url(/assets/images/front/ic_arrow2.svg) 0 0 no-repeat;
}

.winners .winner .name:hover:before {
    opacity: 1;
}

.section_jury {
    position: relative;

    margin-top: 138px;
}

.section_jury.inner {
    margin-top: 59px;
}

.section_jury:before {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: calc(100% - 197px);

    content: '';

    background: rgba(0, 26, 91, .03);
}

.section_jury.inner:before {
    display: none;
}

.section_jury .cont {
    position: relative;
}

.section_jury .slider {
    margin-top: 45px;
}

.section_jury .grid {
    margin-bottom: -40px;
    margin-left: -40px;
}

.section_jury .grid .jury {
    width: calc(25% - 40px);
    margin-bottom: 40px;
    margin-left: 40px;
}

.section_jury .jury .photo {
    position: relative;

    display: block;
    overflow: hidden;

    padding-bottom: 120%;
}

.section_jury .jury .photo img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    transition: .2s linear;

    object-fit: cover;
}

.section_jury .jury .photo:hover img {
    transform: scale(1.2);
}

.section_jury .jury .name {
    color: #000;
    font-family: var(--font_family3);
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;

    min-height: 56px;
    margin-top: 33px;

    text-transform: uppercase;
}

.section_jury .jury .name a {
    color: #000;

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px solid transparent;
}

.section_jury .jury .name a:hover {
    border-bottom-color: #000;
}

.section_jury .jury .position {
    color: rgba(0, 0, 0, .5);
    font-size: 14px;
    line-height: 20px;

    margin-top: 21px;
}


.exhibitions {
    justify-content: space-between;
}

.exhibitions .img {
    width: calc(48% - 30px);
    max-width: 524px;
}

.exhibitions .img img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.exhibitions .data {
    width: 52%;
    max-width: 570px;

    padding-top: 22px;
}

.exhibitions .title {
    font-weight: 600;
    font-size: 21px;
    line-height: 31px;

    letter-spacing: 0.035em;
    text-transform: uppercase;

    color: #000000;
}

.exhibitions .items {
    justify-content: space-between;
    margin-top: 12px;
}

.exhibitions .items .item {
    width: calc(50% - 30px);

    border-top: 1px solid #000000;
    padding-top: 21px;

    margin-top: 45px;
}

.exhibitions .items .item .date {
    font-size: 15px;
    line-height: 22px;

    color: rgba(0, 0, 0, 0.4);
}

.exhibitions .items .item .name {
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;

    color: #000000;
    margin-top: 13px;
}

.exhibitions .items .item .name a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: .2s linear;
}

.exhibitions .items .item .name a:hover {
    border-bottom-color: #000;
}

.exhibitions .items .item .desc {
    font-size: 14px;
    line-height: 26px;

    color: #000000;

    margin-top: 8px;
}

.exhibitions .link_btn {
    margin-top: 57px;
}


.instruction {
    margin-top: 130px;

    position: relative;
}

.instruction:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 195px);
    content: '';
    background: rgba(0, 26, 91, .03);
}

.instruction .cont {
    position: relative;
}

.instruction .slider {
    margin-top: 45px;
}

.instruction .slide .title {
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;

    color: #000000;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;

    margin-top: 30px;
}

.instruction .slide .title span {
    margin-right: 28px;
    flex-shrink: 0;
}

.instruction .slide .title:after {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 1px;
    content: '';
    vertical-align: top;
    opacity: .5;
    background: #c4c4c4;
    flex-shrink: 1;
}

.instruction .slide .video {
    position: relative;

    padding-bottom: 56.4%;
}

.instruction .slide .video .play_video:after {
    background-size: 28px auto;
}


.instruction .slide .desc {
    margin-top: 15px;

    font-size: 14px;
    line-height: 23px;

    color: #000000;
}

.reviews {
    padding-top: 117px;

    position: relative;
}

.reviews:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 104px);
    content: '';
    background: rgba(0, 26, 91, .03);
}

.reviews .cont {
    position: relative;
}

.reviews .slider {
    width: calc(100% + 174px);
    margin: 45px -87px 0;
}

.reviews .slide .video {
    position: relative;

    padding-bottom: 56.4%;
}

.reviews .slide .video .play_video:after {
    background-size: 31px auto;
}

.nomination_info .top {
    margin-bottom: 30px;
}

.nomination_info .wrapp_name {
    align-content: center;
    align-items: center;
    justify-content: space-between;

    width: 270px;
}

.nomination_info .wrapp_name .icon {
    height: 25px;
    width: 25px;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.nomination_info .wrapp_name .icon img {
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.nomination_info .wrapp_name .name {
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;

    text-transform: uppercase;
    margin-left: 15px;
    padding-top: 6px;

    width: calc(100% - 40px);
}

.nomination_info .top .desc {
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    margin-left: 35px;
    width: calc(100% - 305px);
    max-width: 546px;
}


.activity {
    justify-content: space-between;
}

.activity .img {
    position: relative;
    width: calc(40% - 30px);
    max-width: 50%;
}

.activity .img:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    /*  background: rgba(0, 0, 0, .4); */
}

.activity .img img {
    display: block;
    max-width: 100%;
}

.activity .text_block {
    width: calc(60% - 30px);
    max-width: 60%;
}

.activity h3 {
    text-transform: uppercase;
    margin-top: 20px;
}


.photo_video {
    margin-top: 0;
}

.photo_video .slider.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.photo_video .slider.owl-carousel .owl-item:not(.active) .slide {
    opacity: .3;
    pointer-events: none;
    transition: .2s linear;
}

.photo_video .slider {
    margin-top: 47px;
    padding-right: 19px;
}

.photo_video .slide .img {
    display: block;
    position: relative;
    overflow: hidden;
    padding-bottom: 67.15%;
}

.photo_video .slide .img:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    background: #000;
    opacity: .2;
    z-index: 1;
    transition: .2s linear;
}

.photo_video .slide .img:hover:before {
    opacity: 0;
}

.photo_video .slider.owl-carousel .owl-item:not(.active) .slide .img:before {
    opacity: .2;
}

.photo_video .slide .img.video:after {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    transition: .2s linear;
    opacity: .6;
    background: url(/assets/images/front/ic_play.svg) 50% no-repeat;
}

.photo_video .slide .img.video:hover:after {
    opacity: 1;
}

.photo_video .slide .img.video:after {
    background-size: 50px auto;
}

.photo_video .slide .img.video:hover:after {
    transform: scale(1.2);
}

.photo_video .slide .img img {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    transition: .2s linear;
}

.photo_video .slide .img:hover img {
    transform: scale(1.2);
}


.events_next {
    margin-top: 110px;
}

.events_next .top {
    background: #F2F3F7;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.events_next .top .title {
    font-weight: 500;
    line-height: 21px;

    letter-spacing: 0.035em;
    margin-right: 30px;
    margin-bottom: 20px;
}

.events_next .sort {
    align-items: center;
    align-content: center;
    margin-bottom: 20px;
}

.events_next .sort .name {
    font-weight: 500;
    line-height: 21px;

    letter-spacing: 0.035em;
}

.events_next .sort .select_wrap {
    width: 192px;
    margin-left: 15px;
}

.events_next .items+.items {
    margin-top: 60px;
}

.events_next .items .date {
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;

    margin-bottom: 25px;
}

.events_next .items .item {
    padding: 20px 0;
    border-top: 1px solid #000;
}

.events_next .items .item:last-child {
    border-bottom: 1px solid #000;
}

.events_next .item .box {
    width: 200px;
    padding-top: 6px;
}

.events_next .item .box .time {
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 5px;
}

.events_next .item .box .tag {
    font-weight: 300;
    font-size: 12px;
    line-height: 17px;
}

.events_next .item .desc {
    padding: 5px 0 0 20px;
    font-weight: 600;
    font-size: 15px;
    line-height: 21px;
    width: calc(100% - 200px);
}

.events_next .item .wrapp_box {
    width: 268px;
    margin-left: auto;
}

.events_next .item .photo {
    width: 60px;
    height: 60px;

    margin-right: 25px;
}

.events_next .item .photo img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.events_next .item .info {
    width: calc(100% - 85px);
}

.events_next .item .info .name {
    font-weight: 600;
    font-size: 15px;
    line-height: 21px;
}

.events_next .item .info .position {
    line-height: 20px;

    opacity: 0.5;
    margin-top: 5px;
}

.event .events_next {
    margin-top: 0;
    width: calc(100% - 320px);
    margin-left: 50px;
    margin-bottom: 60px;
}

.events_next .top .event_link .title {
    margin: 0;
}

.event_block {
    margin-top: 30px;
}




/*---------------
   Footer
---------------*/
footer {
    margin-top: 140px;
    padding: 68px 0 95px;

    background: url(/assets/images/front/bg_footer.jpg) 50%/cover no-repeat;
}

footer.without_marg {
    margin-top: 0;
}

footer .info {
    justify-content: space-between;
}

footer .logo img {
    display: block;
    max-width: 100%;
    min-width: 200px;
    margin: 0 auto;
}

footer .socials {
    margin-top: 23px;

    justify-content: center;
    align-items: center;
    align-content: center;
}

footer .socials a {
    display: block;
}

footer .socials a+a {
    margin-left: 20px;
}

footer .socials img {
    display: block;

    max-width: 100%;

    transition: .2s linear;
}

footer .socials a:hover img {
    transform: scale(1.2);
}

footer .list {
    margin-top: 49px;

    align-items: center;
    align-content: center;
}

footer .list .sep {
    width: 1px;
    height: 11px;
    margin: 0 18px;

    background: rgba(255, 255, 255, .4);
}

footer .list a {
    color: #fff;
    font-size: 15px;
    line-height: 20px;

    display: block;

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px solid transparent;
}

footer .list a:hover {
    border-bottom-color: #fff;
}

footer .created {
    display: flex;

    margin-top: 28px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

footer .created img {
    display: block;

    max-width: 100%;
}

footer .copy {
    color: rgba(255, 255, 255, .3);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;

    margin-top: 27px;

    text-align: center;
}

/*---------------
   PopUp
---------------*/
.modal {
    position: relative;

    display: none;
    visibility: visible !important;

    width: 1200px;
    max-width: 100%;
    padding: 68px 82px;

    border-radius: 10px;
    background: linear-gradient(132.94deg, #f8f8f8 8.82%, #f3f5f8 75.58%);
}

.modal_title {
    color: #3b5261;
    font-size: 35px;
    font-weight: 600;
    line-height: 45px;

    margin-bottom: 14px;
}


@media (max-width: 1439px) {
    .nominations .col {
        width: 60%;
    }

    .nominations .col.col_l {
        width: calc(40% - 6px);
        padding: 50px 25px 65px 15px;
    }

    .nominations .info {
        max-width: 489px;
        margin-left: auto;
        padding: 0;
    }

    .nominations .info .block {
        margin-top: 60px;
        padding: 0;
    }

    .nominations .info .block .icon {
        margin-right: 30px;
    }

    .nominations .info .block .data .name {
        font-size: 26px;

        margin-top: 20px;
    }

    .nominations .item {
        padding: 25px 35px;
    }

    .nominations .grid .item {
        min-height: 250px;
    }


    .premium_projects .item:nth-child(1) {
        padding-left: 15px;
    }

    .premium_projects .item:nth-child(3) {
        padding-right: 15px;
    }

    .premium_projects .item:nth-child(4) {
        padding-left: 15px;
    }

    .premium_projects .item:nth-child(5) {
        padding-right: 15px;
    }


    .about_text .grid .item {
        padding: 33px 90px 50px;
    }
}


@media (max-width: 1399px) {
    .winners .slider {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }

    .reviews .slider {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }

    .winners .owl-carousel .owl-nav button.owl-prev,
    .reviews .owl-carousel .owl-nav button.owl-prev {
        margin-left: -80px;
    }

    .winners .owl-carousel .owl-nav button.owl-next,
    .reviews .owl-carousel .owl-nav button.owl-next {
        margin-left: -22px;
    }


    .winners .winner .bot {
        padding: 0 10px;
    }


    .nominations_inner .items .item {
        font-size: 15px;
    }
}


@media (max-width: 1300px) {
    .nominations_inner .items .item {
        padding-left: 22px;
    }
}

.text_content {
    margin-top: 45px;
}

.text_content .main_title {
    margin-bottom: 16px;
}

.text_content ul {
    margin-left: 30px;
}

.col80 {
    width: 80%;
}

.col70 {
    width: 70%;
}

.col30 {
    width: 30%;
}

.col20 {
    width: 20%;
}

.gray_link {
    background-color: #f9f9f9;
    padding: 20px;
    position: relative;
    margin-bottom: 20px;
    max-width: 50%;
    margin: 0 auto;
    text-align: center;
}

.gray_link.full:after {
    position: absolute;
    top: 0px;
    left: 100%;
    width: 120px;
    height: 100%;
    content: '';
    background: #f9f9f9;
}

.text_block ol.nice li {
    margin-left: 47px;
}

.text_block ol.nice li:before {
    color: #606060;
    font-weight: 700;
    display: inline;
    content: counter(li);
    counter-increment: li;
    font-size: 40px;
    position: absolute;
    margin-left: -45px;
    top: 9px;
}

.mt45 {
    margin-top: 45px;
}

.mt0 {
    margin-top: 0;
}

.mt20 {
    margin-top: 20px;
}

.mb0 {
    margin-bottom: 0;
}

.mb40 {
    margin-bottom: 40px;
}


table.stages {
    width: 100%;
}

table.stages td {
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e2e2;
    padding-top: 15px;
}

table.stages td:first-child {
    font-size: 20px;
    vertical-align: top;
    padding-right: 50px;
}

.projects.photos {
    margin-top: 90px;
}

.photos .grid.flex {
    margin-top: 30px;
    align-items: center;
    align-content: center;
}

.photos .inner img {
    margin: 30px 30px 0 0;
    display: flex;
    flex-wrap: wrap;
}

.nominations_grid.text_block {
    margin: -20px 0 30px 0;
}

.table200 {
    width: 1200px;
}

.table250 {
    width: 250px;
}

.table200 td {
    width: 200px;
    padding: 5px;
}

.table250 td {
    padding: 5px 5px 5px 0;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

.table_container {
    overflow-x: auto;
}

.nominations_grid .item .descr_btn a {
    color: #000;
    transition: .2s linear;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.nominations_grid .item .descr_btn a:hover {
    border-bottom-color: #000;
}

footer .copy a:hover {
    border-bottom-color: #fff;
}

footer .copy a {
    color: #fff;
    font-size: 12px;
    transition: .2s linear;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.sponsors img {
    width: 250px;
    float: left;
    margin-right: 50px;
}

.cols .item_l,
.cols .item_r {
    width: calc(50% - 5px);
}

.text_block .video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.item_l .video-container {
    margin-right: 50px;
}

.item_r .video-container {
    margin-left: 50px;
}

.text_block .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wrap_title.flex .page_title {
    width: calc(100% - 220px);
}

.link_btn.h1 a {
    top: -30px;
}

.premium_projects.win .item:nth-child() {
    padding-left: unset;
}

.premium_projects.win .item {
    padding: 10px;
    background: #fff;
}

.premium_projects.win .item img {
    width: 100%;
}

.premium_projects.win .grid .item {
    flex-grow: 0;
}

.text_block .col4.grid.flex {
    align-items: stretch;
    align-content: stretch;
}

.text_block .col4.grid .item {
    width: calc(25% - 6px);
    display: flex;
    flex-direction: column;
    margin-right: 6px;
    padding: 30px;
}

.gray_block {
    background-color: #f9f9f9;
}

.strike {
    color: #aaa;
    font-size: 0.95em;
}

.b24-web-form-popup-btn-8,
.btn_add_nomination a {
    color: #fff;
    display: flex;
    height: 35px;
    padding: 2px 33px;
    font-family: var(--font_family2);
    transition: .2s linear;
    text-decoration: none;
    letter-spacing: .035em;
    background: linear-gradient(141.07deg, #262e45 0%, rgba(45, 58, 91, .63) 62%, #262e45 100%);
    background-size: 200% auto;
    justify-content: center;
    text-align: center;
    align-items: center;
    align-content: center;
    /* margin-left: 37px; */
    flex-shrink: 0;
    border: 0;
    cursor: pointer;
}

.btn_add_nomination a {
    width: 236px;
    margin-top: 30px;
}

.header_call_request,
.header_call_language {
    background-color: #5d6479;
    color: #fff;
    padding: 2px 10px;
    font-size: 12px;
    text-decoration: none;
    border-radius: 9px;
    transition: .2s linear;
}

.change_language {
    width: 80px;
    text-align: right;
}

.header_call_language {}

.header_call_request:hover,
.header_call_language:hover {
    /* padding:3px 12px; */
    font-size: 13px;
}

.stage_box.flex {
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    margin-top: 50px;
    position: relative;
}

.stage_box .stage_block {
    width: 128px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
}

.stage_box .stage_block .stage_name {
    height: 44px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.stage_box .stage_block img {
    width: 53px;
    height: 53px;
    margin: 13px auto;
}

.stage_box .stage_line {
    height: 2px;
    width: 1040px;
    background-color: #000;
    position: absolute;
    top: 82px;
}

.people_name {
    font-size: 19px;
    font-weight: 500;
    margin: 10px 0;
}

.people_company {
    font-weight: 500;
}

.people_work {
    font-size: 13px;
}

.item.kookoc_partner:after {
    content: "";
    background: url(/assets/images/front/kokocgroup_digital_partner.svg) no-repeat;
    width: 150px;
    height: 150px;
    position: absolute;
    top: 0;
    right: 0;
    background-size: cover;
}

.margin50_0 {
    margin: 50px 0;
}

/*
.premium_projects .item:nth-child(4n):after {
    content: "";
    background: url(/assets/images/front/kokocgroup_digital_partner.svg) no-repeat;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    right: 0;
    background-size: cover;
}

.nominations_grid.flex .item.kokoc_group:after {
    content: "";
    background: url(/assets/images/front/kokocgroup_co-founder.svg) no-repeat;
    width: 120px;
    height: 120px;
    position: absolute;
    top: 0;
    right: 0;
    background-size: cover;
    z-index:10;
}

*/

.middle_table {
    position: relative;
    left: -119px;
    background-color: #fffc;
    padding: 20px;
    border: 0.5px solid #5d6479;
}

.middle_table table tr td:first-child {
    text-align: left !important;
    padding-left: 0
}

.middle_table td {
    padding: 9px 0;
    font-size: 18px;
}

.middle_table tr td:last-child {
    text-align: right;
    padding-left: 60px;
    color: #5d6479;
}

.middle_table table tr:nth-child(2) {
    font-weight: 800;
}

.middle_table table tr:nth-child(3) {
    font-weight: 600;
}

.middle_table table tr:nth-child(4) {
    font-weight: 500;
}

.middle_table table tr:nth-child(5) td:last-child {
    color: #db013e;
}

.kokoc_group:before {
    content: '';
    background-image: url(/assets/images/front/mts_co-founder.svg);
    position: absolute;
    right: 1px;
    top: 1px;
    z-index: 20;
    width: 120px;
    height: 120px;
    background-size: cover;
}

.winners_table {
    border-collapse: collapse;
    table-layout: fixed;
}

.winners_table th {
    font-size: 12px;
    white-space: nowrap;
}

.winners_table td {
    border-bottom: 1px solid #eee;
    padding: 5px;
    vertical-align: top;
}

.winners_table td:nth-child(2) {
    width: 50%;
    padding-right: 20px;
}

.winners_table td:nth-child(3) {
    padding-right: 20px;
}

.winners_table .xl69 {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 149%;
    background-color: #eee;

}

.winners_table .xl72 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 149%;
    text-transform: uppercase;
    padding-top: 15px;
}

.first_section .right_table {
    display: flex;
    height: 512px;
    width: 220px;
    position: absolute;
    right: 0px;
    flex-direction: column;
    justify-content: space-between;
    top: 50px;
}

.first_section .right_table a {
    display: block;
    float: left;
}

.accordion {
    width: 100%;
}

.accordion .item {
    padding: 20px 0;
    border-bottom: 1px solid #c4c4c4;
    overflow: hidden;
}

.accordion .block_winner.item.active {
    border-color: transparent;
}



.accordion .item .data {
    display: none;
    padding-top: 20px;
}

.accordion.packagers img {
    float: left;
    margin: 0 80px 80px 0;
}

.accordion .open_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all .2s;
}

.accordion .open_btn h4 {
    transition: all .2s;
    font-weight: 500;
    text-transform: uppercase;
}

.accordion .open_btn:hover icon,
.accordion .open_btn:hover h4,
.accordion .item.active icon,
.accordion .item.active h4 {
    color: #5d6479;
    stroke: #5d6479;
}

.accordion .item .fa-minus {
    display: none;
}

.accordion .item.active>div.open_btn>div.fa-minus {
    display: block;
}

.accordion .item.active>div.open_btn>div.fa-plus {
    display: none;
}

.accordion .item.active>.data {
    display: block !important;
}

.accordion .item .icon {
    display: block;
    width: 16px;
    height: 10px;
    margin-top: -3px;
    transition: .2s linear;
    stroke: rgba(0, 0, 0, .5);
    transition: all .2s;
}

.accordion .item .fa-minus .icon {
    transform: rotate(180deg);
}

.nomination_winner.item .flexgrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.nomination_winner.item .data .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 360px);
    justify-content: space-between;
    grid-gap: 20px;
    width: 100%;
}

.nomination_winner.item .main_image {
    height: 186px;
    width: 360px;
    transition: all ease 0.3s;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    position: relative;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    -webkit-filter: unset !important;
    filter: unset !important;
}

.nomination_winner.item .winner_item:hover .main_image {
    box-shadow: #0004 0 0 10px;
}

.nomination_winner.item .winner_item:hover .project_name,
.people_description a {
    color: #2f384f;
}

.nomination_winner.item .main_image img {
    max-width: calc(100% - 60px);
    max-height: calc(100% - 40px);
}

.nomination_winner.item .winner_item {
    cursor: pointer;
    position: relative;
    margin-bottom: 30px;
}

.nomination_winner .medal,
.fancybox-stage .medal {
    padding: 10px;
    display: flex;
    width: fit-content;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.medal5 {
    border: 1px solid #f04e4e;
    background-color: #f04e4edd;
}

.medal4 {
    border: 1px solid #b8860b;
    background-color: #b8860bdd;
}

.medal3 {
    border: 1px solid #c0c0c0;
    background-color: #c0c0c0dd;
}

.medal2 {
    border: 1px solid #ffd700;
    background-color: #ffd700dd;
}

.nomination_winner .project_name {
    margin: 15px 0 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all ease .3s;
}

.nomination_winner .project_details div,
.fancybox-stage .project_details div {
    display: flex;
}

.nomination_winner .project_details div span,
.fancybox-stage .project_details div span {
    width: 275px;
    display: block;
}

.nomination_winner .project_details div span:first-child,
.fancybox-stage .project_details div span:first-child {
    width: 85px !important;
    float: left;
}

.mfp-hide {
    display: none;
}

div.fancybox-content {
    min-height: 101%;
    width: 700px;
}

.winners_block.people_projects_block .item {
    height: unset;
}

.winner_header p {
    margin-top: 20px;
}

.fancybox-stage .medal {
    left: 0;
    text-transform: uppercase;
    font-weight: 600;
}

.winner_header .project_details div span {
    width: calc(100% - 85px);
}

.fancybox-content .video-parent {
    max-width: 520px;
    margin: 0 auto;
}

.people_description br {
    display: block;
    margin: 12px 0;
    line-height: 22px;
    content: " ";
}

.winners_logo.logo {
    max-width: 200px;
}

.filter_block {
    display: flex;
    justify-content: space-between;
    background-color: #efefef;
    padding: 20px;
    flex-wrap: wrap;
}

.filter_item {
    display: flex;
    align-items: center;
}

.select_wrap .filter_block .nice-select.open .current {
    border-radius: unset;
}

.select_wrap .filter_block .nice-select .current {
    color: inherit;
    font-size: 14px;
    line-height: 20px;
    padding: 5px 10px;
    border: 1px solid #c4c4c4;
    border-radius: unset;
    box-shadow: unset;
    width: 300px;
    margin-left: 10px;
}

.select_wrap .filter_block .nice-select .list {
    border-radius: unset;
    margin-left: 10px;
    min-width: unset;
    width: calc(100% - 10px);
}

.select_wrap .filter_block .nice-select .list .list_item {
    color: unset;
    font-size: 14px;
    min-height: unset;
    padding: 5px 10px;
}

.filter_block .submit_btn {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    padding: 10px 35px;
    transition: .2s linear;
    text-decoration: none;
    background: linear-gradient(141.07deg, #262e45 0%, rgba(45, 58, 91, .63) 62%, #262e45 100%);
    background-size: 200% auto;
    align-items: center;
    border: 0;
    cursor: pointer;
    line-height: unset;
    height: unset;
    letter-spacing: unset;
    text-transform: unset;
}

._search-hidden {
    display: none;
}

a.close_accordion {
    display: none;
}

.open_buttons a,
a.clear_filter {
    text-decoration: none;
    color: #000d;
    border-bottom: 1px solid #000d;
    transition: all ease .2s;
}

.open_buttons a:hover,
a.clear_filter:hover {
    color: #000;
    border-color: #000;
}

.not_found {
    margin: 20px;
}

.on_mobile {
    display: none !important;
}

.tprices tr td:first-child {
    text-align: center;
}

.robocassa_logo {
    width: 107px;
    height: 16px;
    display: inline-block;
    vertical-align: sub;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzI5IiBoZWlnaHQ9IjUwIiB2aWV3Qm94PSIwIDAgMzI5IDUwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMCAwVjUwSDUwTDAgMFoiIGZpbGw9IiM1NTc4OEUiLz4KPHBhdGggZD0iTTUwIDBIMFY1MEw1MCAwWiIgZmlsbD0iIzAyM0Q1RSIvPgo8cGF0aCBkPSJNMjMxLjk4IDEwQzIyNC41MiAxMCAyMTcuOTggMTYuMDQgMjE3Ljk4IDIzLjQ5VjQwSDIyMy45OFYzNEgyMzkuOTdWNDBIMjQ1Ljk3VjIzLjVDMjQ1Ljk3IDE2LjA0IDIzOS40MyAxMCAyMzEuOTggMTBaTTIzOS45NyAyOEgyMjMuOThWMjMuNTFDMjIzLjk4IDE5LjM3IDIyNy44NCAxNi4wMSAyMzEuOTggMTYuMDFDMjM2LjEyIDE2LjAxIDIzOS45OCAxOS4zNyAyMzkuOTggMjMuNTFMMjM5Ljk3IDI4WiIgZmlsbD0iI0ZGNTcyMiIvPgo8cGF0aCBkPSJNMzE0Ljk2IDEwQzMwNy41IDEwIDMwMC45NiAxNi4wNCAzMDAuOTYgMjMuNDlWNDBIMzA2Ljk2VjM0SDMyMi45NVY0MEgzMjguOTVWMjMuNUMzMjguOTYgMTYuMDQgMzIyLjQyIDEwIDMxNC45NiAxMFpNMzIyLjk2IDI4SDMwNi45N1YyMy41MUMzMDYuOTcgMTkuMzcgMzEwLjgzIDE2LjAxIDMxNC45NyAxNi4wMUMzMTkuMTEgMTYuMDEgMzIyLjk3IDE5LjM3IDMyMi45NyAyMy41MUwzMjIuOTYgMjhaIiBmaWxsPSIjRkY1NzIyIi8+CjxwYXRoIGQ9Ik0xNzAuOTggMTBDMTYyLjcgMTAgMTU1Ljk4IDE2LjcxIDE1NS45OCAyNUMxNTUuOTggMzMuMjggMTYyLjY5IDQwIDE3MC45OCA0MEMxNzkuMjYgNDAgMTg1Ljk4IDMzLjI5IDE4NS45OCAyNUMxODUuOTkgMTYuNzEgMTc5LjI2IDEwIDE3MC45OCAxMFpNMTcwLjk4IDMzLjk5QzE2Ni4wMiAzMy45OSAxNjEuOTggMjkuOTYgMTYxLjk4IDI0Ljk5QzE2MS45OCAyMC4wMyAxNjYuMDEgMTUuOTkgMTcwLjk4IDE1Ljk5QzE3NS45NCAxNS45OSAxNzkuOTggMjAuMDIgMTc5Ljk4IDI0Ljk5QzE3OS45OCAyOS45NyAxNzUuOTUgMzMuOTkgMTcwLjk4IDMzLjk5WiIgZmlsbD0iIzAyM0Q1RSIvPgo8cGF0aCBkPSJNMTQ5LjYyIDIzLjQxMDJDMTUwLjM2IDIyLjEwMDIgMTUwLjc5IDIwLjYwMDIgMTUwLjc5IDE4Ljk5MDJDMTUwLjc5IDE0LjAzMDIgMTQ2Ljc2IDkuOTkwMjMgMTQxLjc5IDkuOTkwMjNIMTMwVjM5Ljk5MDJIMTQ0LjhDMTQ5Ljc2IDM5Ljk5MDIgMTUzLjggMzUuOTYwMiAxNTMuOCAzMC45OTAyQzE1My43OCAyNy44MTAyIDE1Mi4xMiAyNS4wMjAyIDE0OS42MiAyMy40MTAyWk0xMzUuOTkgMTUuOTkwMkgxNDEuNzlDMTQzLjQ0IDE1Ljk5MDIgMTQ0Ljc5IDE3LjM0MDIgMTQ0Ljc5IDE4Ljk5MDJDMTQ0Ljc5IDIwLjY0MDIgMTQzLjQ0IDIxLjk5MDIgMTQxLjc5IDIxLjk5MDJIMTM1Ljk5VjE1Ljk5MDJaTTE0NC43OCAzMy45OTAySDEzNS45OFYyNy45OTAySDE0NC43OEMxNDYuNDMgMjcuOTkwMiAxNDcuNzggMjkuMzQwMiAxNDcuNzggMzAuOTkwMkMxNDcuNzggMzIuNjMwMiAxNDYuNDMgMzMuOTkwMiAxNDQuNzggMzMuOTkwMloiIGZpbGw9IiMwMjNENUUiLz4KPHBhdGggZD0iTTExMS40OSAxMEMxMDMuMjEgMTAgOTYuNDkwMiAxNi43MSA5Ni40OTAyIDI1Qzk2LjQ5MDIgMzMuMjggMTAzLjIgNDAgMTExLjQ5IDQwQzExOS43OCA0MCAxMjYuNDkgMzMuMjkgMTI2LjQ5IDI1QzEyNi40OSAxNi43MSAxMTkuNzcgMTAgMTExLjQ5IDEwWk0xMTEuNDkgMzMuOTlDMTA2LjUzIDMzLjk5IDEwMi40OSAyOS45NiAxMDIuNDkgMjQuOTlDMTAyLjQ5IDIwLjAzIDEwNi41MiAxNS45OSAxMTEuNDkgMTUuOTlDMTE2LjQ1IDE1Ljk5IDEyMC40OSAyMC4wMiAxMjAuNDkgMjQuOTlDMTIwLjQ5IDI5Ljk3IDExNi40NSAzMy45OSAxMTEuNDkgMzMuOTlaIiBmaWxsPSIjMDIzRDVFIi8+CjxwYXRoIGQ9Ik0yNjQuOTQgMjIuMDZMMjY0Ljk3IDIySDI1Ny45N0MyNTYuMzIgMjIgMjU0Ljk3IDIwLjY1IDI1NC45NyAxOUMyNTQuOTcgMTcuMzUgMjU2LjMyIDE2IDI1Ny45NyAxNkgyNjguOTZMMjcyLjk2IDEwSDI1Ny45NkMyNTMgMTAgMjQ4Ljk2IDE0LjAzIDI0OC45NiAxOUMyNDguOTYgMjMuNjUgMjUyLjQ4IDI3LjQ3IDI1Ni45OSAyNy45NEwyNTYuOTcgMjhIMjYzLjk3QzI2NS42MiAyOCAyNjYuOTcgMjkuMzUgMjY2Ljk3IDMxQzI2Ni45NyAzMi42NSAyNjUuNjIgMzQgMjYzLjk3IDM0SDI1Mi45OEwyNDguOTggNDBIMjYzLjk4QzI2OC45NCA0MCAyNzIuOTggMzUuOTcgMjcyLjk4IDMxQzI3Mi45NyAyNi4zNSAyNjkuNDUgMjIuNTMgMjY0Ljk0IDIyLjA2WiIgZmlsbD0iI0ZGNTcyMiIvPgo8cGF0aCBkPSJNMjgyLjk2IDEwQzI3OCAxMCAyNzMuOTYgMTQuMDMgMjczLjk2IDE5QzI3My45NiAyMy42NSAyNzcuNDggMjcuNDcgMjgxLjk5IDI3Ljk0TDI4MS45NiAyOEgyODguOTZDMjkwLjYxIDI4IDI5MS45NiAyOS4zNSAyOTEuOTYgMzFDMjkxLjk2IDMyLjY1IDI5MC42MSAzNCAyODguOTYgMzRIMjc3Ljk3TDI3My45NyA0MEgyODguOTdDMjkzLjkzIDQwIDI5Ny45NyAzNS45NyAyOTcuOTcgMzFDMjk3Ljk3IDI2LjM1IDI5NC40NSAyMi41MyAyODkuOTQgMjIuMDZMMjg5Ljk3IDIySDI4Mi45N0MyODEuMzIgMjIgMjc5Ljk3IDIwLjY1IDI3OS45NyAxOUMyNzkuOTcgMTcuMzUgMjgxLjMyIDE2IDI4Mi45NyAxNkgyOTMuOTZMMjk3Ljk2IDEwSDI4Mi45NloiIGZpbGw9IiNGRjU3MjIiLz4KPHBhdGggZD0iTTIxNC42NyAxMEwyMDIuNCAyMy4wNkwyMTQuOTcgMzkuOThIMjA3Ljk3TDE5OC40IDI3LjI5TDE5NS45NyAzMC4xOVYzOS45N0gxODkuOTdWMTBIMTk1Ljk3VjIxLjgzTDIwNi44IDEwSDIxNC42N1oiIGZpbGw9IiNGRjU3MjIiLz4KPHBhdGggZD0iTTc2IDQwSDcwVjEwSDg0LjEzQzg2LjY2IDEwIDg4LjgyIDEwLjg2IDkwLjY1IDEyLjU5QzkyLjUxIDE0LjM1IDkzLjk2IDE2LjkzIDk0IDE5LjQ5Qzk0LjAyIDIxLjgxIDkzLjQ3IDIzLjcgOTEuOTkgMjUuNDlDOTAuNTkgMjcuMjIgODkuMTYgMjguNTMgODYuOTkgMjguOTlMOTQuNDkgMzkuOThIODcuNDlMODAuNDQgMjkuNkM4MC4xNiAyOS4yMSA3OS43MSAyOC45OSA3OS4yMyAyOC45OUg3NlY0MFpNNzYgMjMuNDlIODRDODYuMjEgMjMuNDkgODggMjEuNyA4OCAxOS40OUM4OCAxNy4yOCA4Ni4yMSAxNS40OSA4NCAxNS40OUg3NlYyMy40OVoiIGZpbGw9IiMwMjNENUUiLz4KPC9zdmc+Cg==);
    background-size: contain;
}


ol.nice.big li {
    margin: 28px 47px 0;
    font-size: 20px;
    padding-top: 10px;
    line-height: 30px;
}

img.pdf_icon {
    height: 24px;
    margin-right: 10px;
    margin-bottom: 0;
}

.btn_add_nomination.flex a {
    margin: 0 20px 20px 0;
    border: 1px solid transparent;
    border-radius: 6px;
}

.btn_add_nomination.flex a:hover {
    color: #000;
    background: #fff;
    border-color: #000;
}

a.reglament_link.flex {
    border-bottom: 0;
    align-items: center;
}

a.reglament_link.flex span {
    border-bottom: 1px solid;
}

.sp_logo {
    margin-bottom: 20px;
}

.sp_logo img {
    width: 150px;
}

.name_container {
    display: flex;
    align-items: self-start;
    justify-content: space-between;
}

.name_container .sp_logo {
    margin-top: 10px;
    margin-bottom: 0;
}

.on_mobile {
    display: none;
}

.on_desktop {
    display: block;
}

.box_inner.people .title_img img {
    max-height: 300px;
}