html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
}

*,*:before,*:after {-webkit-box-sizing:border-box;box-sizing:border-box; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block; }
ol, ul {list-style: none; }
blockquote, q {quotes: none; }
blockquote:before, blockquote:after, q:before, q:after {content: ''; content: none; }
b, strong {font-weight: bold; }
input {outline: none; }
input:focus,textarea:focus{-webkit-box-shadow:none;box-shadow:none;}
table {border-collapse: collapse; border-spacing: 0; }
img {border: 0; max-width: 100%; vertical-align: top;}
iframe{border:0; }
a {text-decoration: none; 	-webkit-transition:opacity .3s ease-out; -o-transition:opacity .3s ease-out; transition:opacity .3s ease-out; }
a:hover {text-decoration: none; }
*:focus{outline:none}

i,em {
    font-style: italic;
}

html {
	max-width: 100%;
	overflow-x: hidden;
}

body {
	font-family: 'HelveticaNeueCyr', sans-serif;
	font-size:14px;
	font-weight:normal;
	color:#000;
	background:#FFF;
	margin:0 auto;
	padding:0;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	max-width: 100%;
	position: relative;
}

body.no-scroll {
    overflow-y: hidden;
    touch-action: none;
    max-height: 100vh;
}


/***** MAIN *****/


.main {
    position: relative;
    padding: 0 0 18px;
    max-width: 100%;
    overflow: hidden;
}

.main:before {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -200px;
    top: 0;
    width: 1536px;
    height: 100%;
    background: url(../img/bg/main4.png) no-repeat left top;
    z-index: 5;
    background-size: cover;
}

.main .bg {
    content: '';
    background: url(../img/bg/banner-big.jpg) repeat-x left top 160px;
    position: absolute;
    left: 50%;
    top: 0;
    width: 150%;
    height: 100%;
    margin-left: -1170px;
}


/***** HEADER *****/

header {
    padding: 33px 0 25px;
    background: #FFF;
}

header .logo {
    max-width: 130px;
}

header .menu {
    margin: 47px 0 0;
    position: relative;
    z-index: 11;
    max-width: 630px;
}

header .menu ul {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    border-bottom: 4px solid #ECECEC;
}

header .menu ul li {
    float: left;
    margin: 0 51px;
    margin-bottom: 14px;
}

header .menu ul li a {
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 22px;
    font-weight: 900;
    text-transform: uppercase;
    transition: .3s color;
}

header .menu ul li:first-child {
    margin-left: 0;
}

header .menu ul li:last-child {
    margin-right: 0;
}

.main header .menu ul li:nth-child(1) a {
	color: #a3a3a3;
}

header .menu ul li a:hover,
header .menu ul li.active a {
    color: #B58D55 !important;
}

header .open-search {
    width: 25px;
    height: 25px;
    position: absolute;
    right: -155px;
    bottom: 12px;
    background: url(../img/icons/search-black.svg) no-repeat center center;
    cursor: pointer;
    z-index: 35;
}

.main header .open-search {
    background: url(../img/icons/search-white.svg) no-repeat center center;
}

.main header .menu ul li a {
    color: #FFF;
}

.main header .menu ul li a:hover {
	color: #000 !important;
}

.mobile-toggle {
	display: none;
    position: absolute;
    width: 30px;
    height: 19px;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 37;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    margin: 0 0 5px;
    height: 3px;
    background: #000;
    border-radius: 100px;
    position: absolute;
    left: 0;
    top: 0;
    transition: .8s transform, .3s top, .5s opacity;
}

.mobile-toggle span:nth-child(1) {
    transform: rotate(0);
}

.mobile-toggle span:nth-child(2) {
    top: 8px;
}

.mobile-toggle span:nth-child(3) {
    top: 16px;
    transform: rotate(0);
}

.mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

/***** MOBILE MENU *****/


.mobile-menu {
    position: absolute;
    background: #ffffff;
    width: 100%;
    height: 100%;
    right: -100%;
    top: 0;
    -webkit-transition: .7s right;
    -o-transition: .7s right;
    transition: .7s right;
    z-index: 10;
    max-height: 100vh;
}

.mobile-menu .scroll-box {
    padding: 30px 0;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu .menu {
    margin: 120px 0 0;
    text-align: center;
    height: calc(100% - 120px);
    overflow-y: auto;
    position: relative;
    padding: 0;
}

.mobile-menu .form {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #FFF;
    padding: 0 15px 20px;
}

.mobile-menu .menu ul {
    margin: 0 0 30px;
}

.mobile-menu .menu ul li {
    display: block;
    padding: 0 20px;
}

.mobile-menu .menu ul li a {
    display: inline-block;
    vertical-align: top;
    padding: 15px 5px;
    font-size: 18px;
    text-align: center;
    font-weight: 900;
    color: #A3A3A3;
    text-transform: uppercase;
    border-bottom: 4px solid transparent;
}

.mobile-menu .menu ul li.active a {
    color: #141414;
    border-bottom: 4px solid #B68D56;
}

.mobile-menu .menu ul li:last-child {
    border:  none;
}


/***** MAIN BLOCK *****/


.main-block {
    margin: 440px 0 0;
}

.main-block .news-block {
    background: #FFF;
    position: relative;
    padding-left: 64px;
    padding: 34px 64px 26px;
    z-index: 7;
    overflow: hidden;
}

.main-block .news-block.mob {
	display: none;
}

.main-block .news-block > .title {
    height: 64px;
    width: 296px;
    white-space: nowrap;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    -webkit-transform: translate(0, -50%) rotate(-90deg);
        -ms-transform: translate(0, -50%) rotate(-90deg);
            transform: translate(0, -50%) rotate(-90deg);
    font-size: 17px;
    color: #EBE8E2;
    letter-spacing: 0;
    line-height: 68px;
    position: absolute;
    left: -116px;
    top: 50%;
    background-image: -o-linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    background-image: linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
}

.main-block .news-block .news-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.main-block .news-block .news-list .item {
    position: relative;
    margin-right: 16px;
    width: calc(33.3333% - 10.666666px);
    margin-bottom: 8px;
    padding-left: 71px;
}

.main-block .news-block .news-list .item:before {
    content: '';
    position: absolute;
    left: 19px;
    top: 29px;
    background: url(../img/icons/arrow.svg) no-repeat center center;
    width: 22px;
    height: 14px;
}

.main-block .news-block .news-list .item:nth-child(3n) {
    margin-right: 0;
}

.main-block .news-block .news-list .item .date {
    font-size: 14px;
    color: #B58C55;
    line-height: 20px;
    font-style: italic;
    margin: 0 0 4px;
}

.main-block .news-block .news-list .item .title {
    font-size: 18px;
    color: #141414;
    line-height: 1.2;
    margin: 0 0 8px;
    padding-right: 10px;
}

.main-block .news-block .news-list .item .title a {
    font-size: 18px;
    color: #141414;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: .3s border-color;
}

.main-block .news-block .news-list .item .title a:hover {
	border-bottom: 1px solid #141414;
}

.main-block .news-block .news-list .item .tags {
    font-size: 14px;
    color: #B1B1B1;
}

.main-block .news-block .news-list .item .tags li {
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
}

.main-block .news-block .news-list .item .tags a {
    color: #B1B1B1;
}

.main-block .news-block .news-list .item .tags a:before {
	content: '#';
}

.main-block .right-block {
    position: absolute;
    right: 16px;
    bottom: 18px;
    width: 368px;
    z-index: 9;
}

.main-block .right-block > .title {
    font-size: 25px;
    color: #EBE8E2;
    letter-spacing: 0;
    line-height: 62px;
    font-weight: bold;
    margin: 0 0 10px;
}

.main-block .right-block .events-list {
    margin: 0 0 22px;
}

.main-block .right-block .events-list .item {
    position: relative;
}

.main-block .right-block .events-list .item a {
	padding: 11px 16px 11px 116px;
	display: block;
	position: relative;
}

.main-block .right-block .events-list .item .image {
    width: 100px;
    height: 75px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    overflow: hidden;
    transform: translateY(-50%);
}

.main-block .right-block .events-list .item .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.main-block .right-block .events-list .item .title {
    margin: 0 0 14px;
    font-size: 18px;
    color: #EBE8E2;
    letter-spacing: 0;
    line-height: 1;
    font-weight: bold;
    transition: .3s color;
}

.main-block .right-block .events-list .item .text {
    font-size: 14px;
    color: #EBE8E2;
    letter-spacing: 0;
    line-height: 20px;
    transition: .3s color;
}

.main-block .right-block .events-list .item a:hover .title {color: #000;}

.main-block .right-block .events-list .item a:hover .text {color: #000;}

.video-block a {
    color: #FFF;
    display: block;
    position: relative;
    transition: .3s color;
}

.main-block .right-block .video-block a {
    height: 286px;
    max-height: 286px;
}

.video-block a .image {
    height: 100%;
}

.video-block a img {
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
    height: 100%;
    width: 100%;
}

.video-block a:hover {
    color: #D4B355;
}

.video-block .icon {
    position: absolute;
    left: 32px;
    bottom: 32px;
}

.video-block .icon i {
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border: 1px solid #FFF;
    border-radius: 100px;
    text-align: center;
    font-size: 16px;
    padding-left: 2px;
    margin: 0 0 16px;
    transition: .3s border-color;
}

.video-block a:hover .icon i {
    border-color: #D4B355;
}

.video-block .icon span {
    font-size: 18px;
    color: #EBE8E2;
    text-transform: uppercase;
    font-weight: bold;
    transition: .3s color;
}

.video-block a:hover .icon span {
    color: #D4B355;
}


/***** ABOUT *****/


.about {
    padding: 125px 0 130px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.about:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: #EBE8E2;
    margin-left: -570px;
}

.about .bg {
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate3d(0px, 0px, 0px) translateY(-50%) !important;
    width: 854px;
    height: 506px;
    margin-right: -1200px;
}

.about .bg .layer {
    position: absolute;
    left: 0;
    top: 0;
}

.about .bg .layer:nth-child(2) {
    margin: 190px 0 0;
}

.about .bg .layer:nth-child(3) {
    margin: 346px 0 0;
}

.about .photo {
    text-align: right;
    width: 584px;
    float: right;
    max-width: 100%;
}

.about .about-title {
    font-size: 75px;
    color: #EBE8E2;
    letter-spacing: 0;
    line-height: 66px;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0 0 50px -6px;
}

.about .about-text {
    font-size: 14px;
    color: #141414;
    letter-spacing: 0;
    line-height: 22px;
    margin: 0 0 32px;
    max-width: 455px;
}

.about .more {
    display: inline-block;
    vertical-align: top;
}

.about .more a {
    position: relative;
    display: block;
    height: 60px;
    line-height: 60px;
    padding: 0 32px;
    text-transform: uppercase;
    color: #141414;
}

.about .more a span {
	position: relative;
	z-index: 5;
}

.about .more a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-image: -o-linear-gradient(225deg, #B68D56 0%, #B28B51 100%);
    background-image: linear-gradient(225deg, #B68D56 0%, #B28B51 100%);
    transition: .3s width;
}

.about .more a:hover:before {
	width: 100%;
}

.about-links {
    margin: 128px 0 0;
}

.about-links ul {
    display: flex;
    align-items: start;
}

.about-links ul li {
    margin-right: 10px;
    width: 33.3333%;
    display: inline-flex;
}

.about-links ul li a {
    position: relative;
    height: 100%;
    line-height: 22px;
    padding: 6px 32px 4px;
    text-transform: uppercase;
    color: #141414;
}

.about-links ul li a span {
	position: relative;
	z-index: 5;
}

.about-links ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 58px;
    max-height: 100%;
    background-image: -o-linear-gradient(225deg, #B68D56 0%, #B28B51 100%);
    background-image: linear-gradient(225deg, #B68D56 0%, #B28B51 100%);
    transition: .3s width;
}

.about-links ul li a:after {
	content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-image: -o-linear-gradient(225deg, #B68D56 0%, #B28B51 100%);
    background-image: linear-gradient(225deg, #B68D56 0%, #B28B51 100%);
    transition: .3s width;
}

.about-links ul li a:hover:after {
	width: 100%;
}


/***** NEWS *****/


.news {
    position: relative;
    padding: 126px 0 64px;
    background: #ECECEC;
}

.news .bg {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -780px;
    transform: translate3d(0px, 0px, 0px) translateY(-50%) !important;
    width: 854px;
    height: 506px;
}

.news .bg .layer {
    position: absolute;
    left: 0;
    top: 0;
}

.news .bg .layer:nth-child(2) {
    margin: 170px 0 0;
}

.news .bg .layer:nth-child(3) {
    margin: 336px 0 0;
}

.news:before {
    content: '';
    position: absolute;
    right: 50%;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: -o-linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    background-image: linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    margin-right: -180px;
}

.news .section-title {
    margin: 0 0 40px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.news .news-section-block {
    position: relative;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    transition: 1s all;
    opacity: 0;
}

.news .news-section-block:nth-child(1) {
    opacity: 1;
}

.news .news-section-block:nth-child(2) {
    opacity: 1;
}



.news .news-section-block.show {
    opacity: 1;
}

.news .news-section-block .left {
    width: 384px;
}

.news .news-section-block .right {
    width: calc(100% - 384px);
}

.news .news-section-block:nth-child(2n) .left {
    order: 2;
}

.news .news-section-block:nth-child(2n)  .right {
    order: 1;
}

.news .news-section-block.no-lr .left {
    order: 1;
}

.news .news-section-block.no-lr .right {
    order: 2;
}

.news .section-title .title.left {
    font-size: 75px;
    color: #EBE8E2;
    letter-spacing: 0;
    line-height: 62px;
    font-weight: 900;
    float: left;
    margin: 30px 0 0;
}

.news .section-title .title.right {
    float: right;
    font-size: 75px;
    color: #D7B55B;
    letter-spacing: 0;
    line-height: 62px;
    text-transform: uppercase;
    font-weight: 900;
}

.news .news-section-block .item {
    position: relative;
}

.news .news-section-block.last-two .item {
    width: 50%;
}

.news-section-block.last-one .item {
    width: 100%;
}

.news .news-section-block .right .item {
    width: 100%;
    height: 100%;
}

.news .news-section-block .item a {
    display: block;
    position: relative;
    overflow: hidden;
}

.news .news-section-block .item a .image {
    transform: scale(1);
    transition: .3s transform;
    height: 268px;
}

.news .news-section-block.last-one .item a .image {
    height: 368px;
}

.news .news-section-block .item a .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.news .news-section-block .item a:hover .image {
    transform: scale(1.2);
}

.news .news-section-block .item a:after {
    content: '';
    position: absolute;
    right: 35px;
    bottom: 22px;
    width: 22px;
    height: 14px;
    background: url(../img/icons/arrow-white.svg) no-repeat center center;
    z-index: 5;
    transition: .3s background;
}

.news .news-section-block .item a:hover:after {
    background: url(../img/icons/arrow-gold.svg) no-repeat center center;
}

.news .news-section-block .right .item .image {
    max-height: 536px;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.news .news-section-block .right .item .image img {
	width: 100%;
	height: 100%;
}

.news .news-section-block .item .info {
    position: absolute;
    left: 16px;
    bottom: 16px;
    color: #FFF;
    max-width: 240px;
}

.news .news-section-block .right .item .info {
    max-width: 500px;
}

.news .news-section-block .item .info .title {
    display: block;
    font-size: 18px;
    color: #EBE8E2;
    letter-spacing: 0;
    line-height: 1.2;
    font-weight: bold;
    margin: 0 0 5px;
}

.news .news-section-block .item .info .text {
    font-size: 14px;
    color: #EBE8E2;
    letter-spacing: 0;
    line-height: 20px;
}

.news.news-page {
    padding: 70px 0 120px;
    overflow: hidden;
}

.news.news-page:before {
    z-index: 3;
    max-height: 920px;
}

.news.news-page:after {
    content: '';
    position: absolute;
    right: 50%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
    z-index: 2;
    margin-right: 186px;
}

.news.news-page .bg {
    z-index: 5;
    transform: translate3d(0px, 0px, 0px) translateY(0) !important;
    top: 111px;
}


/***** NEWS BANNER *****/


.news-banner {
    position: relative;
    padding: 125px 0;
}


.news-banner .bg {
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate3d(0px, 0px, 0px) translateY(-50%) !important;
    width: 854px;
    height: 506px;
    margin-right: -1200px;
}

.news-banner .bg .layer {
    position: absolute;
    left: 0;
    top: 0;
}

.news-banner .bg .layer:nth-child(2) {
    margin: 190px 0 0;
}

.news-banner .bg .layer:nth-child(3) {
    margin: 346px 0 0;
}

.news-banner .news-banner-img {
    position: absolute;
    right: 50%;
    top: 0;
    margin-right: -180px;
    height: 100%;
}

.news-banner .news-banner-img img {
    max-width: inherit;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
    width: 100%;
}

.news-banner .news-banner-title {
    color: #000;
    font-weight: bold;
    font-size: 75px;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0 0 155px -35px;
}

.news-banner .tags .tags-title {
    font-size: 25px;
    color: #141414;
    letter-spacing: 0;
    line-height: 40px;
    font-weight: 900;
    margin: 0 0 44px;
}

.news-banner .tags ul li {
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    margin-bottom: 20px;
}

.news-banner .tags ul li a {
    position: relative;
    display: block;
    height: 54px;
    line-height: 54px;
    padding: 0 30px;
    text-transform: uppercase;
    color: #141414;
}

.news-banner .tags ul li a span {
	position: relative;
	z-index: 5;
}

.news-banner .tags ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-image: -o-linear-gradient(225deg, #B68D56 0%, #B28B51 100%);
    background-image: linear-gradient(225deg, #B68D56 0%, #B28B51 100%);
    transition: .3s width;
}

.news-banner .tags ul li a:hover:before {
	width: 100%;
}
.news-banner .one-news {
    margin: 267px 0 85px;
}

.news-banner .one-news a {
    display: block;
    position: relative;
}

 .news-banner .one-news a:after {
    content: '';
    position: relative;
    right: 0;
    bottom: 0;
    width: 22px;
    height: 14px;
    background: url(../img/icons/arrow-white.svg) no-repeat center center;
    z-index: 5;
    transition: .3s background;
    display: block;
    margin: 15px 0 0;
}

.news-banner .one-news a:hover:after {
    background: url(../img/icons/arrow-gold.svg) no-repeat center center;
}

.news-banner .one-news a .info {
    position: relative;
    color: #FFF;
    max-width: 370px;
}

.news-banner .one-news a .info .title {
    display: block;
    font-size: 18px;
    color: #EBE8E2;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: bold;
    margin: 0 0 5px;
}

.news-banner .one-news a .info .text {
    font-size: 14px;
    color: #EBE8E2;
    letter-spacing: 0;
    line-height: 20px;
}


/***** NEWS PAGE ITEM *****/


.news-page-one {
    padding: 50px 0 178px;
    position: relative;
    background: #FFF;
}

.news-page-one.no-left {
    padding-bottom: 400px;
}

.news-page-one .bg {
    position: absolute;
    right: 50%;
    top: 190px;
    transform: translate3d(0px, 0px, 0px) translateY(0) !important;
    width: 854px;
    height: 506px;
    margin-right: -1200px;
    z-index: 5;
}

.news-page-one .bg .layer {
    position: absolute;
    left: 0;
    top: 0;
}

.news-page-one .bg .layer:nth-child(2) {
    margin: 190px 0 0;
}

.news-page-one .bg .layer:nth-child(3) {
    margin: 346px 0 0;
}

.back {
    display: inline-block;
    vertical-align: top;
    margin: 0 0 60px;
    position: relative;
    z-index: 5;
}

.back a {
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    padding: 19px 27px;
    line-height: 1;
    color: #141414;
    letter-spacing: 0;
    display: block;
    transition: .3s color;
}

.back a:before {
    content: '\f053';
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #B68D56;
    line-height: 1;
    font-size: 22px;
    margin-top: -2px;
}

.back a:hover {
    color: #b68d55;
}

.news-page-one .news-title {
    font-size: 45px;
    color: #141414;
    letter-spacing: 0;
    line-height: 45px;
    text-transform: none;
    margin: 0 0 60px;
    position: relative;
    z-index: 5;
}

.news-page-one .dop-bg {
    background-image: linear-gradient(163deg, #FFFFFF 0%, #E3E3E3 99%);
}

.news-page-one .dop-bg:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 45%;
    background-image: linear-gradient(163deg, #FFFFFF 0%, #E3E3E3 99%);
    z-index: 3;
    max-height: 700px;
}

.news-page-one .news-image {
    position: relative;
    z-index: 5;
    margin: 0 0 40px;
}

.news-page-one .news-image img {
    width: 100%;
}

.news-page-one .news-info {
    position: relative;
    z-index: 5;
    margin: 0 0 50px;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.news-page-one:before {
    content: '';
    position: absolute;
    right: 50%;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: -o-linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    background-image: linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    margin-right: 570px;
    z-index: 2;
}

.news-page-one .news-text {
    position: relative;
    z-index: 5;
    max-width: 768px;
    margin: 0;
    font-size: 16px;
    line-height: 24px;
}

.news-page-one .news-info ul {
    float: left;
    width: 90%;
}

.news-page-one .news-info .date {
    float: right;
    color: #141414;
}

.news-page-one .news-info ul li {
    float: left;
    margin-right: 5px;
}

.news-page-one .news-info ul li a {
    font-style: italic;
    font-size: 14px;
    color: #B1B1B1;
    letter-spacing: 0;
}

.news-page-one .news-info ul li a:before {
    content: '#';
}


/***** EVENT PAGE *****/


.event-page {
    position: relative;
    padding: 51px 0 135px;
}

.event-page:before {
    content: '';
    position: absolute;
    left: calc(50% + 15px);
    top: 0;
    width: 100%;
    height: 100%;
    background-image: -o-linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    background-image: linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    margin-right: -180px;
}

.event-page .bg {
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate3d(0px, 0px, 0px) translateY(-50%) !important;
    width: 854px;
    height: 506px;
    margin-right: -1200px;
}

.event-page .bg .layer {
    position: absolute;
    left: 0;
    top: 0;
}

.event-page .bg .layer:nth-child(2) {
    margin: 190px 0 0;
}

.event-page .bg .layer:nth-child(3) {
    margin: 346px 0 0;
}

.event-page .photo {
    margin: 82px 0 0;
}

.event-page .event-info .back {
    margin: 0 0 40px;
}

.event-page .event-info .title, .quiz-title__heading {
    color: #141414;
    font-size: 45px;
    line-height: 1;
    font-weight: 900;
    margin: 0 0 30px;
}

.event-page .event-info .text, .quiz-title__description {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 51px;
}

.event-page .event-info .tags-list ul {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin: 0 0 41px;
}

.event-page .event-info .tags-list ul li {
    float: left;
    margin-right: 5px;
}

.event-page .event-info .tags-list li a {
    font-style: italic;
    font-size: 14px;
    color: #B1B1B1;
    letter-spacing: 0;
}

.event-page .event-info .tags-list li a:before {
    content: '#';
}

.event-page .event-info .date {
    position: relative;
    padding-left: 40px;
    color: #141414;
}

.event-page .event-info .date:before {
    content: '\f274';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -6px;
    color: #1B2025;
}

.event-page-items .events-list .last-total {
    background: #ececec;
    position: relative;
    width: 660px;
    padding: 30px 45px 35px 125px;
    overflow: hidden;
    margin-left: 55px;
}

.event-page-items .events-list .last-total .info {
    position: relative;
    padding-left: 30px;
    margin: 0 0 20px;
}

.event-page-items .events-list .last-total .title {
    font-size: 25px;
    color: #141414;
    font-weight: 900;
    line-height: 1.2;
}

.event-page-items .events-list .last-total:before {
    content: '';
    position: absolute;
    left: -152px;
    top: 34%;
    width: 60%;
    text-align: left;
    color: #FFF;
    background: #000;
    transform: rotate(-90deg);
    height: 104px;
    line-height: 104px;
    padding-left: 50px;
    z-index: 5;
    background-image: linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
}

.event-page-items .events-list .last-total .info:before {
    content: '\f129';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    left: 6px;
    top: -5px;
}

.event-text {
    padding: 102px 0;
    background: #FFF;
    position: relative;
}

.event-text:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ECECEC;
    margin-left: 580px;
}

.event-text .news-text {
    max-width: 768px;
    font-size: 16px;
    line-height: 1.4;
}

.event-text .news-text img {
    width: 100% !important;
    height: auto !important;
}


/***** EVENTS PAGE *****/


.event-page-list {
    padding: 55px 0 35px;
    background-image: linear-gradient(163deg, #FFFFFF 0%, #E3E3E3 99%);
}

.event-page-list .events-info {
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.event-page-list .events-info .event-filters {
    float: left;
    width: 483px;
}

.event-page-list .events-info .event-filters .item {
    width: 230px;
    float: left;
    position: relative;
    margin: 0 23px 6px 0;
}

.event-page-list .events-info .event-filters .item:nth-child(2n) {
    margin-right: 0;
}

.event-page-list .events-info .event-filters .item select {
    display: none;
}

.event-page-list .events-info .event-filters .item input {
    width: 100%;
    height: 73px;
    line-height: 73px;
    border: none;
    border-bottom: 2px solid #B68D56;
    background: #FFF;
    padding: 0 50px 0 20px;
    text-transform: uppercase;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-page-list .events-info .event-filters .item button {
    width: 100%;
    padding: 0;
    border: none;
    text-align: center;
    height: 73px;
    line-height: 73px;
    background: #B68D56;
    text-transform: uppercase;
    color: #141414;
    font-size: 16px;
    cursor: pointer;
}

.event-page-list .events-info .event-filters .item i {
    position: absolute;
    right: 20px;
    top: 25px;
    font-size: 18px;
    pointer-events: none;
}

.event-page-list .events-info .event-filters .item .fast-search {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    z-index: 4;
    background: #FFF;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.05);
    display: none;
}

.event-page-list .events-info .event-filters .item .fast-search ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    padding: 14px 15px 12px;
    cursor: pointer;
    line-height: 1;
    transition: .3s background, .3s color;
    color: #141414;
    background: #FFF;
}

.event-page-list .events-info .event-filters .item .fast-search ul li:last-child {
    border: none;
}

.event-page-list .events-info .event-filters .item .fast-search ul li:hover {
    background: #b68d56;
    color: #FFF;
}

.events-map {
    position: relative;
}

.events-map .map-points .point {
    position: absolute;
    font-size: 25px;
    color: #FFF;
    letter-spacing: 0;
    text-align: center;
    font-weight: 900;
    padding-left: 46px;
    pointer-events: none;
    text-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}

.events-map .map-points .point:before {
    content: '';
    width: 48px;
    height: 48px;
    background: url(../img/icons/map-point.svg) no-repeat center center;
    display: block;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.events-map .map-points .point.p1 {
    bottom: 165px;
    left: 75px;
}

.events-map .map-points .point.p2 {
    bottom: 220px;
    left: 100px;
}

.events-map .map-points .point.p3 {
    left: 140px;
    top: 300px;
}

.events-map .map-points .point.p4 {
    left: 240px;
    bottom: 260px;
}

.events-map .map-points .point.p5 {
    left: 430px;
    bottom: 260px;
}

.events-map .map-points .point.p6 {
    left: 280px;
    top: 240px;
}

.events-map .map-points .point.p7 {
    left: 640px;
    bottom: 190px;
}

.events-map .map-points .point.p8 {
    left: 880px;
    top: 310px;
}

.events-title {
    float: right;
    font-size: 70px;
    color: #383434;
    letter-spacing: 0;
    text-align: right;
    line-height: 72px;
    text-transform: uppercase;
    font-weight: 900;
}

.event-page-items {
    position: relative;
}

.event-page-items .bg {
    position: absolute;
    right: 50%;
    top: 245px;
    transform: translate3d(0px, 0px, 0px) !important;
    width: 854px;
    height: 506px;
    margin-right: -1200px;
}

.event-page-items .bg .layer {
    position: absolute;
    left: 0;
    top: 0;
}

.event-page-items .bg .layer:nth-child(2) {
    margin: 190px 0 0;
}

.event-page-items .bg .layer:nth-child(3) {
    margin: 346px 0 0;
}

.event-page-items .events-list {
    padding: 188px 0 50px;
}

.event-page-items .events-list .item {
    padding: 41px 0 0 414px;
    position: relative;
    margin: 0 0 30px;
    min-height: 307px;
}

.event-page-items .events-list .item a {
    max-width: 90%;
    width: 100%;
    display: block;
}

.event-page-items .events-list .item:nth-child(1), .event-page-items .events-list .item:nth-child(4n+1) {
    min-height: 460px;
    padding: 67px 0 0;
    margin: 0 0 100px;
}


.event-page-items .events-list .item .photo {
    position: absolute;
    width: 384px;
    height: 307px;
    left: 0;
    top: 0;
    overflow: hidden;
}

.event-page-items .events-list .item .photo img {
    transform: scale(1);
    transition: .3s transform;
}

.event-page-items .events-list .item a:hover .photo img {
    transform: scale(1.07);
}

.event-page-items .events-list .item:nth-child(1) .photo,
.event-page-items .events-list .item:nth-child(4n+1) .photo{
    right: 0;
    top: 0;
    width: 584px;
    height: 460px;
    overflow: hidden;
    left: inherit;
}

.event-page-items .events-list .item:nth-child(1) .info, 
.event-page-items .events-list .item:nth-child(4n+1) .info {
    width: 385px;
    padding: 0;
}


.event-page-items .events-list .item .info .text {
    line-height: 1.6;
    margin: 0 0 38px;
    max-width: 90%;
    min-height: 88px;
}

.event-page-items .events-list .item .info {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    color: #141414;
    position: relative;
}

.event-page-items .events-list .item .info .title {
    margin: 0 0 16px;
}

.event-page-items .events-list .item .info .title {
    font-size: 25px;
    color: #141414;
    font-weight: 900;
    line-height: 1.2;
    max-width: 90%;
}

.event-page-items .events-list .item .info .title span {
    display: inline;
    border-bottom: 1px solid transparent;
    transition: .3s border-color;
}

.event-page-items .events-list .item a:hover .info .title span {
    border-bottom: 1px solid #141414;
}

.event-page-items .events-list .item .info .datetime {
    margin: 0 0 32px;
}

.event-page-items .events-list .item .info .datetime > div:before {content: '';display: inline-block;vertical-align: middle;font-family: 'Font Awesome 5 Free';font-weight: bold;margin-right: 14px;}

.event-page-items .events-list .item .info .datetime .time:before {
    content: '\f017';
    margin-right: 28px;
}

.event-page-items .events-list .item .info .datetime .date:before {
    content: '\f274';
}

.event-page-items .events-list .item .info .datetime > div {
    display: inline-block;
    vertical-align: top;
    margin-right: 35px;
}

.event-page-items .events-list .item .info .location {
    padding-right: 40px;
    position: relative;
    padding-left: 30px;
    font-size: 14px;
    color: #141414;
    line-height: 20px;
}

.event-page-items .events-list .item .info .location:before {content: '\f3c5';font-family: 'Font Awesome 5 Free';font-weight: bold;position: absolute;left: 0;top: 0;font-size: 20px;}

.event-page-items .events-list .item .info span.more {
    width: 22px;
    height: 14px;
    background: url(../img/icons/arrow.svg) no-repeat center center;
    background-size: contain;
    display: block;
    position: absolute;
    left: 385px;
    bottom: 4px;
    display: none;
}

.event-page-items .events-list .item:nth-child(1) .info span.more,
.event-page-items .events-list .item:nth-child(4n+1) .info span.more {
    display: block;
}

.event-page-items .events-list .item .photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

g#Map > g path, g#Map > g polygon {
    transition: .3s all;
}

g#Map > g:hover path, g#Map > g:hover polygon {
    transform: translate3d(0, -0.2%, 0);
    fill: #d1d1d1;
    opacity: 1;
}

.map-point path {
    fill: #FFF !important;
}

g#Map #region-8 {
    fill-opacity: 0;
}

.event-page-items .events-list .item:nth-child(4n) {
    padding: 335px 55px 53px 55px;
    margin: 80px 0;
}

.event-page-items .events-list .item:nth-child(4n) a {
    max-width: inherit;
}

.event-page-items .events-list .item:nth-child(4n) .photo {
    width: 100%;
    height: 745px;
}

.event-page-items .events-list .item:nth-child(4n) .info {
    position: relative;
    z-index: 5;
    background: #FFF;
    width: 660px;
    padding: 30px 45px 35px 125px;
    overflow: hidden;
    min-height: 330px;
}

.event-page-items .events-list .item:nth-child(4n) .info .datetime .time {
    position: absolute;
    left: -152px;
    top: 34%;
    width: 60%;
    text-align: left;
    color: #FFF;
    background: #000;
    transform: rotate(-90deg);
    height: 104px;
    line-height: 104px;
    padding-left: 50px;
    z-index: 5;
    background-image: linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    font-size: 18px;
}

.event-page-items .events-list .item .info .datetime .time.no-time:before {
    display: none;
}



/***** GALLERY *****/


.gallery {
    position: relative;
    padding: 147px 0 523px;
    -webkit-transition: .3s padding;
    -o-transition: .3s padding;
    transition: .3s padding;
}

.gallery .bg {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -780px;
    z-index: 5;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
    transform: translate3d(0px, 0px, 0px) translateY(-50%) !important;
    width: 854px;
    height: 506px;
}

.gallery .bg .layer {
    position: absolute;
    left: 0;
    top: 0;
}

.gallery .bg .layer:nth-child(2) {
    margin: 190px 0 0;
}

.gallery .bg .layer:nth-child(3) {
    margin: 346px 0 0;
}

.gallery:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: #EBE8E2;
    margin-left: -570px;
    z-index: 3;
}

.gallery .container {
	position: relative;
}

.gallery .gallery-info .title {
    font-size: 75px;
    color: #EBE8E2;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0 0 105px -6px;
    -webkit-transition: .3s margin;
    -o-transition: .3s margin;
    transition: .3s margin;
    max-height: 146px;
}

.gallery .gallery-info .socials .social-title {
    font-size: 22px;
    color: #EBE8E2;
    letter-spacing: 0;
    line-height: 35px;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0 0 28px -2px;
}

.gallery .gallery-info .socials ul {
    padding-left: 41px;
    margin: 0 0 71px;
}

.gallery .gallery-info .socials ul li {
    display: inline-block;
    vertical-align: top;
    margin-right: 11px;
}

.gallery .gallery-info .socials ul li:last-child {
    margin-right: 0;
}

.gallery .gallery-info .socials ul li a {
    display: block;
    width: 46px;
    height: 46px;
    background: transparent;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
}

.gallery .gallery-info .socials ul li a i {
    position: relative;
    width: 46px;
    height: 46px;
    z-index: 5;
    display: block;
}

.gallery .gallery-info .socials ul li.vk a i {
    background-image: url(../img/icons/vk.svg);
}

.gallery .gallery-info .socials ul li.twitter a i {
    background-image: url(../img/icons/twitter.svg);
}

.gallery .gallery-info .socials ul li.youtube a i {
    background-image: url(../img/icons/youtube.svg);
}

.gallery .gallery-info .socials ul li.facebook a i {
    background-image: url(../img/icons/facebook.svg);
}

.gallery .gallery-info .socials ul li a:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: -o-linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    background-image: linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    z-index: 3;
    opacity: 0;
    -webkit-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    border-radius: 100px;
}

.gallery .gallery-info .socials ul li a:hover:after {
    opacity: 1;
}

.gallery .gallery-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 768px;
    position: absolute;
    right: 768px;
    bottom: 0;
    width: 768px;
    -webkit-transition: .3s width, .3s right;
    -o-transition: .3s width, .3s right;
    transition: .3s width, .3s right;
    z-index: 6;
}

.gallery .gallery-bottom .item {
	-webkit-transition: .3s width;
	-o-transition: .3s width;
	transition: .3s width;
	width: 384px;
}

.gallery .gallery-bottom .item img {
	width: 384px;
}

.gallery .gallery-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 0;
    top: 0;
    width: 768px;
    -webkit-transition: .3s width;
    -o-transition: .3s width;
    transition: .3s width;
    z-index: 6;
}

.gallery .gallery-right .item {
	-webkit-transition: .3s width;
	-o-transition: .3s width;
	transition: .3s width;
	width: 384px;
}
.gallery .gallery-right .slick-slide > div {
    display: flex;
}
.gallery .gallery-right .item img {
	width: 384px;
	height: 307px;
}

.gallery .gallery-right .arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    border-radius: 100px;
    z-index: 33;
    background-image: url(../img/icons/arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #FFF;
    cursor: pointer;
    -webkit-transition: .3s background-color;
    -o-transition: .3s background-color;
    transition: .3s background-color;
}

.gallery .gallery-right .arrow:hover {
    background-color: #ebe7e1;
}

.gallery .gallery-right .arrow.prev {
    left: 10px;
    -webkit-transform: translateY(-50%) rotate(180deg);
        -ms-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
}

.gallery .gallery-right .arrow.next {
    right: 10px;
}


/***** PARTNERS *****/


.partners {
    padding: 137px 0;
    background: #ECECEC;
}

.partners .section-title {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin: 0 0 130px;
}

.partners .section-title .title {
    font-size: 68px;
    color: #141414;
    letter-spacing: 0;
    line-height: 71px;
    text-transform: uppercase;
    font-weight: 900;
}

.partners .section-title .title.left {
    float: left;
}

.partners .section-title .link {
    float: right;
    margin-right: 59px;
}

.partners .section-title .link a {
    position: relative;
    display: block;
    height: 60px;
    line-height: 62px;
    padding: 0 32px;
    text-transform: uppercase;
    color: #141414;
}

.partners .section-title .link a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-image: -o-linear-gradient(225deg, #B68D56 0%, #B28B51 100%);
    background-image: linear-gradient(225deg, #B68D56 0%, #B28B51 100%);
    transition: .3s width;
}

.partners .section-title .link a:hover:before {
	width: 100%;
}

.partners .section-title .link a span {
    position: relative;
    z-index: 5;
}

.partners .partners-list {
    margin: 0 !important;
}

.partners .partners-list .item {
    text-align: center;
}

.partners .partners-list .item img {
    margin: 0 auto;
    max-width: 200px;
}


/***** PARTNERS PAGE *****/


.parners-page {
    display: flex;
    width: 100%;
    align-content: stretch;
    align-items: stretch;
}

.parners-page .info {
    width: 40%;
    position: relative;
    background: #ECECEC;
}

.parners-page .info .bg {
    position: absolute;
    top: 337px;
    left: 364px;
    transform: translate3d(0px, 0px, 0px) !important;
    width: 854px;
    height: 506px;
    z-index: 9;
}

.parners-page .info .bg .layer {
    position: absolute;
    left: 0;
    top: 0;
}

.parners-page .info .bg .layer:nth-child(2) {
    margin: 200px 0 0;
}

.parners-page .info .bg .layer:nth-child(3) {
    margin: 366px 0 0;
}

.parners-page .info:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 277px;
    background-image: -o-linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    background-image: linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    z-index: 3;
}

.parners-page .info .partner-title {
    position: relative;
    z-index: 5;
    color: #FFF;
    margin: 140px 0 0;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 75px;
    line-height: 1;
}

.parners-page .partners-list {
    display: flex;
    flex-wrap: wrap;
    width: 60%;
}

.parners-page .partners-list .item {
    width: 33.3333%;
    padding: 63px 50px 63px 109px;
    position: relative;
    z-index: 9;
}

.parners-page .partners-list .item .logo {
    margin: 0 0 20px;
}

.parners-page .partners-list .item .title {
    margin-left: 28px;
    max-width: 150px;
    line-height: 1.4;
    color: #141414;
}





/***** FOOTER *****/


footer {
    padding: 56px 0;
    background: #141414;
    position: relative;
    z-index: 5;
}

footer .info {
    color: #FFF;
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 150px);
    max-width: 782px;
}

footer .info p {
    font-size: 14px;
    color: #EBE8E2;
    line-height: 22px;
    margin: 0 0 20px;
}

footer .info p:last-of-type {
    margin: 0;
}

footer .info p a {
    color: #EBE8E2;
}

footer .info p.dev {
    color: #4E4D4C;
    margin: 0;
}

footer .info p.dev a {
    color: #4E4D4C;
}

footer .logo {
    display: inline-block;
    vertical-align: top;
    width: 106px;
    margin-right: 30px;
}


/***** MODAL *****/


.modal {
    padding: 40px 30px;
    background: #FFF;
    max-width: 1000px;
    border-radius: 10px;
    margin: 20px auto;
}

.modal .modal-title {
    font-size: 40px;
    margin: 0 0 20px;
    font-weight: bold;
}

.modal .modal-content {
    font-size: 16px;
    line-height: 1.4;
}

.modal .modal-content p {
    margin: 0 0 20px;
}

.modal .modal-content ol {
    list-style-type: decimal;
    margin-left: 30px;
    margin-bottom: 20px;
}

.modal .modal-content ol li, .modal .modal-content ul li {
    margin: 0 0 10px;
}

.modal .modal-content h2 {
    font-weight: bold;
    font-size: 26px;
    line-height: 1.2;
    margin: 0 0 10px;
}

.modal .modal-content h3 {
    font-weight: bold;
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 10px;
}

.modal .modal-content h4 {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.2;
    margin: 0 0 10px;
}

.modal .modal-content ul {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.modal .modal-content img {
    display: block;
    margin: 0 auto 20px;
}


/***** SEARCH *****/


.search-page {
    position: relative;
}

.search-page .search-title {
    position: absolute;
    left: 0;
    top: 0;
    position: absolute;
    right: 50%;
    top: 0;
    width: 50%;
    margin-left: -165px;
    text-align: right;
    color: #FFF;
    height: 100%;
    padding: 30px 0 0;
    background: #ECECEC;
    display: inline-block;
    vertical-align: top;
}

.search-page .search-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 280px;
    background-image: -o-linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    background-image: linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    z-index: 3;
}

.search-page .search-title .title {
    text-align: right;
    line-height: 72px;
    text-transform: uppercase;
    font-size: 75px;
    font-weight: 900;
    margin-right: -6px;
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}

.search-page .search-title .form {
    position: relative;
    margin-right: 17px;
    width: 400px;
    float: right;
    z-index: 5;
}

.search-page .search-title .form input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #FFF;
    color: #FFF;
    padding: 16px 30px 16px 0;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0;
}

.search-page .search-title .form input::placeholder {
  color: #f8f8f8;
}
.search-page .search-title .form input::-webkit-input-placeholder {color:#f8f8f8;}
.search-page .search-title .form input::-moz-placeholder {color:#f8f8f8;}
.search-page .search-title .form input:-moz-placeholder {color:#f8f8f8;}
.search-page .search-title .form input:-ms-input-placeholder {color:#f8f8f8;}

.search-page .search-title .form button {
    width: 24px;
    height: 24px;
    border: none;
    position: absolute;
    right: 11px;
    top: calc(50% - 2px);
    transform: translateY(-50%);
    background: url(../img/icons/search-white.svg) no-repeat center center;
    background-size: contain;
    cursor: pointer;
}

.search-page .search-items {
    padding-left: 415px;
    margin: 0 0 155px;
}

.search-page .search-items .item {
    background: #F7F7F7;
    margin: 0 0 4px;
    
    position: relative;
}

.search-page .search-items .item a {
    display: block;
    padding: 26px 24px 60px 14px;
}

.search-page .search-items .item .meta {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin: 0 0 14px;
}

.search-page .search-items .item .meta .cat {
    border-left: 3px solid #B68D56;
    padding-left: 5px;
    color: #141414;
    font-weight: 500;
    line-height: 1;
    padding: 4px 0 1px 15px;
    display: block;
    float: left;
    line-height: 1;
}

.search-page .search-items .item .meta .date {
    float: right;
    line-height: 19px;
    color: #141414;
    font-size: 14px;
    font-weight: 500;
}

.search-page .search-items .item .meta .date:before {
    content: '\f274';
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
    margin-right: 14px;
    font-size: 18px;
}

.search-page .search-items .item .title {
    font-weight: 900;
    font-size: 25px;
    color: #141414;
    line-height: 33px;
    margin: 0 0 30px;
    display: inline;
    transition: .3s border-bottom;
    border-bottom: 1px solid transparent;
}

.search-page .search-items .item a:hover .title {
    border-bottom: 1px solid #141414;
}

.search-page .search-items .item .text {
    width: 430px;
    font-family: Helvetica;
    font-size: 14px;
    color: #141414;
    letter-spacing: 0;
    line-height: 20px;
    max-width: 100%;
}

.search-page .search-items .item .more {
    position: absolute;
    right: 23px;
    bottom: 23px;
    width: 22px;
    height: 14px;
    background: url(../img/icons/arrow.svg) no-repeat center center;
    background-size: contain;
    display: block;
    transition: .3s background;
}

.search-page .search-items .item a:hover .more {
    background: url(../img/icons/arrow-gold.svg) no-repeat center center;
}

.search-page.links {
    overflow: hidden;
}

.search-page.links .search-title .title {
    margin-bottom: 0;
    padding: 45px 0;
}

.search-page .bg {
    position: absolute;
    right: -60%;
    top: 360px;
    transform: translate3d(0px, 0px, 0px) !important;
    width: 854px;
    height: 506px;
    z-index: 7;
    text-align: left;
}

.search-page .bg .layer {
    position: absolute;
    left: 0;
    top: 0;
}

.search-page .bg .layer:nth-child(2) {
    margin: 190px 0 0;
}

.search-page .bg .layer:nth-child(3) {
    margin: 346px 0 0;
}

.search-page.links .search-items {
    padding: 63px 0;
    width: 56.5%;
    left: 50%;
    margin-left: -140px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    z-index: 7;
}

.search-page.links .search-items .item {
    width: calc(33.3333% - 16px);
    margin-bottom: 24px;
    margin-right: 24px;
}

.search-page.links .search-items .item:nth-child(3n) {
    margin-right: 0;
}

.search-page.links .search-items .item .title {
    font-size: 24px;
    margin: 0 0 8px;
}

.search-page.links .search-items .item .link {
    position: absolute;
    left: 16px;
    bottom: 23px;
    color: #141414;
    border-bottom: 1px solid #141414;
}

.search-modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 555;
    background: #FFF;
    background-image: linear-gradient(135deg, #FFFFFF 0%, #E9E9E9 35%, #FFFFFF 43%, #EFEFEF 52%, #F7F7F7 100%);
    padding: 50px 0 30px;
}

.search-modal .container {
    height: 100%;
}

.search-modal .search-block {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin: 0 0 50px;
}

.search-modal .search-block .title {
    float: left;
    font-size: 75px;
    color: #141414;
    line-height: 1;
    font-weight: 900;
}

.search-modal .search-block .close {
    float: right;
    width: 24px;
    height: 24px;
    background: #141414;
    border-radius: 3px;
    position: relative;
    margin: 10px 0 0;
    cursor: pointer;
}

.search-modal .search-block .close span {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 3px;
    width: 15px;
    background: #FFF;
    display: block;
}

.search-modal .search-block .close span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.search-modal .search-block .close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.search-modal .search-form {
    position: relative;
}

.search-modal .search-form input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #141414;
    padding: 16px 50px 16px 0;
    font-size: 14px;
    color: #141414;
    letter-spacing: 0;
}
input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus textarea:-webkit-autofill,
  textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
  select:-webkit-autofill,
  select:-webkit-autofill:hover,
  select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #f1f1f1 inset !important;
  }
.search-modal .search-form input::-webkit-input-placeholder {color:#141414;}
.search-modal .search-form input::-moz-placeholder {color:#141414;}
.search-modal .search-form input:-moz-placeholder {color:#141414;}
.search-modal .search-form input:-ms-input-placeholder {color:#141414;}

.search-modal .search-form button {
    width: 24px;
    height: 24px;
    border: none;
    position: absolute;
    right: 11px;
    top: calc(50% - 2px);
    transform: translateY(-50%);
    background: url(../img/icons/search-black.svg) no-repeat center center;
    background-size: contain;
    cursor: pointer;
}


/***** GLAVNOE *****/



.news-text-block {
    padding: 125px 0 22px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.news-text-block.big {
	padding-bottom: 102px;
}

.news-text-block:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: #EBEBEB;
    margin-left: -570px;
}

.news-text-block .bg {
    position: absolute !important;
    right: 50%;
    top: 50%;
    transform: translate3d(0px, 0px, 0px) translateY(-50%) !important;
    width: 854px;
    height: 506px;
    margin-right: -1200px;
}

.news-text-block .layer {
    position: absolute;
    left: 0;
    top: 0;
}

.news-text-block .bg .layer:nth-child(2) {
    margin: 190px 0 0;
}

.news-text-block .bg .layer:nth-child(3) {
    margin: 346px 0 0;
}

.news-title {
    font-size: 75px;
    color: #ebebeb;
    letter-spacing: 0;
    line-height: 66px;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0 0 50px -6px;
}

.news-text {
    font-size: 14px;
    color: #141414;
    letter-spacing: 0;
    line-height: 22px;
    max-width: 455px;
    margin: 0 0 50px;
}

.news-text p {
    margin: 0 0 30px;
}

.news-page-one .news-text img {
    height: auto;
}

.news-text.big {
    max-width: 100%;
}

.news-text-block .photo {
    margin: 0 0 50px;
    height: 359px;
}

.news-text h3 {
    font-size: 25px;
    line-height: 1;
    color: #141414;
    font-weight: 900;
    margin: 0 0 30px;
}

.news-text a {
    color: #616161;
    padding: 0 0 2px;
    transition: .3s color;
}

.news-text a:hover {
    color: #141414;
}

.news-text ol {
    list-style-type: decimal;
    margin-left: 30px;
    margin-bottom: 20px;
}

.news-text ul li {
    margin: 0 0 14px;
    padding-left: 28px;
    position: relative;
}

.news-text ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 7px;
    height: 7px;
    background: #B48C54;
    border-radius: 20px;
}


.news-text-image {
    padding: 100px 0;
    background-image: -o-linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    background-image: linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    position: relative;
}

.news-text-image .image {
	position: relative;
	z-index: 5;
}

.news-text-image .image img {
    width: 100%;
}

.news-text-image .bg {
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate3d(0px, 0px, 0px) translateY(-50%) !important;
    width: 854px;
    height: 506px;
    margin-right: -1200px;
}

.news-text-image .bg .layer {
    position: absolute;
    left: 0;
    top: 0;
}

.news-text-image .bg .layer:nth-child(2) {
    margin: 190px 0 0;
}

.news-text-image .bg .layer:nth-child(3) {
    margin: 346px 0 0;
}


/***** O GODE *****/


.ogode {
    background: #E4E4E4;
    position: relative;
    overflow: hidden;
    padding: 116px 0 121px;
}

.ogode:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: #ffffff;
    margin-left: -570px;
    z-index: 3;
}

.ogode .bg {
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate3d(0px, 0px, 0px) translateY(-50%) !important;
    width: 854px;
    height: 506px;
    margin-right: -1200px;
}

.ogode .bg .layer {
    position: absolute;
    left: 0;
    top: 0;
}

.ogode .bg .layer:nth-child(2) {
    margin: 190px 0 0;
}

.ogode .bg .layer:nth-child(3) {
    margin: 346px 0 0;
}

.ogode .ogode-block .title {
    font-size: 68px;
    color: #141414;
    letter-spacing: 0;
    line-height: 71px;
    text-transform: uppercase;
    font-weight: 900;
    margin: 23px 0 135px -2px;
}

.ogode .ogode-block .goal {
    position: relative;
    background: #FFF;
    padding: 30px 41px 38px 98px;
    color: #141414;
    line-height: 20px;
    width: 450px;
}

.ogode .ogode-block .goal:before {
    content: 'Цель';
    height: 64px;
    width: 148px;
    white-space: nowrap;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    -webkit-transform: translate(0, -50%) rotate(-90deg);
    -ms-transform: translate(0, -50%) rotate(-90deg);
    transform: translate(0, -50%) rotate(-90deg);
    font-size: 17px;
    color: #FFF;
    letter-spacing: 0;
    line-height: 64px;
    position: absolute;
    left: -42px;
    top: 50%;
    background-image: -o-linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    background-image: linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
}

.ogode .ogode-block .goal-list {
    background: #FFF;
    padding: 32px 40px 39px 33px;
    font-size: 16px;
    color: #141414;
    line-height: 24px;
}

.ogode .ogode-block .goal-list .goal-title {
    font-size: 25px;
    color: #141414;
    letter-spacing: 0;
    line-height: 40px;
    font-weight: 900;
    margin: 0 0 20px;
}

.ogode .ogode-block .goal-list p {
    margin: 0 0 25px;
}

.ogode .ogode-block .goal-list p:last-child {
    margin: 0;
}

.gallery-page {
    padding: 156px 0 65px;
    position: relative;
    overflow: hidden;
}

.gallery-page:before {
    content: '';
    position: absolute;
    right: 50%;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: -o-linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    background-image: linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    margin-right: -180px;
    z-index: 4;
}

.gallery-page .section-title {
    position: relative;
    z-index: 5;
    font-size: 75px;
    color: #EBEBEB;
    letter-spacing: 0;
    line-height: 1;
    font-weight: 900;
    margin: 0 0 30px;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.gallery-page .gallery-page-slider {
    z-index: 5;
    position: relative;
    left: 50%;
    margin-left: -570px;
}

.gallery-page .gallery-page-slider .item {
    width: 768px;
}

.gallery-page .gallery-page-slider .item.two {
    width: 384px;
}

.gp-controls {
    display: inline-block;
    vertical-align: top;
    position: relative;
    z-index: 5;
    float: right;
    margin: 26px 0 0;
}

.gp-controls .arrow {
    width: 22px;
    height: 14px;
    z-index: 3;
    background-image: url(../img/icons/arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: .3s background-color;
    -o-transition: .3s background-color;
    transition: .3s background-color;
}

.gp-controls .arrow.prev {
    float: left;
    transform: rotate(-180deg);
}

.gp-controls .arrow.next {
    float: left;
}

.gp-controls .dots {
    float: left;
    margin: 3px 27px;
    line-height: 1;
    font-size: 0;
}

.gallery-page .section-title .title.left {
    float: left;
}

.gp-controls .dots .slick-dots {
    position: relative;
    bottom: 0;
    height: auto;
    line-height: 1;
}

.gp-controls .dots .slick-dots li {
    width: 3px;
    height: 3px;
    line-height: 1;
    background: #000;
    border-radius: 100px;
    transition: .3s width, .3s height, .3s margin, .3s background;
    margin: 4px 5px;
    vertical-align: middle;
    display: inline-block;
}

.gp-controls .dots .slick-dots li button {
    display: none;
}

.gp-controls .dots .slick-dots li.slick-active {
    width: 10px;
    height: 10px;
    background: #B48C54;
    margin: 0 5px;
}


.mobile-menu .form form {
    position: relative;
}

.mobile-menu .form input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #141414;
    padding: 16px 50px 16px 0;
    font-size: 14px;
    color: #141414;
    letter-spacing: 0;
}

.mobile-menu .form button {
    width: 24px;
    height: 24px;
    border: none;
    position: absolute;
    right: 11px;
    top: calc(50% - 2px);
    transform: translateY(-50%);
    background: url(../img/icons/search-black.svg) no-repeat center center;
    background-size: contain;
    cursor: pointer;
}


/***** WINDOWS VICROTY *****/


.window {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    min-height: 725px;
}

.window .container {
    position: relative;
}

.window .image {
    position: absolute;
    top: 0;
    right: 50%;
    margin-right: -198px;
}

.window .image img {
    max-width: inherit;
}

.window .info {
    position: absolute;
    right: -12px;
    top: 125px;
}

.window .info .title {
    font-size: 75px;
    color: #141414;
    letter-spacing: 0;
    line-height: 72px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 25px;
}

.window .info .text {
    font-size: 14px;
    color: #141414;
    letter-spacing: 0;
    line-height: 20px;
    width: 400px;
    margin-left: 3px;
}

.window .info .text ol {
    list-style-type: decimal;
    margin-left: 20px;
    margin-top: 10px;
}

.window .info .text ol li {
    margin: 0 0 5px;
}

.window.parad .image {
    margin-right: -98px;
}

.window.parad .info {
    top: 20px;
    right: inherit;
    left: 683px;
}

.window.parad .info .text {
    width: 500px;
}

.window.parad .info .title {
    margin-left: -5px;
    font-size: 55px;
    line-height: 62px;
}

.window.parad .info .title br:last-child {
    display: none;
}

.stencils {
    padding: 131px 0 71px;
}

.stencils .more-stencils {
    margin: 50px 0 0;
    line-height: 1.6;
}

.stencils .more-stencils a {
    color: #4a90e2;
    border-bottom: 1px solid #4a90e2;
    transition: .3s border-bottom;
}

.stencils .more-stencils a:hover {
    border-color: transparent;
}

.stencils .section-title {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin: 0 0 42px;
}

.stencils .section-title .title {
    font-size: 68px;
    color: #141414;
    letter-spacing: 0;
    line-height: 71px;
    text-transform: uppercase;
    font-weight: 900;
}

.stencils .section-title .title.left {
    float: left;
}

.stencils-list .slick-list {
    margin: 0 -42px;
}

.stencils-list .item {
    margin: 0 42px;
}

.stencils-list .item .image {
    margin: 0 0 15px;
    text-align: center;
    height: 215px;
    line-height: 215px;
}

.stencils-list .item .image img {
    margin: 0 auto;
    display: inline-block;
    vertical-align: middle;
}

.stencils.sparad .section-title .gp-controls {
    display: none;
}

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

.line_link a {
    position: relative;
    display: block;
    height: 60px;
    line-height: 62px;
    padding: 0 32px;
    text-transform: uppercase;
    color: #141414;
}

.line_link a span {
	position: relative;
	z-index: 5;
}

.line_link a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-image: -o-linear-gradient(225deg, #B68D56 0%, #B28B51 100%);
    background-image: linear-gradient(225deg, #B68D56 0%, #B28B51 100%);
    transition: .3s width;
}

.line_link a:hover:before {
	width: 100%;
}


/***** INSTRUCTIONS *****/


.instructions {
    padding: 65px 0 84px;
    position: relative;
}

.instructions:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 768px);
    background: #ECECEC;
    height: 100%;
}

.instructions .block .block-title {
    font-size: 45px;
    color: #141414;
    letter-spacing: 0;
    line-height: 45px;
    font-weight: 900;
    margin: 0 0 40px;
    width: 576px;
}

.instructions .block .info ul li {
    position: relative;
    margin: 0 0 15px;
}

.instructions .block .info ul li .icon {
    width: 60px;
    height: 60px;
    display: block;
    background: #CCC;
    text-align: center;
    line-height: 60px;
    background-image: linear-gradient(225deg, #B68D56 0%, #B28B51 100%);
    background-image: linear-gradient(225deg, #B68D56 0%, #B28B51 100%);
}

.instructions .block .info ul li .title {
    position: absolute;
    left: 86px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #000000;
    font-weight: 900;
    letter-spacing: 0;
    max-width: 310px;
    line-height: 1.2;
}

.instructions .block .info ul li .icon img {
    vertical-align: middle;
}

.instructions .block .info ul li:last-child {
    margin: 0;
}

.instructions .block .info .line_link {
    margin: 48px 0 0;
}


/***** GALLERY WINDOWS *****/


.gallery.gallery-window .gallery-info .title {
    max-height: inherit;
    margin: 0;
    z-index: 5;
    max-width: 660px;
    font-size: 75px;
    color: #141414;
    letter-spacing: 0;
    line-height: 72px;
    position: relative;
}

.gallery.gallery-window .gallery-info {
    position: relative;
}

.gallery.gallery-window .gallery-info .gp-controls .dots .slick-dots li.slick-active {
    background: #FFF;
}

.gallery.gallery-window .gallery-info .gp-controls {
    display: inline-block;
    vertical-align: top;
    float: right;
    margin: 26px 0 0;
    top: 50%;
    position: absolute;
    right: 0;
    z-index: 33;
    transform: translateY(-50%);
}

.gallery.gallery.gallery-window:before {
    display: none;
}

.gallery.gallery-window {
    padding-top: 50px;
    padding-bottom: 566px;
}

.gallery.gallery-window .gallery-right {
    padding-top: 218px;
    background-image: linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
}


/***** MOSAIC PAGE *****/


.mosaic-page {
    display: flex;
    width: 100%;
    align-content: stretch;
    align-items: stretch;
}

.mosaic-page .info {
    width: 70%;
    position: relative;
    background: #ECECEC;
}

.mosaic-page .info .bg {
    position: absolute;
    top: 337px;
    left: 364px;
    transform: translate3d(0px, 0px, 0px) !important;
    width: 854px;
    height: 506px;
    z-index: 9;
}

.mosaic-page .info .bg .layer {
    position: absolute;
    left: 0;
    top: 0;
}

.mosaic-page .info .bg .layer:nth-child(2) {
    margin: 200px 0 0;
}

.mosaic-page .info .bg .layer:nth-child(3) {
    margin: 366px 0 0;
}


.mosaic-page .info .mosaic-title {
    position: relative;
    z-index: 5;
    color: #FFF;
    margin: 140px 0 0;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 75px;
    line-height: 1;
}

.mosaic-page .mosaic-list {
    display: flex;
    flex-wrap: wrap;
    width: 30%;
    font-size: 140%;
}

.mosaic-page .mosaic-list .text{
    padding-top:50px;
    
}

.mosaic-page .mosaic-list .item {
    width: 33.3333%;
    padding: 63px 50px 63px 109px;
    position: relative;
    z-index: 9;
}

.mosaic-page .mosaic-list .item .logo {
    margin: 0 0 20px;
}

.mosaic-page .mosaic-list .item .title {
    margin-left: 28px;
    max-width: 150px;
    line-height: 1.4;
    color: #141414;
}


/***** Страница ключевых проектов (/голососование) и popup, с опросами *****/


.key-projects {
    font-family: HelveticaNeueCyr;
    /* font-size: 20px; */
    /* line-height: 20px; */
}

.key-projects .banner {
    font-size: 14px;
    line-height: 1.42;
}

.key-projects .banner .container {
    
}

.key-projects .banner-image {
    /* width: 100%; */
    /* height: 100%; */
    /* display: block; */
    /* -o-object-fit: cover; */
    /* object-fit: cover; */
    /* -o-object-position: top right; */
    /* object-position: top right; */
    /* font-family: "object-fit: cover; object-position: top right;"; */
}

.key-projects .banner-image-container {
    overflow: hidden;
}

.key-projects .banner-text {
    padding: 20px 20px 30px;
}

.key-projects .banner-text > *:not(:first-child) {
    margin-top: 20px;
}

.key-projects .projects {
    padding-bottom: 27px;
    background-color: #F5F5F5;
    line-height: 1.3;
}

.key-projects .projects svg {
    margin-top: -1px;
    flex: 0 0 auto;
}

.key-projects .projects svg path {
    fill: black;
}

.key-projects .projects .container .row {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.projects-title, .projects-title-sub, .projects-alert {
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.42;
    text-transform: uppercase;
    color: #BC8E34;
}

.projects-title {
    font-size: 20px;
}

.projects-title-sub {
    font-size: 16px;
}

.projects-alert {
    font-size: 16px;
}

.projects-item .video-block, .projects-item .video-block a {
    width: 100%;
    height: 100%;
    position: absolute;
}

.projects-item .video-block a {
    color: #D4B355;
}

.projects-item .video-block a .icon i {
    border-color: #D4B355;
    background-color: rgba(255,255,255,0.75);
    transition: 0.3s;
}

.projects-item .video-block a .icon span {
    color: #D4B355;
    transition: 0.3s;
}

.projects-item .video-block a:hover,
.projects-item .video-block a:focus {
    color: #B28B51;
}

.projects-item .video-block a:hover .icon i,
.projects-item .video-block a:focus .icon i {
    border-color: #B28B51;
    background-color: rgba(255,255,255,0.8);
}
.projects-item .video-block a:focus .icon i {
    box-shadow: 0 0 15px white;
}

.projects-item .video-block a:hover .icon span,
.projects-item .video-block a:focus .icon span {
    color: #B28B51;
}
.projects-item .video-block a:focus .icon span {
    text-shadow: 0 0 15px white;
}

.projects-item-thumbnail {
    margin-left: -20px;
    margin-right: -20px;
    /* overflow: hidden; */
}

.projects-item-thumbnail-wrap {
    width: 100%;
    position: relative;
    padding-bottom: 78.78%;
}

.projects-item-thumbnail img, .projects-item-thumbnail video {
    width: 100%;
    height: 100%;
    position: absolute;
    /* transform: scale(1); */
    /* transition: .3s transform; */
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.projects-item-details {
    padding-top: 35px;
}

.projects-item-date {
    display: flex;
    align-items: center;
}

.projects-item-date > *:not(:first-child) {
    margin-left: 17px;
}

.projects-item-date-text {

}

.projects-item-title {
    margin-top: 40px;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
}

.projects-item-description {
    margin-top: 20px;
    line-height: 1.3;
}

.projects-item-description p {

}

.projects-item-location {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.projects-item-location > *:not(:first-child) {
    margin-left: 17px;
}

.projects-item-location-text {

}

.projects-item-inputs {
    margin-top: 25px;
    border-top: 1px solid black;
    padding: 15px 3px;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    position: relative;
}

.projects-item-inputs > label:not(:first-of-type) {
    margin-top: 10px;
}

/* Base for label styling */
.projects-item-inputs input[type="radio"]:not(:checked),
.projects-item-inputs input[type="radio"]:checked,
.projects-item-inputs input[type="checkbox"]:not(:checked),
.projects-item-inputs input[type="checkbox"]:checked {
    position: absolute;
    opacity: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.projects-item-inputs input[type="radio"]:not(:checked) + label,
.projects-item-inputs input[type="radio"]:checked + label,
.projects-item-inputs input[type="checkbox"]:not(:checked) + label,
.projects-item-inputs input[type="checkbox"]:checked + label {
    margin: 10px 0;
    width: 100%;
    line-height: 20px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    padding-left: 37px;
}

.popup .projects-item-inputs input[type="radio"]:not(:checked) + label,
.popup .projects-item-inputs input[type="radio"]:checked + label,
.popup .projects-item-inputs input[type="checkbox"]:not(:checked) + label,
.popup .projects-item-inputs input[type="checkbox"]:checked + label {
    padding-left: 30px;
}

/* checkbox aspect */
.projects-item-inputs input[type="radio"]:not(:checked) + label:before,
.projects-item-inputs input[type="radio"]:checked + label:before,
.projects-item-inputs input[type="checkbox"]:not(:checked) + label:before,
.projects-item-inputs input[type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    border: 1px solid black;
    border-radius: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    box-sizing: border-box;
    transform: translate(0, -50%);
}

/* checked mark aspect */
.projects-item-inputs input[type="radio"]:not(:checked) + label:after,
.projects-item-inputs input[type="radio"]:checked + label:after,
.projects-item-inputs input[type="checkbox"]:not(:checked) + label:after,
.projects-item-inputs input[type="checkbox"]:checked + label:after {
    content: url("data:image/svg+xml,%3Csvg width='15' height='11' viewBox='0 0 15 11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 5.0946673,10.783951 0.21965827,5.9898648 c -0.29287769,-0.2880127 -0.29287769,-0.7550073 0,-1.0430513 L 1.2802995,3.9037617 c 0.2928756,-0.2880548 0.7677872,-0.2880548 1.0606627,0 L 5.625004,7.1332443 12.659085,0.21601524 c 0.292822,-0.28801899 0.767787,-0.28801899 1.060609,0 L 14.780303,1.259071 c 0.292929,0.2880127 0.292929,0.7550073 0,1.0430517 L 6.1553407,10.783951 c -0.2929184,0.288067 -0.7677871,0.288067 -1.0606734,0 z'%3E%3C/path%3E%3C/svg%3E");
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 11px;
    line-height: 11px;
    text-align: center;
    transition: all .2s;
}

/* checked mark aspect changes */
.projects-item-inputs input[type="radio"]:not(:checked) + label:after,
.projects-item-inputs input[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0) translate(0, -50%);
}

.projects-item-inputs input[type="radio"]:checked + label:after,
.projects-item-inputs input[type="checkbox"]:checked + label:after {
    opacity: 1;
    transform: scale(1) translate(0, -50%);
}

/* disabled checkbox */
.projects-item-inputs input[type="radio"]:disabled + label:before,
.projects-item-inputs input[type="checkbox"]:disabled + label:before {
    border-color: #bbb;
    background-color: #eee;
    cursor: auto;
}

.projects-item-inputs input[type="radio"]:disabled:checked + label:after,
.projects-item-inputs input[type="checkbox"]:disabled:checked + label:after {
    content: url("data:image/svg+xml,%3Csvg width='15' height='11' viewBox='0 0 15 11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 5.0946673,10.783951 0.21965827,5.9898648 c -0.29287769,-0.2880127 -0.29287769,-0.7550073 0,-1.0430513 L 1.2802995,3.9037617 c 0.2928756,-0.2880548 0.7677872,-0.2880548 1.0606627,0 L 5.625004,7.1332443 12.659085,0.21601524 c 0.292822,-0.28801899 0.767787,-0.28801899 1.060609,0 L 14.780303,1.259071 c 0.292929,0.2880127 0.292929,0.7550073 0,1.0430517 L 6.1553407,10.783951 c -0.2929184,0.288067 -0.7677871,0.288067 -1.0606734,0 z' fill='%23777'%3E%3C/path%3E%3C/svg%3E");
}

.projects-item-inputs input[type="radio"]:disabled + label,
.projects-item-inputs input[type="checkbox"]:disabled + label {
    color: #aaa;
    cursor: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* accessibility */
.projects-item-inputs input[type="radio"]:checked:focus + label:before,
.projects-item-inputs input[type="radio"]:not(:checked):focus + label:before,
.projects-item-inputs input[type="checkbox"]:checked:focus + label:before,
.projects-item-inputs input[type="checkbox"]:not(:checked):focus + label:before,
.projects-item-inputs input[type="radio"]:checked:active + label:before,
.projects-item-inputs input[type="radio"]:not(:checked):active + label:before,
.projects-item-inputs input[type="checkbox"]:checked:active + label:before,
.projects-item-inputs input[type="checkbox"]:not(:checked):active + label:before {
    border: 2px dotted #BC8E34;
}

/* hover style just for information */
.projects-item-inputs input[type="radio"]:enabled + label:hover:before,
.projects-item-inputs input[type="checkbox"]:enabled + label> :before {
    border: 1px solid #BC8E34 !important;
}

/* invalid checkbox */
.projects-item-inputs input[type="radio"]:invalid:focus ~ label:before,
.projects-item-inputs.invalid input[type="radio"] ~ label:before,
.projects-item-inputs input[type="checkbox"]:invalid:focus ~ label:before,
.projects-item-inputs.invalid input[type="checkbox"] ~ label:before {
    box-shadow: 0 0 3px 1px red;
}

.button-group, .projects-button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button-group {
    display: block;
}

.button-group > *:not(:first-child), .projects-button-group > *:not(:first-child) {
    margin-top: 20px;
}

.button, .projects-button {
    all: unset;
    border: 0;
    padding: 0 16px;
    max-width: 338px;
    width: 100%;
    height: 55px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ECECEC;
    color: black;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: 0.1s;
    z-index: 1;
}

.button span, .projects-button span {
    position: relative;
}

.button:disabled, .projects-button:disabled {
    opacity: 0.5;
    cursor: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.button::before, .projects-button::before {
    content: '';
    width: 16px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #BC8E34;
    transition: width 0.3s ease;
}

.button:not(:disabled):hover::before, .projects-button:not(:disabled):hover::before,
.button:not(:disabled):focus::before, .projects-button:not(:disabled):focus::before {
    width: 100%;
}

.button:focus, .projects-button:focus {
    outline: 0;
}

.button.button-submit:disabled, .projects-submit:disabled {
    margin-bottom: 20px;
}

.button.button-submit:disabled::after, .projects-submit:disabled::after {
    content: 'Вы уже отправили свои ответы';
    font-size: 13px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -18px;
    text-transform: none;
}

.popup .mfp-container {
    padding-left: 24px;
    padding-right: 24px;
}

.popup .button, .popup .projects-button {
    margin-left: auto;
    margin-right: auto;
}

.popup-content {
    padding: 23px 13px;
    border-radius: 20px;
    position: relative;
    background: white;
}

.popup-text {
    margin: 66px 0;
    font-weight: 900;
    font-size: 25px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    color: #BC8E34;
}

.popup-form[name="export-form"] {
    margin: 40px auto;
    max-width: 338px;
}

.popup-select {
    width: 100%;
    height: 30px;
    display: block;
}

.popup-select-label {
    margin: 7px 0;
    display: block;
}

.popup-text > p:not(:first-child) {
    margin-top: 25px;
}

.popup .popup-close, .popup .popup-close:active {
    all: unset;
    margin: 0;
    border: 0;
    padding: 15px;
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    cursor: pointer;
    overflow: visible;
}

.popup .popup-close::before {
    content: '';
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    opacity: 0.15;
    transition: 0.1s linear;
}

.popup .popup-close:hover::before {
    width: 50px;
    height: 50px;
}

.popup .popup-close:focus {
    outline: 0;
}

.popup .popup-close svg {
    display: block;
    fill: #555;
}

.popup .projects-title-sub, .projects-alert {
    margin-left: 1vw;
    margin-right: 1vw;
    text-align: center;
}

.popup .projects-items {
    margin: 20px 0;
}

.popup .projects-items > :not(:first-child) {
    margin-top: 20px;
}

.popup .projects-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 10px 20px;
    -ms-grid-columns: 120px 10px auto;
    grid-template:
        "image title"  auto
        "image inputs" 20px /
         120px auto;
    grid-gap: 10px;
    justify-content: normal;
    align-items: normal;
    -ms-grid-row-align: center;
    align-self: center;
}

.popup .projects-item-thumbnail {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
    grid-area: image;
    margin-left: 0;
    margin-right: 0;
    -ms-grid-row-align: center;
    align-self: center;
}

.popup .projects-item-title {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: title;
    margin: 0;
    font-size: 16px;
    display: block;
    max-height: 8.1ex;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
}

.popup .projects-item-inputs {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
    grid-area: inputs;
    margin-top: 0;
    border: 0;
    padding: 0;
}

.popup a.projects-item-title {
    color: inherit;
}
.popup a.projects-item-title:hover, .popup a.projects-item-title:focus {
    text-decoration: underline;
}

.popup .projects-item-inputs input[type="checkbox"] + label {
    margin: 0;
}

.popup.popup-projects .mfp-container {
    padding: 0 24px;
}

.popup-projects .mfp-content {
    padding: 50px 0 24px;
    max-width: 1550px;
}

.popup-projects .popup-text {
    margin: 0 2vw 20px;
}

.popup-projects .popup-content {
    padding: 25px 20px;
}

@media (min-width: 675px) {
    .popup .projects-items {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto 30px auto 30px auto 30px auto 30px auto 30px auto 30px auto 30px auto;
        -ms-grid-columns: 1fr 15px 1fr;
            grid-template: auto / repeat(2, 1fr);
        grid-gap: 30px 15px;
    }
    .popup .projects-items > :nth-child(n + 1) { -ms-grid-row: 1; }
    .popup .projects-items > :nth-child(n + 3) { -ms-grid-row: 3; }
    .popup .projects-items > :nth-child(n + 5) { -ms-grid-row: 5; }
    .popup .projects-items > :nth-child(n + 7) { -ms-grid-row: 7; }
    .popup .projects-items > :nth-child(n + 9) { -ms-grid-row: 9; }
    .popup .projects-items > :nth-child(n + 11) { -ms-grid-row: 11; }
    .popup .projects-items > :nth-child(n + 13) { -ms-grid-row: 13; }
    .popup .projects-items > :nth-child(n + 15) { -ms-grid-row: 15; }
    .popup .projects-items > :nth-child(2n + 1) { -ms-grid-column: 1; }
    .popup .projects-items > :nth-child(2n + 2) { -ms-grid-column: 3; }
    
    .popup .projects-items > :not(:first-child) {
        margin-top: 0;
    }
}

@media (min-width: 768px) {
    .popup-text {
        font-size: 35px;
    }
    
    .popup-text > p:not(:first-child) {
        margin-top: 35px;
    }
}

@media (min-width: 992px) {
    .key-projects {
        padding-bottom: 94px;
        background-color: white;
    }
    
    .key-projects .banner {
        position: relative;
    }
    
    .key-projects .banner .container .row {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    
    .key-projects .banner-image {
        height: 600px;
    }
    
    .key-projects .banner-image-container {
        height: 430px;
        margin-left: -100vw;
    }
    
    .key-projects .banner-text {
        margin-left: -1px;
        padding: 0;
        max-width: 442px;
    }
    
    .key-projects .projects {
        padding: 0;
    }
    
    .key-projects .projects .container .row {
        position: relative;
    }
    
    .key-projects .projects .container .row::before {
        content: '';
        width: 100vw;
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        transform: translate(-100%, 0);
        background-color: white;
    }
    
    .projects-title, .projects-title-sub, .projects-alert {
        line-height: 1.25;
    }
    
    .projects-title {
        font-size: 28px;
    }
    
    .projects-title-sub {
        font-size: 22px;
    }
    
    .projects-alert {
        font-size: 22px;
    }
    
    .projects-item {
        display: flex;
        align-items: center;
    }
    
    .projects-item-thumbnail {
        margin: 0;
        padding: 0;
        flex: 0 0 290px;
    }
    
    .projects-item-details {
        padding: 0 25px;
        flex: 1 0 230px;
        box-sizing: content-box;
    }
    
    .projects-item-inputs {
        margin: 0 -23px 0 0;
        border-top: 0;
        border-left: 1px solid black;
        padding: 10px 17px;
        flex: 0 0 auto;
    }
    
    .projects-item-inputs input[type="radio"] + label,
    .projects-item-inputs input[type="checkbox"] + label {
        max-width: 9.7em;
        box-sizing: content-box;
    }
    
    .projects-item:not(:first-child) {
        margin: 20px 0 30px;
    }
    
    .button-group, .projects-button-group {
        margin-top: 75px;
        /* margin-bottom: 58px; */
    }

    .projects-alert {
        margin-top: 20px;
    }
    
    .projects-alert + .button-group, .projects-alert + .projects-button-group {
        margin-top: 20px;
    }

    .popup .mfp-container {
        padding-left: 21.75vw;
        padding-right: 21.75vw;
    }

    .popup-content {
        padding: 70px;
    }
    
    .popup-text {
        margin: 90px 0;
    }
    
    .popup .projects-items {
        -ms-grid-rows: auto 30px auto 30px auto 30px auto 30px auto;
        -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
        grid-template-columns: repeat(3, 1fr);
    }
    .popup .projects-items > :nth-child(n + 1) { -ms-grid-row: 1; }
    .popup .projects-items > :nth-child(n + 4) { -ms-grid-row: 3; }
    .popup .projects-items > :nth-child(n + 7) { -ms-grid-row: 5; }
    .popup .projects-items > :nth-child(n + 10) { -ms-grid-row: 7; }
    .popup .projects-items > :nth-child(n + 13) { -ms-grid-row: 9; }
    .popup .projects-items > :nth-child(3n + 1) { -ms-grid-column: 1; }
    .popup .projects-items > :nth-child(3n + 2) { -ms-grid-column: 3; }
    .popup .projects-items > :nth-child(3n + 3) { -ms-grid-column: 5; }
}

@media (min-width: 1200px) {
    .projects-item-thumbnail {
        flex: 0 0 340px;
    }
    
    .projects-item-details {
        padding: 0 35px;
        flex-basis: 300px;
    }
    
    .projects-item-title {
        font-size: 25px;
    }
    
    .projects-item-inputs {
        /* padding: 10px 20px; */
    }
    
    .popup-projects .mfp-container {
        padding-left: 8.5vw;
        padding-right: 8.5vw;
    }
}

@media (min-width: 1270px) {
    .popup .projects-items {
        -ms-grid-rows: auto 30px auto 30px auto 30px auto;
        -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
        grid-template-columns: repeat(4, 1fr);
    }
    .popup .projects-items > :nth-child(n + 1) { -ms-grid-row: 1; }
    .popup .projects-items > :nth-child(n + 5) { -ms-grid-row: 3; }
    .popup .projects-items > :nth-child(n + 9) { -ms-grid-row: 5; }
    .popup .projects-items > :nth-child(n + 13) { -ms-grid-row: 7; }
    .popup .projects-items > :nth-child(4n + 1) { -ms-grid-column: 1; }
    .popup .projects-items > :nth-child(4n + 2) { -ms-grid-column: 3; }
    .popup .projects-items > :nth-child(4n + 3) { -ms-grid-column: 5; }
    .popup .projects-items > :nth-child(4n + 4) { -ms-grid-column: 7; }
}

/* Small intervals between elements on medium screen sizes */
@media (max-width: 1200px) and (min-width: 992px) {
    .projects-items {
        font-size: 12px;
    }
    
    .popup .projects-items {
        font-size: inherit;
    }
    
    .projects-item-title {
        margin-top: 20px;
    }
    
    .projects-item-description {
        margin-top: 10px;
    }
    
    .projects-item-location {
        margin-top: 15px;
    }
}

/* Small intervals between elements on medium screen sizes */
@media (min-width: 1200px) {
    .projects-item-title {
        margin-top: 25px;
    }
    
    .projects-item-description {
        margin-top: 15px;
    }
    
    .projects-item-location {
        margin-top: 20px;
    }
}

@media (min-width: 1400px) {
    .popup .projects-items {
        -ms-grid-rows: auto 30px auto 30px auto;
        -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
        grid-template-columns: repeat(5, 1fr);
    }
    .popup .projects-items > :nth-child(n + 1) { -ms-grid-row: 1; }
    .popup .projects-items > :nth-child(n + 6) { -ms-grid-row: 3; }
    .popup .projects-items > :nth-child(n + 11) { -ms-grid-row: 5; }
    .popup .projects-items > :nth-child(5n + 1) { -ms-grid-column: 1; }
    .popup .projects-items > :nth-child(5n + 2) { -ms-grid-column: 3; }
    .popup .projects-items > :nth-child(5n + 3) { -ms-grid-column: 5; }
    .popup .projects-items > :nth-child(5n + 4) { -ms-grid-column: 7; }
    .popup .projects-items > :nth-child(5n + 5) { -ms-grid-column: 9; }
}


/***** Страница опроса (/деньнеизвестногосолдата) *****/

.quiz {
    
}

.quiz-title {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto auto;
    -ms-grid-columns: 1fr;
        grid-template:
        "image" auto
        "text"  auto /
         1fr;
    position: relative;
}

.quiz-title__text {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: text;
    -ms-grid-row-align: center;
        align-self: center;
    padding: 35px 0 70px;
    position: relative;
}

.quiz-title__text::after {
    content: '';
    display: block;
    /* Ничего не делает, так как позиция абсолютна */
    /* margin-top: 20px; */
    width: 100vw;
    height: 50px;
    position: absolute;
    bottom: 0;
    background-color: #ececec;
}

.quiz-title__heading {
    margin: 0;
}

.quiz-title__description {
    margin: 20px 0 0;
}

.quiz-title__image {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: image;
    -ms-grid-row-align: center;
        align-self: center;
    margin: 0 -15px;
    padding: 40px 70px 40px 0;
    position: relative;
}

.quiz-title__image img, .quiz-title__image svg {
    max-width: 100%;
    display: block;
    position: relative;
}

.quiz-title__bg {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: image;
    margin: 0 -15px;
    /* width: 100%; */
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: -webkit-linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    background-image: -moz-linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    background-image: linear-gradient(225deg, #E3C870 0%, #C19133 21%, #BA8E35 28%, #DCBF5F 54%, #D5B450 75%, #B38215 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.quiz-title__bg .layer {
    position: static !important;
    /* left: 0; */
    /* top: 0; */
    /* max-width: 50%; */
    transform: scale(0.5);
}

.quiz-title__bg .layer img {
    /* height: 100%; */
}

.quiz-title__bg .layer:nth-child(2) {
    /* margin: 50px 0 0; */
}

.quiz-title__bg .layer:nth-child(3) {
    /* margin: 100px 0 0; */
}

.quiz-form {
    line-height: 1;
    transition: 0.3s;
    opacity: 0.3;
    pointer-events: none;
    position: relative;
}

.quiz-form--initialized {
    opacity: 1;
    pointer-events: auto;
}

.quiz-form .container {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
}

.quiz-form .container::after {
    content: '';
    width: 100vw;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    transform: translate(100%, 0);
    background-color: #ECECEC;
}

.quiz-count {
    margin-bottom: 10px;
    font-size: 16px;
}

.quiz-questions {
    /* max-width: 720px; */
    transition: 0.3s;
}

.quiz-questions:not(.slick-initialized) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.quiz-questions:not(.slick-initialized) .quiz-question {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
}

.quiz-questions:not(.slick-initialized) .quiz-question:not(:first-child) {
    opacity: 0;
}

.quiz-questions .slick-list {
    overflow: visible;
}

.quiz-questions .slick-slide {
    opacity: 0;
    transition: 0.3s ease-out;
}

.quiz-questions .slick-slide.slick-current {
    opacity: 1;
}

.quiz-question {
    
}

.quiz-question__text {
    font-size: 25px;
    font-weight: 500;
}

.quiz-question__answers {
    margin-top: 40px;
}

.quiz-question__answers > :not(:first-child) {
    margin-top: 13px;
}

.button-answer {
    padding-top: 10px;
    padding-bottom: 10px;
    max-width: none;
    min-height: 55px;
    height: auto;
    font-size: 1.15em;
    text-transform: none;
    transition: 0.1s;
}

.button-answer::before {
    width: 0;
    transition-duration: 0.4s;
}

.button-answer--active {
    font-weight: bold;
    color: white;
    pointer-events: none;
}

.button-answer--active::before {
    width: 100%;
}

.button-answer--wrong::before {
    background-color: #9D232E;
}

.button-answer--correct::before {
    background-color: #436C50;
}

.button-next {
    margin-top: 75px;
}

.quiz-result {
    padding-bottom: 66px;
    width: 100%;
}

.quiz-result__banner {
    margin: 0 -15px;
    position: relative;
}

.quiz-result__image {
    object-fit: cover;
    font-size: "object-fit: cover;";
    background-color: #b3b3b3;
}

.quiz-result__text {
    max-width: calc((100% - 15px * 2) * 0.6);
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    font-size: 8px;
    transition: 0.1s;
    opacity: 0;
    visibility: hidden;
}

.quiz-result__text--initialized {
    opacity: 1;
    visibility: visible;
}

.quiz-result__heading {
    margin: 0 10px 7px;
    color: white;
}

.quiz-result__description {
    margin: 0 2px 2px 0;
	border-radius: 10px;
	padding: 10px;
    background-color: white;
    box-shadow: #D6B657 1px 1px 0 1px;
}

.quiz-result__description__text, .quiz-result__count {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
}

.quiz-result__description > :not(:first-child) {
    margin-top: 3px;
}

.quiz-result__count {
    border-bottom: 2px solid #BC8E34;
    padding: 0 30px 4px 0;
    max-width: 100%;
    /* https://css-tricks.com/injecting-line-break/ */
    display: table;
    position: relative;
}

/*.quiz-result__count::after {
    content: '';
    margin-top: 4px;
    max-width: 100%;
    height: 2px;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    background-color: #BC8E34;
}*/

.quiz-result__description__text > :not(:first-child) {
    margin-top: 3px;
}

.quiz-result__share-wrap {
    margin: 35px auto;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
}

.quiz-result__share-wrap > :not(:first-child) {
    margin-top: 10px;
}

.quiz-result__share-text {
    
}

.quiz-result__share {
    height: 50px;
}

.quiz-result__share .ya-share2__container_size_l .ya-share2__badge .ya-share2__icon {
    height: 50px;
    width: 50px;
    background-size: 50px 50px;
}

.quiz-result .button-again {
    margin: 45px auto 0;
}

/* Все варианты ответов в две колонки */
@media (min-width: 650px) {
    .quiz-question__answers {
        margin-top: 75px;
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto 20px auto;
        -ms-grid-columns: minmax(250px, 1fr) 27px minmax(250px, 1fr);
            grid-template: auto auto / repeat(2, minmax(250px, 1fr));
        grid-gap: 20px 27px;
    }
    
    /* Для поддержки больше 4 вариантов ответа для IE нужно добавить больше подобных правил */
    .quiz-question__answers > :nth-child(n + 1) { -ms-grid-row: 1; }
    .quiz-question__answers > :nth-child(n + 3) { -ms-grid-row: 3; }
    .quiz-question__answers > :nth-child(n + 5) { -ms-grid-row: 5; }
    .quiz-question__answers > :nth-child(n + 7) { -ms-grid-row: 7; }
    .quiz-question__answers > :nth-child(2n + 1) { -ms-grid-column: 1; }
    .quiz-question__answers > :nth-child(2n + 2) { -ms-grid-column: 3; }
    
    .quiz-question__answers > :not(:first-child) {
        margin-top: 0;
    }
    
    .button-answer {
        margin: 0;
    }
}

@media (min-width: 768px) {
    .quiz-questions {
        padding-right: 20px;
    }

    .quiz-title {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 15px 1fr;
            grid-template:
            "text image" auto /
             1fr  1fr;
        grid-gap: 0 15px;
        position: relative;
    }
    
    .quiz-title.container {
        padding-right: 0;
    }
    
    .quiz-title__image {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
        margin: 0;
        padding: 100px 0;
    }
    
    .quiz-title__bg {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
        margin: 0;
        width: calc(50vw - 15px / 2);
    }
    
    .quiz-title__text {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        padding: 0;
        /* align-self: center; */
    }
    
    .quiz-title .quiz-title__text::after {
        display: none;
    }
    
    .quiz-title__description {
        
    }
    
    .quiz-result__wrap {
        position: relative;
    }
    
    .quiz-result__wrap::after {
        content: '';
        display: block;
        width: 30.67%;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        background: #ECECEC;
        z-index: -1;
    }
    
    .quiz-result {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto 50px auto;
        -ms-grid-columns: auto 20px minmax(200px, 338px);
            grid-template:
            "banner banner" auto
            "share  again" auto /
             auto   minmax(200px, 338px);
        grid-gap: 50px 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        background: white;
    }
    
    .quiz-result.container {
        margin: 70px auto;
        border-radius: 10px;
        padding: 35px 35px 60px;
    }
    
    .quiz-result.container::before, .quiz-result.container::after {
        content: none;
    }
    
    .quiz-result__banner {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
        grid-area: banner;
        margin: 0;
    }
    
    .quiz-result__share-wrap {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
        grid-area: share;
        margin: 0;
        display: flex;
        align-items: center;
        text-align: left;
        font-size: 20px;
    }
    
    .quiz-result__share-text {
        flex: 0 0 0;
    }
    
    .quiz-result__share {
        flex: 0 0 auto
    }
    
    .quiz-result__share-wrap > :not(:first-child) {
        margin: 0 0 0 20px;
    }
    
    .quiz-result .button-again {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
        grid-area: again;
        margin: 0;
        justify-self: flex-end;
    }
}

@media (min-width: 992px) {
    .quiz-result {
        
    }
    
    .quiz-result__banner {
        
    }
    
    .quiz-result__image {
        
    }
    
    .quiz-result__text {
        max-width: calc((100% - 35px * 2) * 0.6);
        font-size: 20px;
        left: 35px;
        right: 35px;
        bottom: 35px;
    }
    
    .quiz-result__heading {
        margin: 0 28px 15px;
    }
    
    .quiz-result__description {
        margin: 0 4px 4px 0;
        border-radius: 20px;
        padding: 28px;
        box-shadow: #D6B657 2px 2px 0 2px;
    }
    
    .quiz-result__description b, .quiz-result__description strong, .quiz-result__count {
        
    }
    
    .quiz-result__count {
        padding-right: 100px;
        padding-bottom: 10px;
    }
    
    .quiz-result__count::after {
        
    }
    
    .quiz-result__description > :not(:first-child), .quiz-result__description__text > :not(:first-child) {
        margin-top: 13px;
    }
    
    .quiz-result__share-wrap {
        
    }
    
    .quiz-result__share-wrap > :not(:first-child) {
        
    }
    
    .quiz-result__share-text {
        flex: 0 0 auto;
    }
    
    .quiz-result__share .ya-share2__container_size_l .ya-share2__badge .ya-share2__icon {
        
    }
    
    .quiz-result .button-again {
        
    }
}

/*
Использование --aspect-ratio в style="" элементов
https://css-tricks.com/aspect-ratio-boxes/
*/
[style*="--aspect-ratio"] > :first-child {
    width: 100%;
}
[style*="--aspect-ratio"] > img {
    height: auto;
}
@supports (--custom:property) {
    [style*="--aspect-ratio"] {
        position: relative;
    }
    [style*="--aspect-ratio"]::before {
        content: "";
        display: block;
        padding-bottom: calc(100% / (var(--aspect-ratio)));
    }  
    [style*="--aspect-ratio"] > :first-child {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }
}

