/*Grid adjust*/

.grid {
    margin: 0 -10px;
    /*margin: 0 -15px;*/
    }
    .grid__item {
        /*padding: 0 15px 30px;*/
        padding: 0 10px;
        /*padding: 0 15px;*/
        /*margin-bottom: 30px;*/
        }
        .grid > .grid__item.grid {
            margin-left: 0;
            margin-right: 0;
            padding: 0;
            }

.grid._slider-s {
    flex-wrap: nowrap;
    overflow: hidden;
    }
    .grid._slider-s > .grid__item {
        margin-left: 0;
        transition: all 0.3s ease;
        }

/*Fonts*/

@font-face {
    font-family: 'Monserrat';
    src: url("../fonts/Montserrat-Medium.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
    }
@font-face {
    font-family: 'Monserrat';
    src: url("../fonts/Montserrat-Bold.otf") format("opentype");
    font-weight: bold;
    font-style: normal;
    }
@font-face {
    font-family: 'Monserrat';
    src: url("../fonts/Montserrat-SemiBold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    }
@font-face {
    font-family: 'Monserrat';
    src: url("../fonts/Montserrat-Light.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
    }
/*@font-face {*/
    /*font-family: 'Bodoni';*/
    /*src: url("/fonts/BodoniBold.ttf") format("truetype");*/
    /*font-weight: bold;*/
    /*font-style: normal;*/
    /*}*/
/*@font-face {*/
    /*font-family: 'Bodoni';*/
    /*src: url("/fonts/BodoniItalic.ttf") format("truetype");*/
    /*font-weight: normal;*/
    /*font-style: italic;*/
    /*}*/
/*@font-face {*/
    /*font-family: 'Bodoni';*/
    /*src: url("/fonts/BodoniBoldItalic.ttf") format("truetype");*/
    /*font-weight: bold;*/
    /*font-style: italic;*/
    /*}*/

/*Common styles*/

body {
    position: relative;
    font-family: 'Monserrat', sans-serif;
    /*font-size: 14px;*/
    font-size: 13px;
    line-height: 1.5;
    color: #272727;
    background: #fff;
    }
input,
a {
    outline: none;
    }

.wrapper {
    position: relative;
    /*padding-top: 85px;*/
    /*padding-bottom: 380px;*/
    padding-bottom: 365px;
    min-height: 100vh;
    }

.c-title {

    }
.c-title:before {

    }
    .c-title__link {

        }
.c-subtitle {

    }
.c-inner {
    padding: 10px 10px 10px;
    /*padding: 70px 10px 0;*/
    margin: 0 auto;
    max-width: 1200px;
    }
.c-link {
    color: #e0b163;
    }
.c-link:visited:hover,
.c-link:hover {
    color: #e0b163;
    text-decoration: none;
    }
.c-bg {
    background: #f8f8f8;
    }
.c-content {
    margin-bottom: 50px;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    }

.slider-overlay {

	}
	.slider-overlay .control {
		position: absolute;
		z-index: 13;
		display: block;
		font-size: 0;
		cursor: pointer;
		transition: all 0.3s ease;
		}
	.slider-overlay .control._prev {

		}
	.slider-overlay .control._prev:hover {

		}
	.slider-overlay .control._next {

		}
	.slider-overlay .control._next:hover {

		}

a {
    text-decoration: none;
    transition: all 0.3s ease;
    }
/*a:visited {*/
    /*color: #b4bcc2;*/
    /*}*/
a:visited:hover,
a:hover {
    color: #000;
    }

.btn:visited,
.btn {
    padding: 0 20px;
    display: inline-block;
    border-radius: 5px;
    font-size: 15px;
    line-height: 45px;
    color: #fff;
    text-decoration: none;
    background: #555f9a;
    transition: all 0.3s ease;
    }
.btn:hover,
.btn:visited:hover,
.btn:focus,
.btn:visited:focus {
    color: #fff;
    text-decoration: underline;
    }

.btn:disabled {
    background: #f1f3f5;
    color: #c9d0d4;
    cursor: default;
    }
.btn:disabled:hover {
    box-shadow: none;
    }
.btn._small {
    padding: 0 10px;
    font-size: 11px;
    line-height: 20px;
    }
.btn._yellow {
    background: #e0b163;
    }
.btn._red {
    background: #e51148;
    }

.radio {
    margin: 0 0 10px;
    /*display: block;*/
    display: inline-block;
    }
    .radio input[type="radio"] {
        display: none;
        }
    .radio__label {
        position: relative;
        padding: 0 10px 0 25px;
        display: block;
        }
    .radio__label:before,
    .radio__label:after {
        position: absolute;
        display: block;
        border-radius: 50%;
        transition: all 0.3s ease;
        content: '';
        }
    .radio__label:before {
        top: 2px;
        /*top: 0;*/
        left: 0;
        width: 16px;
        height: 16px;
        border: 1px solid #87949d;
        }
    .radio__label:after {
        top: 5px;
        /*top: 3px;*/
        left: 3px;
        height: 10px;
        width: 10px;
        background: #f00;
        opacity: 0;
        transition: all 0.3s ease;
        }
    .radio input[type="radio"]:checked ~ .radio__label:after {
        opacity: 1;
        }

.check {
    margin: 0 0 10px;
    /*display: block;*/
    display: inline-block;
    }
    .check input[type="checkbox"] {
        display: none;
        }
    .check__label {
        position: relative;
        padding: 0 10px 0 25px;
        display: block;
        }
    .check__label:before,
    .check__label:after {
        position: absolute;
        display: block;
        transition: all 0.3s ease;
        content: '';
        }
    .check__label:before {
        top: 2px;
        /*top: 0;*/
        left: 0;
        width: 16px;
        height: 16px;
        border: 1px solid #87949d;
        }
    .check__label:after {
        top: 5px;
        /*top: 3px;*/
        left: 3px;
        height: 10px;
        width: 10px;
        background: #f00;
        opacity: 0;
        transition: all 0.3s ease;
        }
    .check input[type="checkbox"]:checked ~ .check__label:after {
        opacity: 1;
        }

.c-input {
    margin: 10px 0 10px;
    padding: 0 20px;
    height: 50px;
    width: 100%;
    display: inline-block;
    border: 1px solid #87949d;
    border-radius: 5px;
    background: #f7f7f7;
    /*font-family: "Open Sans";*/
    font-family: "Monserrat";
    font-size: 14px;
    color: #000;
    transition: all 0.3s ease;
    }
.c-input::placeholder {
    /*font-family: "Open Sans";*/
    font-family: "Monserrat";
    font-size: 14px;
    color: #999999;
    }
/*.c-input:focus,*/
.c-input._filled {
    border-radius: 5px;
    background: #fff;
    box-shadow: none;
    outline: none;
    }
.c-input:focus,
.c-input:hover {
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 0 0 5px #f1f3f5;
    outline: none;
    }

.c-text {
    margin: 10px 0 10px;
    padding: 15px 20px;
    min-height: 120px;
    width: 100%;
    display: inline-block;
    border: 1px solid #87949d;
    border-radius: 5px;
    /*font-family: "Open Sans";*/
    font-family: "Monserrat";
    font-size: 14px;
    background: #f7f7f7;
    color: #000;
    transition: all 0.3s ease;
    }
.c-text::placeholder,
.c-text:-moz-placeholder,
.c-text::-webkit-input-placeholder {
    /*font-family: "Open Sans";*/
    font-family: "Monserrat";
    font-size: 14px;
    color: #999999;
    }
/*.c-text:focus,*/
.c-text._filled {
    border: 1px solid #87949d;
    background: #fff;
    box-shadow: none;
    outline: none;
    }
.c-text:focus,
.c-text:hover {
    background: #fff;
    box-shadow: 0 0 0 5px #f1f3f5;
    outline: none;
    }

.c-select {
    margin: 10px 0 10px;
    padding: 0 20px;
    height: 50px;
    width: 100%;
    display: inline-block;
    border: 1px solid #87949d;
    border-radius: 5px;
    /*font-family: "Open Sans";*/
    font-family: "Monserrat";
    font-size: 14px;
    color: #000;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background: #f7f7f7 url(../img/icons/s_bg_1.png) calc(100% - 10px) center no-repeat;
    }
.c-select._active,
.c-select:focus {
    box-shadow: 0 0 0 5px #f1f3f5;
    outline: none;
    background: #f7f7f7 url(../img/icons/s_bg_2.png) calc(100% - 10px) center no-repeat;
    }
.c-select:hover {
    box-shadow: 0 0 0 5px #f1f3f5;
    background-color: #fff;
    }
    .c-select > option {
        padding: 0 15px;
        border-color: transparent;
        line-height: 30px;
        }
    .c-select > option:hover {
        background: #f7f7f7;
        color: #000000;
        }

.c-input._alert,
.c-select._alert,
.c-text._alert {
    border-color: #f00;
    box-shadow: 0 0 0 5px #ffe0e0;
    }

.c-form {

    }
    .c-form__unit {

        }
    .c-form__unit._check {
        padding: 20px 0;
        }
    .c-form__unit._btns {
        /*margin-bottom: 50px;*/
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        align-items: flex-start;
        }
        .c-form__unit._btns > * {
            margin-bottom: 20px;
            }

.hint {
    position: relative;
    display: inline-block;
    color: #798790;
    text-decoration: underline;
    text-decoration-style: dotted;
    }
    .hint__popup {
        display: none;
        position: absolute;
        z-index: 13;
        bottom: calc(100% + 5px);
        left: calc(50% - 100px);
        padding: 10px 20px;
        min-width: 200px;
        background: #e7edf1;
		font-size: 14px;
        color: #798790;
        /*opacity: 0;*/
        transition: all 0.3s ease 0.1s;
        }
    .hint__popup:after {
        position: absolute;
        top: 100%;
        left: calc(50% - 11px);
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 11px 0 11px;
        border-color: #f0f0f0 transparent transparent transparent;
        content: '';
        }
    .hint:hover .hint__popup {
        display: block;
        /*opacity: 1;*/
        }

/*.main {*/
	/*padding: 30px 0;*/
    /*}*/
/*.main._scroll {*/
    /*overflow-x: auto;*/
    /*}*/
    /*.main p {*/
        /*margin: 0 0 15px;*/
        /*!*margin: 0 0 20px;*!*/
        /*!*margin: 0 0 40px;*!*/
        /*}*/
    /*.main em {*/
        /*font-style: italic;*/
        /*}*/
    /*.main strong {*/
        /*font-weight: bold;*/
        /*}*/
    /*.main .t-title {*/
        /*margin-bottom: 3px;*/
        /*display: block;*/
        /*border-bottom: 4px solid #f00;*/
        /*font-size: 14px;*/
        /*font-style: italic;*/
        /*color: #798790;*/
        /*}*/
    /*.main table {*/
        /*width: 100%;*/
		/*font-size: 14px;*/
        /*}*/
        /*.main thead {*/
            /*font-family: 'Bodoni Cyrillic';*/
            /*!*font-family: 'Bodoni';*!*/
            /*font-weight: bold;*/
			/*font-size: 18px;*/
			/*line-height: 1.2;*/
            /*background: #e7edf1;*/
            /*color: #798790;*/
            /*}*/
        /*.main tbody {*/
            /*}*/
        /*.main tr {*/
            /*border-top: 1px solid #87949d;*/
            /*border-bottom: 1px solid #87949d;*/
            /*}*/
        /*.main td {*/
            /*padding: 15px;*/
            /*vertical-align: middle;*/
            /*}*/
    /*.main ol,*/
    /*.main ul {*/
        /*padding-left: 30px;*/
        /*font-weight: bold;*/
        /*}*/
        /*.main ol li,*/
        /*.main ul li {*/
            /*padding-left: 5px;*/
            /*font-family: 'Bodoni Cyrillic';*/
			/*font-size: 22px;*/
            /*color: #798790;*/
            /*}*/
            /*.main ol span,*/
            /*.main ul span,*/
            /*.main ol p,*/
            /*.main ul p {*/
                /*font-family: 'Open Sans', sans-serif;*/
				/*font-size: 16px;*/
                /*font-weight: normal;*/
                /*color: #000;*/
                /*}*/
    /*.main ol {*/
        /*list-style-type: decimal;*/
        /*}*/
        /*.main ol  ol {*/
            /*list-style-type: upper-alpha;*/
            /*}*/
            /*.main ol  ol  ol {*/
                /*list-style-type: lower-alpha;*/
                /*}*/
                /*.main ol  ol  ol ol {*/
                    /*list-style-type: lower-roman;*/
                    /*}*/
    /*.main ul {*/
        /*list-style-type: square;*/
        /*}*/
        /*.main ul ul {*/
            /*list-style-type: square;*/
            /*}*/
            /*!*.main ul ul li {*!*/
                /*!*position: relative;*!*/
                /*!*}*!*/
            /*!*.main ul ul li:before {*!*/
                /*!*position: absolute;*!*/
                /*!*top: 9px;*!*/
                /*!*left: -16px;*!*/
                /*!*height: 3px;*!*/
                /*!*width: 3px;*!*/
                /*!*background: #ffffff;*!*/
                /*!*content: '';*!*/
                /*!*}*!*/
            /*.main ul ul ul {*/
                /*list-style-type: disc;*/
                /*}*/
                /*.main ul ul ul ul {*/
                    /*list-style-type: circle;*/
                    /*}*/
    /*.main ul.list {*/
        /*padding: 0;*/
        /*list-style: none;*/
        /*font-weight: normal;*/
        /*}*/
        /*.main ul.list li {*/
            /*padding: 0 0 10px 40px;*/
            /*}*/
            /*.main ul.list li > * {*/
                /*!*font-weight: normal;*!*/
                /*}*/
            /*.main ul.list li > strong,*/
            /*.main ul.list li > b {*/
                /*margin: 0 0 0 -40px;*/
                /*display: block;*/
				/*font-size: 20px;*/
                /*font-weight: bold;*/
                /*color: #000;*/
                /*}*/
    /*.main blockquote {*/
        /*margin-bottom: 20px;*/
        /*padding-left: 60px;*/
        /*font-size: 30px;*/
        /*!*font-style: italic;*!*/
        /*color: #798790;*/
        /*}*/
    /*.main img {*/
        /*max-width: 100%;*/
        /*width: auto;*/
        /*height: auto;*/
        /*}*/

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 10px;
    /*font-family: 'Bodoni Cyrillic';*/
	/*font-weight: normal;*/
    font-weight: bold;
    }
h1 {
    font-size: 46px;
    }
h2 {
    font-size: 46px;
    }
h3 {
    font-size: 38px;
    }
h4 {
    font-size: 30px;
    }
h5 {
    font-size: 26px;
    }
h6 {
    font-size: 22px;
    }

/*Header*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 27;
    padding: 10px;
    /*padding: 10px 0;*/
    background: rgba(255,255,255,0.7);
    /*background: #f8f8f8;*/
    border-bottom: 1px solid #fff;
	}
	.header__inner {
        margin: 0 auto;
        max-width: 1200px;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
		}

/*Navigation*/

.nav {
    flex: 1 1 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    }
    .nav ul {
    	display: block;
	    list-style-type: none;
	    margin-block-start: 0;
	    margin-block-end: 0;
	    margin-inline-start: 0px;
	    margin-inline-end: 0px;
	    padding-inline-start: 0;
	    flex: 1 1 100%;
	    display: flex;
	    flex-flow: row nowrap;
	    justify-content: space-between;
    }
    .menu-item {
        position: relative;
        height: 44px;
        display: flex;
        align-items: center;
        text-transform: uppercase;
        font-weight: bold;
        }
        .menu-item a {
        	text-decoration: none;
            color: #333;
        }
        .nav > ul > .menu-item:before {
            position: absolute;
            bottom: 2px;
            left: 0;
            height: 2px;
            width: 40px;
            content: '';
            transition: all 0.3s ease;
            }
    .menu-item:hover {

        }
        .nav > ul > .menu-item:hover:before {
            background: #fff;
            }
    .menu-item.current-menu-item {

        }
        .menu-item.current-menu-item:before {
            background: #e0b163;
            }
        .menu-item a {
            text-decoration: none;
            color: #333;
            }
        ul.sub-menu {
            position: absolute;
            z-index: 13;
            top: 100%;
            /*top: calc(100% + 2px);*/
            max-width: 380px;
            box-shadow: 0 0 3px rgba(0,0,0,0.3);
            background: #fff;
            display: none;
            }
        .menu-item:hover > ul.sub-menu {
            display: block;
            }
            ul.sub-menu .menu-item {
                height: auto;
                }
            ul.sub-menu .menu-item i {
                position: absolute;
                left: 15px;
                top: 13px;
                }
            ul.sub-menu .menu-item a {
            	min-width:300px;
            	max-width:300px;
                padding: 10px 15px 10px 40px;
                display: block;
                font-weight: normal;
                text-decoration: none;
                transition: all 0.3s ease;
                color: #333;
                }
            ul.sub-menu .menu-item a:hover {
                background: #cecac3;
                color: #fff;
                text-decoration: none;
                }

/*Mobile navigation*/

.burger-overlay {
    position: relative;
    display: block;
    }
.burger {
    position: relative;
    height: 2px;
    width: 25px;
    display: block;
    background: #4c4c4c;
    transition: all 0.3s ease;
	}
.burger:before,
.burger:after {
    position: absolute;
    left: 0;
    height: 2px;
    width: 25px;
    background: #4c4c4c;
    content: '';
    transition: all 0.3s ease;
    }
.burger:before {
    top: 5px;
    /*top: 10px;*/
	}
.burger:after {
    bottom: 5px;
    /*bottom: 10px;*/
	}
#trigger:checked ~ .burger-overlay .burger {
    background: transparent;
    }
#trigger:checked ~ .burger-overlay .burger:before {
    top: 0;
    transform: rotateZ(45deg);
	}
#trigger:checked ~ .burger-overlay .burger:after {
    bottom: 0;
    transform: rotateZ(-45deg);
    }

#trigger {
    display: none;
    }

/*Mobile navigation*/

.m-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 10px 0;
    height: 100vh;
    /*min-height: 100vh;*/
    overflow-y: auto;
    display: none;
    flex-flow: column nowrap;
    align-items: center;
    background: #fff;
    /*background: rgba(255,255,255,0.7);*/
    }
    .m-nav__search {
        width: 100%;
        margin: 0 auto 10px;
        padding: 10px;
        border-bottom: 1px solid #3e3e40;
        }
    .m-nav .menu-item {
        padding: 0 10px;
        height: 44px;
        line-height: 44px;
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
        text-transform: uppercase;
        font-weight: bold;
        /*display: block;*/
        width: 100%;
        text-decoration: none;
        color: #333;
        transition: all 0.3s ease;
        }
    .m-nav .menu-item:hover,
    .m-nav .menu-item:focus {
        background: #e0b163;
        }

#trigger:checked ~ .m-nav {
    display: flex;
    /*display: block;*/
    }

/*Logo*/

.logo {
    margin-right: 50px;
    display: block;
    flex-grow: 0;
    flex-shrink: 0;
    }
    .logo img {
        height: auto;
        max-height: 100%;
        width: auto;
        /*max-width: 100%;*/
        }

/*Main sections*/

.section {

    }
    .section__item {
        position: relative;
        margin-bottom: 15px;
        height: 150px;
        display: flex;
        flex-flow: row nowrap;
        }
        .section__item-pic {
            position: relative;
            z-index: 3;
            display: block;
            /*flex: 0 0 60%;*/
            overflow: hidden;
            width: 50%;
            }
            .section__item-pic img {
                margin: 0;
                height: auto;
                /*max-height: 100%;*/
                width: auto;
                /*max-width: 100%;*/
                display: block;
                }
        .section__item-shader {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 5;
            width: 50%;
            height: 100%;
            background: #e0b163;
            transition: all 0.3s ease;
            }
            .section__item-shader:before {
                position: absolute;
                top: 0;
                left: calc(100% - 1px);
                width: 0;
                height: 0;
                border-style: solid;
                border-width: 150px 45px 0 0;
                border-color: #e0b163 transparent transparent transparent;
                content: '';
                }
        .section__item:hover .section__item-shader {
            top: 5px;
            left: 5px;
            }
        .section__item-desc {
            position: relative;
            z-index: 7;
            padding: 20px 10px;
            /*flex: 0 0 40%;*/
            display: flex;
            flex-flow: column nowrap;
            background: #f3f3f3;
            width: 50%;
            }
            .section__item-desc:before {
                position: absolute;
                top: 0;
                left: calc(100% - 1px);
                /*height: 150px;*/
                /*width: 45px;*/
                /*background: #f3f3f3;*/
                width: 0;
                height: 0;
                border-style: solid;
                border-width: 150px 45px 0 0;
                border-color: #f3f3f3 transparent transparent transparent;
                content: '';
                }
            .section__item-desc-title {
                position: relative;
                padding-left: 20px;
                text-transform: uppercase;
                font-weight: bold;
                }
                .section__item-desc-title:before {
                    position: absolute;
                    left: 0;
                    content: '';
                    }
                .section__item-desc-title i {
                    position: absolute;
                    left: 0px;
                    top: 2px;
                    }
            .section__item-desc-list {
                display: block;
                }
                .section__item-desc-list-item {
                    position: relative;
                    padding-left: 10px;
                    display: block;
                    font-size: 12px;
                    }
                    .section__item-desc-list-item:before {
                        position: absolute;
                        top: calc(20%);
                        left: 0;
                        height: 6px;
                        width: 6px;
                        background: #272727;
                        content: '';
                        }

/*News*/

.news {

    }
    .news__list {

        }
    .news__item {
        padding: 10px 30px 0;
        /*padding: 10px 30px 5px;*/
        margin-bottom: 25px;
        border-radius: 10px;
        box-shadow: 0 2px 0 #dfdfdf;
        background: #fff;
        }
    .news__item._big {
        height: calc(100% - 25px);
        }
        .news__item-pic {
            margin: -10px -30px 0;
            /*margin: -15px -30px 0;*/
            }
            .news__item-pic img {
                margin-bottom: 30px;
                /*margin-bottom: 25px;*/
                width: 100%;
                height: auto;
                display: block;
                }
        .news__item-title {
            margin-bottom: 15px;
            display: block;
            font-weight: 700;
            color: #555f9a;
            text-decoration: none;
            }
        .news__item-title:hover {
            text-decoration: underline;
            }
        .news__item-text {
            margin-bottom: 15px;
            display: block;
            height: 40px;
            overflow: hidden;
            color: #3e3e40;
            }
        .news__item._big .news__item-text {
            height: auto;
            overflow: visible;
            }
        .news__item-bottom {
            display: flex;
            flex-flow: row wrap;
            justify-content: space-between;
            }
            .news__item-date {
                margin-bottom: 10px;
                font-size: 11px;
                font-weight: 100;
                }
            .news__item-info {
                margin-bottom: 10px;
                display: flex;
                flex-flow: row nowrap;
                }
                .news__item-info-item {
                    width: 60px;
                    padding-left: 20px;
                    display: block;
                    font-size: 11px;
                    font-weight: bold;
                    color: #999;
                    }
                    .news__item-info-item i {
                    	margin-right:5px;
                    }

/*Sources*/

.src {

    }
    .src__unit {
        position: relative;
        margin-bottom: 30px;
        }
    .src__unit:hover {

        }
        .src__item {
            position: relative;
            z-index: 7;
            height: 83px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 21px;
            text-transform: uppercase;
            text-align: center;
            background: url("../img/romb-bg.png") center no-repeat;
            background-size: 100%;
            transition: all 0.3s ease;
            }
        .src__unit:hover .src__item {
            background-image: url("../img/romb-bg-h.png");
            }
        .src__subitem {
            position: absolute;
            z-index: 5;
            left: 0;
            top: 5px;
            width: calc(100% - 18px);
            height: 80px;
            display: flex;
            flex-flow: row nowrap;
            align-items: flex-end;
            background: #555f9a;
            transition: all 0.3s ease;
            }
        .src__subitem:before {
            position: absolute;
            bottom: 0;
            left: 100%;
            /*left: calc(100% - 1px);*/
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 80px 18px 0 0;
            border-color: #555f9a transparent transparent transparent;
            content: '';
            }
        .src__unit:hover .src__subitem {
            top: 25px;
            }
            .src__subitem-controls {
                display: flex;
                flex-flow: row nowrap;
                height: 25px;
                align-items: center;
                }
                .src__subitem-controls-item {
                    position: relative;
                    padding: 0 25px 0 20px;
                    text-decoration: none;
                    color: #fff;
                    }

/*Activities*/

.acts {
    padding-top: 25px;
    }
    .acts .grid__item {
        /*padding-bottom: 25px;*/
        }
    .acts__list {

        }
        .acts__item {
            position: relative;
            padding: 10px 15px;
            margin-bottom: 25px;
            border-radius: 5px;
            box-shadow: 0 0 3px rgba(0,0,0,0.5);
            }
        .acts__item._big {
            height: calc(50% - 25px);
            display: flex;
            flex-flow: row wrap;
            align-items: flex-start;
            }
            .acts__item-title {
                position: relative;
                z-index: 7;
                margin-bottom: 10px;
                width: 100%;
                font-size: 17px;
                font-weight: 700;
                }
            .acts__item._big .acts__item-title {
                font-size: 21px;
                }
            .acts__item._big .acts__item-desc {
                height: auto;
                overflow: visible;
                }
            .acts__item-desc {
                position: relative;
                z-index: 7;
                margin-bottom: 10px;
                width: 90%;
                height: 60px;
                overflow: hidden;
                }
            .acts__item-date {
                position: relative;
                z-index: 7;
                margin-bottom: 10px;
                width: 100%;
                font-weight: 100;
                }
            .acts__item-btn {
                position: relative;
                z-index: 7;
                margin-bottom: 5px;
                width: 100%;
                display: flex;
                justify-content: flex-end;
                }
            .acts__item-btns {
                position: relative;
                z-index: 7;
                margin-bottom: 5px;
                width: 100%;
                align-self: flex-end;
                display: flex;
                flex-flow: row wrap;
                justify-content: space-between;
                }
                .acts__item-btns .btn {

                    }
            .acts__item img {
                position: absolute;
                z-index: 5;
                bottom: 0;
                right: 0;
                height: 100%;
                /*max-height: 90%;*/
                width: auto;
                display: block;
                }

/*Partners*/

.partners {
    padding: 0 15px;
    background: #dddee3;
    }
    .partners__inner {
        margin: 0 auto;
        max-width: 1200px;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        align-items: center;
        }
    .partners__item {
        margin: 15px 0;
        }
        .partners__item img {
            width: auto;
            height: auto;
            max-height: 100%;
            max-width: 100%;
            }

/*Slider*/

/*Footer*/

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #fff;
    background: #131313;
    }
    .footer__inner {
        padding: 20px 10px;
        margin: 0 auto;
        max-width: 1200px;
        }
    .footer__unit {
        /*margin-bottom: 15px;*/
        height: 100%;
        }
    .footer__logo {
        margin-bottom: 15px;
        display: block;
        }
        .footer__logo img {
            max-width: 100%;
            height: auto;
            filter: grayscale(1);
            -webkit-filter: grayscale(1);
            }
    .footer__adress {
        font-size: 15px;
        font-weight: 100;
        color: #d8d8d8;
        }
    .footer__feed {
        height: 100%;
        display: flex;
        flex-flow: row wrap;
        align-items: flex-start;
        color: #fff;
        }
        .footer__feed-title {
            width: 100%;
            font-size: 17px;
            }
        .footer__feed-num {
            width: 100%;
            font-size: 37px;
            font-weight: bold;
            }
        .footer__feed-btn {
            width: 100%;
            align-self: flex-end;
            }
            .feed-btn {
                width: 100%;
                height: 40px;
                font-size: 21px;
                line-height: 40px;
                display: block;
                color: #000;
                text-decoration: none;
                text-transform: uppercase;
                font-weight: 700;
                text-align: center;
                background: #fff;
                border-radius: 3px;
                transition: all 0.3s ease;
                }
            .feed-btn:hover {
                background: #e0b163;
                }
    .footer__copyright {
        padding: 0 10px;
        height: 135px;
        border-top: 1px solid #333333;
        display: flex;
        align-items: center;
        justify-content: center;
        }
        .footer__copyright-text {
            font-size: 14px;
            color: #868686;
            text-align: center;
            }
        .footer__copyright-hlght {
            display: inline-block;
            font-weight: bold;
            color: #e0b163;
            }
        a.footer__copyright-hlght:hover {
            color: #fff;
            }

.map {
    display: block;
    }
    .map img {
        width: 100%;
        height: auto;
        display: block;
        }

._vis {
    display: block;
    }
._vis-f {
    display: flex;
    }
._hid {
    display: none;
    }

input[type='text'],
input[type='email'],
input[type='password'],
input[type='tel'],
input[type='text'],
.c-input,
.c-select {
    padding: 0 10px;
    line-height: 30px;
    border: 1px solid #4c4c4c;
    border-radius: 5px;
    background-color: #fff;
    font-family: 'Monserrat';
    }
input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
input[type='tel']:focus,
input[type='text']:focus {
    border-color: #e0b163;
    }
input[type='submit'] {
    padding: 0 20px;
    display: inline-block;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 15px;
    line-height: 45px;
    color: #fff;
    text-decoration: none;
    background: #555f9a;
    transition: all 0.3s ease;
    cursor: pointer;
    }
input[type='submit']:hover,
input[type='submit']:focus {
    background: #e0b163;
    }
textarea {
    width: 100%;
    padding: 5px 10px;
    /*line-height: 30px;*/
    border: 1px solid #4c4c4c;
    border-radius: 5px;
    background: #fff;
    font-family: 'Monserrat';
    }
textarea:focus {
    border-color: #e0b163;
    }

.search-icon {
    margin-left: 20px;
    cursor: pointer;
    }

#searchform {
    position: fixed;
    top: 100px;
    right: 5%;
    display: none;
    flex-flow: row nowrap;
    }
#searchform._visible {
    display: flex;
    }
    #searchform label {
        display: none;
        line-height: 30px;
        }
    #searchform input {
        padding: 0 15px;
        border-radius: 50px 0 0 50px;
        border: 1px solid #4c4c4c;
        /*border: 1px solid #ccc;*/
        background: #fff;
        line-height: 30px;
        }
    #searchform input[type="text"] {
        width: 200px;
        }
    #searchform input[type="text"]:focus {
       border-color: #e0b163;
        }
    #searchform input[type="submit"] {
        padding: 0 15px;
        border-radius: 0 50px 50px 0;
        cursor: pointer;
        border-color: #e0b163;
        background: #e0b163;
        }

/*Breadcrumbs*/

.breadcrumbs {
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    }
    .breadcrumbs > * {
        margin-right: 5px;
        }
    .breadcrumbs a {
        color: dodgerblue;
        }

/*Search result fixies*/

.c-search-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
    }
.c-search-item:last-child {
    margin-bottom: 20px;
    padding-bottom: 0;
    border-color: transparent;
    }
    .c-search-item h1,
    .c-search-item h2,
    .c-search-item h3,
    .c-search-item h4,
    .c-search-item h5,
    .c-search-item h6 {
        font-size: 17px;
        font-weight: 700;
        color: #555f9a;
        }
    .c-search-item a {
        color: #555f9a;
        }
    .c-search-item img {
        display: none;
        }

/*Common fixies*/

html body a.bvi-link {
    padding: 0 !important;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    font-size: 9px !important;
    background: none !important;
    text-decoration: none;
    }

.tp-tabs,
.tp-thumbs, .tp-bullets {
    top: 60% !important;
    left: 98% !important;
    counter-reset: bullet;
    }

.persephone .tp-bullet {
    margin-bottom: 10px;
    height: 20px;
    width: 20px;
    border: 0;
    background: transparent;
    color: #3e3e40;
    counter-increment: item;
    }
.persephone .tp-bullet:hover,
.persephone .tp-bullet.selected {
    border: 0;
    background: transparent;
    color: #fff;
    }
.persephone .tp-bullet:before {
    content: "0"counter(item);
    }

/*Fotorama fixies*/

.fotorama__nav-wrap {
    position: absolute;
    bottom: 5px;
    }
.fotorama__dot {
    height: 10px;
    width: 10px;
    border: 2px solid #3e3e40;
    background: transparent;
    }
.fotorama__nav__frame.fotorama__active .fotorama__dot {
    height: 10px;
    width: 10px;
    border: 2px solid #3e3e40;
    background: #e0b163;
    border-color: #e0b163;
    }

.comment-metadata,.edit-link {
	display:none;
}

@media (max-width: 640px) {
    ._m-hid {
        display: none;
        }
    ._m-vis {
        display: block;
        }
    ._m-vis-f {
        display: flex;
        }
    .logo {
        overflow: hidden;
        /*width: 75px;*/
        height: 40px;
        margin-right: 15px;
        /*margin-right: auto;*/
        }
    .wrapper {
        padding-top: 60px;
        /*padding-top: 85px;*/
        padding-bottom: 800px;
        /*padding-bottom: 695px;*/
        }
    .menu {
        padding: 0 10px;
        width: 100%;
        }
        .m-nav .menu-item {
            height: auto;
            display: block;
            text-align: center;
            }
        .m-nav .menu-item .menu-item {
            line-height: 1.5;
            height: auto;
            display: block;
            text-align: left;
            }
        ul.sub-menu {
            position: relative;
            margin: 0 -10px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            }
        .menu-item:focus ul.sub-menu,
        .menu-item:hover ul.sub-menu {
            max-height: 1000px;
            }
    .section__item {
        height: auto;
        }
        .section__item-shader {
            display: none;
            }
        .section__item-desc{
            width: 100%;
            font-size: 12px;
            }
            .section__item-desc:before {
                display: none;
                }
            .section__item-desc-list {
                display: none;
                }
        .section__item-pic {
            display: none;
            }
    .acts__item._big .acts__item-title {
        font-size: 17px;
        }
    .acts__item._big .acts__item-desc {
        height: 60px;
        overflow: hidden;
        }
    .partners__inner {
        justify-content: center;
        }
    .footer__unit {
        margin-bottom: 15px;
        }
    }

