@font-face {
	font-family: 'GolosTextWebRegular';
	src: 
		url(/assets/fonts/golos-text_regular.woff2) format('woff2'),
		url(/assets/fonts/golos-text_regular.woff) format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'GolosTextWebBold';
	src: 
		url(/assets/fonts/golos-text_bold.woff2) format('woff2'),
		url(/assets/fonts/golos-text_bold.woff) format('woff');
	font-weight: normal;
	font-style: normal;
}

:root {
    --red-color: #892d24;
    --green-color: #4E8924;
    --blue-color: #248189;
	--black-color: #100504;
	--sepia-color: #f4f1e6;
    --gold-color: #c5ad6b;
    --white-color: #ffffff;
    --bg-color: #ececec;
    --grey-color: #C9C9C9;
}



.green-text {
    color: #8c161b
}

.btn-green,
.btn-green:hover,
.btn-green:active {
    background: #8c161b
}

.red-bg {background: #8c161b}
.gold-bg {background: #c5ad6b}
.sepia-bg {background: #f4f1e6}
.gray-bg {background: #f1f1f1}
.black-bg {background: #28160A}

.gold-border {border-bottom: solid #c5ad6b 4px !important;}


/* ---------------------------------------------------------------------------- GLOBAL */

body {
    font-family: 'GolosTextWebRegular', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
    background: var(--bg-color);
}

main {
    width: 100%;
    max-width: 1280px;
    min-height: 600px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--white-color);
    padding: 20px;
}

.container {
    width: 96%;
    max-width: 1280px;
 }

.white-block {
    background: white;
    padding: 0.1px 1.5rem;

}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 108px;
}

.logotype {
    height: 90px;
}

.sitename {
    text-align: center;
    line-height: 1;
    font-size: 18px;
    color: #353D4A;
}

/* h1,h2,h3,h4,h5, .topnav0 .title {
	font-family: PobedaBold;
} */

h1 {
    margin: 1rem 0;
    font-weight: 700;
    font-size: 2.6rem;
}

h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.weight700 {
    font-weight: 700 !important
}

.weight600 {
    font-weight: 600
}

.weight500 {
    font-weight: 500
}

.weight400 {
    font-weight: 400
}

.weight300 {
    font-weight: 300
}

.block {
    display: block !important
}

td, th {
    padding: 30px 5px;
}

.fixed {
    position: fixed
}
.relative {position: relative}

.content {
    a {
        font-weight: bold;
        border-bottom: solid #8c161b 1px;
        cursor: pointer;

        &:hover {
            color: #8c161b
        }
    }

    ul > li {
        position: relative;
        padding: 5px 20px;
        list-style-type: none;

        &:before {
            content: "";
            display: block;
            position: absolute;
            left: 0;
            top: 13px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gold-color);
        }
    }

    strong {
        font-weight: 700;
    }
}


.small {
    font-size: .7em
}

.hidden {
    display: none !important
}

.unbold {
    font-weight: normal !important
}

.clear {
    clear: both
}


.card .card-content strong {
    display: block;
    font-weight: 700;
    line-height: 1;
    height: 33px;
    overflow: hidden;
}

.card .card-content > ul {
    padding-left: 40px;
    list-style-type: circle;
}

.card .card-content > ul > li {
    list-style-type: circle;
}

.card-news {
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    top: 0;
    transition: .3s;
    color: var(--black-color);

    .card-news__image {
        background-position: center;
        background-size: cover;
        width: 100%;
        aspect-ratio: 5 / 4;
    }

    .card-news__content {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin: 5px 0;
        height: 140px;
        overflow: hidden;

        .card-news__time {
            font-size: 0.9rem;
        }

        .card-news__title {
            font-weight: 700;
            font-size: 1.1rem;
            line-height: 1.1;
            transition: .3s;
        }

        .card-news__description {
            font-size: 1rem;
            line-height: 1.1;
            opacity: .8;
        }
    }

    &:hover {
        top: -10px;

        .card-news__title {
            color: var(--red-color);
        }
    }
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
    padding: 0 24px;
    font-size: 0.9rem;
    line-height: 0;
    background: var(--red-color);
    color: var(--white-color);
    opacity: 1;
    transition: 0.5s;
    
    &:hover {
        opacity: .7; 
    }
}

.news-content-image {
    background-color: var(--bg-color);
    padding: 10px;
    box-shadow: 0px 0px 0px 1px var(--grey-color);
}

.block4x5 {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.block4x5:before {
    content: "";
    padding-top: 125%;
    float: left;
}

.justify {text-align:justify}

.card .justify p {
    margin: 20px 0;
}


.pagination {text-align:center}
.pagination li.active {
	background: #28160A;
}

.chip.active, .chip:active, .chip:focus {
	background: #28160A;
	color:white;
}

.justify a {
    position: relative;
    padding-bottom: 5px;
    border-bottom: solid 1px transparent;
    transition: all 0.3s;
    color: #2196f3;
}

.justify a:hover {
    border-bottom: solid #2196f3 1px;
    color: #2196f3;
}

/* -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- NAVBAR
*/

.navbar {
    position: relative;
}

.line-0 {
    position: relative;
    margin-bottom: 0;
    z-index: 100;
    font-size: 1em;
    font-weight: bold;
    line-height: 50px;
    height: 108px;
}

nav ul a  {
    color: var(--black-color);

    &:hover {
        color: var(--green-color);
        background: none;
    }
}

/* .navbar nav.line-0 ul a {
    color: #555;
    ;
} */

/* .line-0 ul {
    padding: 0px;
    margin: 0;
    width: 100%;
}

.line-0 ul li {
    float: left;
    list-style-type: none;
    font-size: 1em;
}

.line-0 .login-btn {
    text-transform: none;
    text-align: left;
    font-size: 12px;
}

.line-0 .fas {
    font-size: 26px;
    padding-right: 0px;
    line-height: 60px;
} */

/* nav.line-0 ul a


 */


.navbar .nav-link {
    font-size: 17px;
    font-weight: 400;
    color: white;
    font-family: magistral, sans-serif;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
    background-color: #ebebeb;
    color: #555;
}

.navbar .topnav .navbar-nav .nav-item .nav-link:hover {
    background-color: #adc624;
    color: white;
}

.navbar-collapse {
    margin-left: 200px !important;
}

.navbar-fixed-my {
    position: relative;
    height: 170px;
    margin-bottom: 0px;
}

.topnav0 {
    position: absolute;
    z-index: 100;
    width: 100%;
    box-shadow: none;

}

.topnav {
    position: absolute;
    z-index: 90;
    width: 100%;
    top: 108px;
    height: 62px;
    line-height: 62px;
    background: #95231e;
}


.topnav .nav-wrapper {
 /*    background: #28160a;
 
    z-index: 10;
     */
}

.topnav .label-icon {
    left: auto !important;
    right: 20px;
}

.topnav .fa-search {
    font-size: 1.3rem !important;
    line-height: 58px !important;
}


.topnav .container {
    position: relative;
    height: inherit;
}

.topnav.fix {
    position: fixed;
    top: 0;
}


/* nav ul a:hover {
    background-color: #c4ad6e;
} */

/* .topnav a, */
.topnav .topmenu a {
    color: var(--white-color);
    font-size: 1rem;
    /* text-transform: uppercase;
    font-weight: 400;
    outline: none; */
    &:hover {
        background-color: #5c1411;
    }
}

/* .topnav ul a i {
    margin-left: 0;
} */

.topnav .dropdown-content {
    min-width: 150px;
}

#sidenav-overlay {
    z-index: 996 !important;
}

.topnav .fa {
    margin-left: 4px;
    font-size: 0.6em;
}

.topnav .fa.fa-bars {
    font-size: 1.5em
}

.dropdown-content {
    background: #c5ad6b;
}

.dropdown-content li {
    border-bottom: solid white 1px;
}

.dropdown-content li > a,
.dropdown-content li > span {
    font-size: 1rem;
    color: white;
/*     color: #27160b;
font-weight: bold; */
}

.dropdown-content li:hover,
.dropdown-content li.active {
    background-color: rgba(0, 0, 0, 0.1);
}

.mobile_submenu {
    margin-left: 30px;
    border-left: solid #86ba35 2px;
}

nav.breadcrumbs {
    background: transparent;
    box-shadow: none;
    line-height: 1.5em;
    padding-top: 20px;
}

nav.breadcrumbs:before {
    content: '';
    display: block;
    width: 100%;
    height: 10px;
}

.breadcrumb,
.breadcrumb:before {
    color: #95989a;
    font-size: 1em;
    font-weight: 400;
}

.breadcrumb:last-child {
    color: #28160b;
}



.search_container {
    position: absolute;
    width: 100%;
    height: 64px;
    background: white;
    z-index: 3;
    top: -10px;
    transition: top .5s;
    border-bottom: solid #e8eced 1px;
}

.search_container.active {
    top: 64px;
}

.search_container form {
    line-height: 0;
}

.search_container input[type=search] {
    margin: 0;
    border: 0;
    height: 60px;
    border: none !important;
    box-shadow: none !important;
    font-size: 1.8rem;
    font-family: magistral, sans-serif;
    text-align: center;
    color: #555;
}

.search_container button {
    position: absolute;
    right: 0;
    top: 10px;
    font-size: 40px;
    line-height: 23px;
    text-align: center;
}

.search_container button .fa {
    margin-left: 2px
}


.topmenu .fas {
    line-height: 62px
}



.mobile_submenu {
	border-color:#c5ad6b
}

/* ---------------------------------------------------------------------------- LOGO
*/

.topnav0 .container,
.topnav .container {
    padding-left: 0px;
    position: relative;
}

.logo {
    display: block;
    position: absolute;
    transition: width .25s;
    font-family: magistral, sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    line-height: 0;
    top: 10px;
    border: solid #fafafa 17px;
    border-bottom: 0;
    background: #fafafa;
    left: 0px;
}

.logo img {
    height: 156px;
}

.topnav0 .title {
    display: inline-block;
    font-size: 3em;
    line-height: 1.2em;
    color: #353D4A;
    font-weight: normal;
    padding-top: 28px;
    float: left;
}

@media (max-width: 600px) {
    .logo {
        border-left: 0
    }

    .logo img {
        height: 70px;
    }

	.topnav {
		top:0px;
	}
    .navbar .title {
        font-size: 1.2rem;
        font-weight:900;
		text-align:center;
		float:none;
		display:block;
    }
    .line-0 {
    	height:0px;
	}
	.navbar-fixed-my {height:80px;} 
    
    nav .sidenav-trigger {
        margin: 4px 15px
    }
    
}

@media only screen and (max-width: 1100px) and (min-width: 993px) {
    .topnav .logo .hide-on-small-only {
        display: none !important
    }

    .topnav .logo .hide-on-med-and-up {
        display: inline !important;
        padding-top: 10px;
    }
}


/* ---------------------------------------------------------------------------- BREADCRUMBS
*/

nav {
    background: none;
    box-shadow: none;
}

.breadcrumbs {
    border-bottom: solid #C9C9C9 1px;
}

.breadcrumb:before {
    content: "/";
}

/* ---------------------------------------------------------------------------- INDEX
*/

.slider-section {
	padding-top:20px;
}
.slider-section .container .row {margin-bottom:0}
.slider .caption {
    font-weight: 400;
    max-width: 700px;
    font-size: 3em;
    line-height: 1.2em;
    padding-top: 70px;
    text-shadow: rgba(0, 0, 0, .76) 0 3px 6px;
}
/* 
.index .news-section {
	padding-top:20px;
}

.news-section .card .card-content {
    overflow: hidden;
}

.card .card-content p {
    font-size: 0.9em;
    line-height: 1;
    margin-top: 10px;
} */

/* .news-section a {
    color: #353D4A;
} */

.index section.articles {
	background:#f1f1f1;
}

.index section.articles .article h3 {
    font-size: 2rem;
    color: #28160a;
}

@media (max-width: 600px) {
    .slider .caption {
        font-size: 1.7em;
    }
}

/* NEWS */

.news-section {
    padding-bottom: 50px;
}

.chip {
    background: white;
}

.news-section .title {
    text-align: right;
    text-transform: uppercase;
    color: #C9C9C9;
    height: 2.45em;
    padding-top: 2em;
    margin-bottom: 2em;
    font-size: 2em;
    position: relative;
    border-bottom: solid #C9C9C9 1px;
}

.news-section .title span {
    background: #f2f2f2;
    padding-left: 2em;
}

.card {
    display: block;
    box-shadow: none;
    border: solid 3px #e9ecec;
    margin-top:0;
    border:none;
}

.card-image {
    background-position: center;
    background-size: cover;
    aspect-ratio: 5/4;
}

.card .card-content {
    overflow: hidden;
    font-weight: 400;
}

.news-section .card-content {
    height: 140px;
}

.btn {
    text-transform: none;
    border-radius: 5px;
}

.btn-black {
	background: #28160A !important;
	padding: 6px 65px;
    width: auto;
    height: auto;
    color:white !important;
    box-shadow:none;
}
.btn.btn-black:hover, .btn.btn-black:active, .btn.btn-black:focus {
	box-shadow: 0 4px 0 0 #c5ad6b !important;
}

.btn-orange {
    background: #c5ad6b;
    color: white;
    box-shadow: none;
}

.btn-orange:hover {
    background: #b94815;
    box-shadow: none;
}

.btn-transparent {
    box-shadow: none
}

.btn-transparent,
.btn-transparent:hover,
.btn-transparent:focus {
    background: white;
    border: solid #353D4A 1px;
    border: solid 3px #e9ecec;
    color: #28160a;
    text-transform: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
    padding: 6px 65px;
    width: auto;
    height: auto;
}

.btn-transparent .fas {
    opacity: .8;
    font-size: .8em;
    padding-left: 20px;

}

.news-section .card.animated .card-image {
    animation: fade-in-card-image .7s ease
}

.news-section .card.animated .card-content {
    animation: fade-in-card-content .7s ease
}

.card .card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card .card-action .time {
    font-size: 0.8em;
}

@keyframes fade-in-card-image {
    0% {
        opacity: 0;
        height: 0px;
    }

    100% {
        opacity: 1;
        height: 385px;
    }
}

@keyframes fade-in-card-content {
    0% {
        opacity: 0;
        height: 0px;
    }

    100% {
        opacity: 1;
        height: 183px;
    }
}


/* ARTICLES */

section.articles {
    margin-top: 50px;
    margin-bottom: 70px;
}

section.articles .article {
    display: block;
    position: relative;
    width: 100%;
    height: 362px;
    background: #E9ECEC;
    color: #28160a;
    padding: 112px 42px 0;
    border-radius: 4px;
    margin-top: 70px;
    font-size: 1.1em;
    line-height: 1.2em;
    font-weight: 400;
}

.article .square-icon {
    left: 42px;
    top: -45px;

    font-size: 3.4rem;
    line-height: 362px;

    position: absolute;
    left: 42px;
    top: -45px;
    width: 114px;
    height: 114px;
    background: #0075BF;
    border-radius: 4px;
    text-align: center;
    line-height: 114px;
    color: white;
}

section.articles .article h3 {
    font-size: 2.4rem;
    line-height: 3rem;
    font-weight: 500;
    margin: 0;
    margin-bottom: 10px;
}



section.articles .article:before {
    content: "Перейти";
    position: absolute;
    left: 42px;
    bottom: 56px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
}

section.articles .article:after {
    display: block;
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    content: "\f054";
    left: 113px;
    bottom: 49px;
    font-size: 9px;
    opacity: .7;
}


/* GALLERY */

.gallery-section a {
    display: block;
    color: #28160A;
    font-size: 2.1em;
    text-align: center;
    transition: all .6s;
    height: 500px;
    padding-top: 120px !important;
    text-transform: uppercase;
    font-weight: 400;
}

.gallery-section a .fas {
    margin-bottom: 30px;
    font-size: 5em;

}

.gallery-section a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, .9);
    color: #8c161b;
}

@media (max-width: 600px) {
    .gallery-section a {
        height: 210px;
        padding-top: 20px !important;
        margin-top: 30px;
        border-radius: 10px;
    }

    .gallery-section a .fas {
        font-size: 3em;
    }
}

.fotonum {
    position: absolute;
    left: -18px;
    top: -40px;
    width: 90px;
    text-align: center;
}

.fotogallery .btn-floating {
    overflow: visible;
}

.fotogallery .card-content {
    font-size: 1.2em;
    font-weight: 400;
}

.fotogallery .card-content .title {
    height: 80px;
    overflow: hidden;
}

.fotogallery .small {
    font-size: 1rem;
    color: #bbb;
}

.my-gallery a {
    display: block;
    line-height: 0;
}

figure {
    margin: 0;

}


/* ---------------------------------------------------------------------------- МСУ
*/

.mcu-page .article {
    display: block;
    position: relative;
    width: 100%;
    height: 362px;
    background: #E9ECEC;
    color: #28160a;
    padding: 180px 42px 0;
    border-radius: 4px;
    margin-top: 70px;
    font-size: 1.1em;
    line-height: 1.2em;
    font-weight: 400;
}

.mcu-page .article .square-icon {
    left: 42px;
    top: -45px;

    font-size: 3.4rem;
    line-height: 362px;

    position: absolute;
    left: 42px;
    top: -45px;
    width: 180px;
    height: 180px;
    background: #fff;
    border: solid 3px #e9ecec;
    border-radius: 4px;
    text-align: center;
    line-height: 114px;
    padding: 20px;
}

.mcu-page .article .square-icon .img {
    width: 140px;
    height: 140px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.mcu-page .article h3 {
    font-size: 2.4rem;
    line-height: 3rem;
    font-weight: 500;
    margin: 0;
    margin-bottom: 10px;
}

.mcu-page .card {
    display: block;
    box-shadow: none;
    border: solid 3px #e9ecec;
    margin-top: 64px;
}

.mcu-page .card .card-content {
    padding-top: 76px;
}

.mcu-page h3,
.mcu-page h4 {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #28160a;
    position: absolute;
    top: -60px;
    background: #e9ecec;
    border-radius: 4px;
    padding: 20px 40px;
    margin-right: 3em;
}

.dep-card {
    display: block;
    clear: both;
    border: none !important;
    padding: 2em 0;
}

.dep-card .dep-img {
    width: 200px;
    height: 266px;
    background-size: cover;
    background-position: center;
    margin-right: 2em;
    float: left;
}

.name-dep {
    font-size: 1.6rem;
    padding-right: 4rem;
    width:300px;
    float:left;
    line-height:1.2em;
}
.name-dep .izbir {
	font-size:1rem;
	font-weight:normal;
}

@media (max-width: 600px) {
	.mcu-page .article {
		margin-top:0;
		padding:1.5rem;
		height:auto;
	}
	.mcu-page .article .square-icon {
		position:relative;
		left:0; top:0;
		width:100px;height:100px;
		padding:0;
	}
	.mcu-page .article .square-icon .img {width:94px;height:94px;}
	.mcu-page #map {margin-top:1.5rem !important;}
	.mcu-page .card .card-content {
	    padding-top: 76px !important;
	}
	.mcu-page h1 {
		font-size:1.8rem;
		margin-bottom:0;
	}
	.mcu-page h3 {
		display:block;
		width: 100%;
		font-size:1rem;
		font-weight:900;
	}
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------ MAP
*/

#map {
	height:500px;
	position:relative;
}

@media (max-width: 600px) {
	#map {
		height:300px;
	}
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------ LIST
*/

.push {
    list-style: none;
}

.push li {
    position: relative;
    padding: 5px 0 5px 40px;
    cursor: pointer;
}

.push li:before {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #999999;
    content: "";
    left: 0;
    transition: .3s ease-in-out;
    top: 14px;
}

.push li:after {
    position: absolute;
    border-left: 1px dotted #999999;
    width: 1px;
    bottom: -11px;
    content: "";
    left: 3px;
    top: 26px;
}

.push li:hover:before {
    box-shadow: 0 0 0 10px rgba(139, 195, 74, 0.5)
}

.push li:last-child:after {
    content: none;
}



.push li:hover:before {
    box-shadow: 0 0 0 10px rgba(139, 195, 74, 0.5);
    background: white;
}

.courses-ul-84.push li:hover:before {
    box-shadow: 0 0 0 10px rgba(139, 195, 74, 0.5)
}

.courses-ul-85.push li:hover:before {
    box-shadow: 0 0 0 10px rgba(57, 73, 171, 0.5)
}

.courses-ul-86.push li:hover:before {
    box-shadow: 0 0 0 10px rgba(142, 36, 170, 0.5)
}

.courses-ul-87.push li:hover:before {
    box-shadow: 0 0 0 10px rgba(251, 140, 0, 0.5)
}

.push small {
    padding-left: 30px;
    display: block;
}

.push a:hover span {
    border-bottom: dashed #424242 1px
}


/* ---------------------------------------------------------------------------- DEPUTAT
*/

.dep-page .square-icon {
    float: left;
    width: 180px;
    height: 180px;
    background: #fff;
    border: solid 3px #e9ecec;
    border-radius: 4px;
    text-align: center;
    line-height: 114px;
    padding: 20px;
    margin: 0 2em 2em 0;
}

.dep-page .square-icon .img {
    width: 140px;
    height: 140px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.dep-page .gerb {
	position:absolute;
	right:0; bottom:0;
	width:100px; height:100px;
	border: solid 3px #e9ecec;
    border-radius: 4px;
	background-position:center;
	background-size:contain;
	background-repeat:no-repeat;
	background-color:white;
}

@media (max-width: 600px) {
	.dep-page h2 {
		margin-top:0;
		font-size:1.5rem !important;
	}
	
	.dep-page .square-icon {
		display:none
	}
}

/* ---------------------------------------------------------------------------- СЪЕЗДЫ СОВЕТА
*/

.scrollspy-toc.fix {
    position: fixed;
    top: 70px;
}

.s-soveta .scrollspy-toc a {
    font-weight: 400;
    border-bottom: none;
    cursor: pointer;
}

.s-soveta .table-of-contents a.active {
    font-weight: 400;
    padding-left: 14px;
    border-left: 2px solid #8c161b;
}

.s-soveta .table-of-contents a:hover {
    color: #8c161b;
    padding-left: 15px;
    border-left: 1px solid #8c161b;
}


.file.file.file {
    display: inline-block;
    margin: 20px 0 10px 60px;
    color: black;
    font-size: 15px;
    font-weight: 400;

    position: relative;

    padding-bottom: 5px;
    border-bottom: solid 1px transparent;
    transition: all 0.3s;
}

.file.file.file:hover {
    border-bottom: solid #c5ad6b 1px;
    color: #c5ad6b;
}

.file i {
    position: absolute;
    font-size: 2.5rem;
    left: -50px;
    top: -5px;
    transition: all 0.3s;
    opacity: .7;
}

.file.file.file:hover i {
    color: #c5ad6b
}

/*
.file.file.file:hover i.fa-file-pdf {color:#b90604}
.file.file.file:hover i.fa-file-word {color:#1759bb}
*/


.documents .collapsible {
	box-shadow:none;
}

.documents .collapsible .collapsible-header{
	font-weight:bold;
}

/* ---------------------------------------------------------------------------- FOOTER
*/
/* 
footer,
footer a {
    color: white
}

footer .row {
    margin-bottom: 0;
}

footer .row:first-child {
    background: #28160A;
    min-height: 285px;
    padding: 57px 0;
    font-size: 16px;
}

footer .row:first-child img {
    height: 106px;
    margin: 8px 24px 24px 0;
}

footer .row:first-child .col:last-child {
    font-size: .9rem;
    line-height: 1.7rem;
}

footer .row:first-child .col:last-child a:after {
    display: inline;
    position: relative;
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 11px;
    content: "\f054";
    color: white;
    right: -15px;
    top: -1px;
    opacity: 0.6;
}

footer .row:last-child {
    background: #c5ad6b;
    padding: 17px 0;
    font-size: 14px;
    color:black;
}

footer .soc-icons {
    clear: both;
}

footer .soc-icons .fab {
    display: inline-block;
    color: #04578b;
    background: #ffffffbf;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    width: 52px;
    height: 52px;
    line-height: 52px;
    margin-right: 6px;
}

footer .fab:hover {
    background: white;
} */

.page-footer {
    margin: 20px 0 0;
    background-color: var(--black-color);

    .row:last-child {
        margin-bottom: 0;
        padding: 20px 0;
        border-top: 1px solid #c9c9c969;
    }

    .madein {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        
        .madein__text {
            margin-right: 10px;
        }
        
        .madein__link {
            .madein__logo svg {
                height: 30px;
                
                .st3 {
                    transition: .5s;
                    fill: var(--red-color);
                }
            }
            
            &:hover {
                .madein__logo svg {
                    .st3 {
                        fill: #008080;
                    }
                }
            }
        }
    }
}






.window-icon {
    width: 10px;
    height: 10px;
    position: absolute;
    right: -15px;
    top: 2px;
}

.window-icon path {
    fill: #ffffff
}

.bytic-text {
    color: #ffffff;
}

.hovercolor:hover .hoverorange {
    color: #28160A
}


a[target="_blank"] {
    position: relative
}










/* ---------------------------------------------------------------------------- FORMS
*/

.colorred {
    color: #c9614e;
}
#recaptchaForm .white-bg {
	position: relative;
}

#recaptchaForm .step {
	position: absolute;
	left: 0.4em;
	top: -0.4em;
	width: 1.3em;
	height: 1.3em;
	font-size: 3em;
	border-radius: 1em;
	background-color: #0175d5;
	color: white;
	font-family: 'Times New Roman', Times, serif;
	text-align: center;
	line-height: 1.3em;
}

#recaptchaForm .title {
	color: #0175d5;
	border-bottom: solid #eeeeee 2px;
	font-size: 1.3em;
	padding: 0 0 0.5em 4.5em;
}

#recaptchaForm .row_title_container {
	display: table;
	min-height: 3.5em;
}

#recaptchaForm .row_title {
	text-align: right;
	display: table-cell;
	vertical-align: top;
	font-size: 1.2em;
	margin-bottom: 0.5em;
}

@media only screen and (max-width: 992px) {
	#recaptchaForm .row_title {
		text-align: left;
	}
}

#recaptchaForm .input-field {
	margin-top: 0;
}

#recaptchaForm .select-wrapper .disabled {
	display: none
}

#recaptchaForm .select-wrapper span.caret {
	color: #0175d5;
	font-size: 1em;
}

#recaptchaForm input,
#recaptchaForm .select-wrapper input.select-dropdown,
#recaptchaForm textarea.materialize-textarea:not([readonly]) {
	color: #9e9e9e;
	border-bottom: solid #0175d5 2px;
	box-shadow: none;
}

#recaptchaForm input:focus {
	border-bottom: solid #0175d5 2px !important;
	box-shadow: 0 1px 0 0 #0175d5 !important;
}

#recaptchaForm input,
#recaptchaForm .select-wrapper input.select-dropdown {
	margin: 0;
	height: 1.5em;
	line-height: 1.5em;
	font-size: 0.9em;
}

#recaptchaForm .dropdown-content li>a,
#recaptchaForm .dropdown-content li>span {
	color: black;
}

#recaptchaForm input::-webkit-input-placeholder {
	color: #9e9e9e;
}

#recaptchaForm input::-moz-placeholder {
	color: #9e9e9e;
}


/* Firefox 19+ */

#recaptchaForm input:-moz-placeholder {
	color: #9e9e9e;
}


/* Firefox 18- */

#recaptchaForm input:-ms-input-placeholder {
	color: #9e9e9e;
}

#recaptchaForm .input-field.col label {
	left: 0;
	line-height: 1em;
	height: 1em;
	padding-left: 2em;
	padding-right: 0.3em;
	color: #0175d5;
	top: 0.4em;
}

#recaptchaForm .input-field.col label:last-child {
	padding-right: 0;
}

#recaptchaForm [type="checkbox"].filled-in:not(:checked)+label:after {
	border: 1px solid #7d7d7d;
	border-radius: 0;
	width: 15px;
	height: 15px;
}

#recaptchaForm [type="checkbox"].filled-in:checked+label:after {
	width: 15px;
	height: 15px;
	border: 1px solid #0175d5;
	background-color: #0175d5;
	z-index: 0;
}

#recaptchaForm [type="checkbox"].filled-in:checked+label:before {
	width: 5px;
	height: 10px;
}

#recaptchaForm .multirow {
	margin-top: -0.8em;
}

#recaptchaForm hr {
	width: 60%;
	border-width: 2px;
}

.submit {
	margin: 1em;
	background: #0175d5;
}

#recaptchaForm .error input,
#recaptchaForm .error .select-wrapper input.select-dropdown,
#recaptchaForm .error textarea.materialize-textarea {
	border-bottom-color: #c9614e;
}

#recaptchaForm .error .select-wrapper span.caret {
	color: #c9614e;
}

#recaptchaForm .error input#child_addr_korp,
#recaptchaForm .error input#child_addr_flat {
	border-bottom-color: #0175d5;
}

#recaptchaForm .error [type="checkbox"].filled-in:not(:checked)+label:after {
	border: 2px solid #c9614e;
}

#recaptchaForm .error {
	/*background:#fff0f0;*/
}

#recaptchaForm .error_text {
	display: none;
	background-color: #c9614e;
	color: white;
	text-align: center;
	border-radius: 3px;
	padding: 0.3em !important;
	width: 20% !important;
}

#recaptchaForm .error .error_text {
	display: block;
	height: 3em;
	z-index: 10;
	position: relative;
	line-height: 3em;
	padding: 0 !important;
}

.reception {
	display: none
}

.reception [type="radio"]+label:before,
.reception [type="radio"]+label:after {
	top: -4px;
}

.reception [type="radio"]:checked+label:after,
.reception [type="radio"].with-gap:checked+label:after {
	background: #0175d5;
}

.reception [type="radio"]:checked+label:after,
.reception [type="radio"].with-gap:checked+label:before,
.reception [type="radio"].with-gap:checked+label:after {
	border-color: #0175d5;
}

.reception .jurfield {
	display: none;
}

.file-field .btn {
	position: relative;
	height: 36px;
	line-height: 36px;
	float: none;
	background: #0175d5;
}

.file-field input[type=file] {
	position: absolute;
	left: -1000px;
	width: 2000px;
	font-size: 50px !important;
}

.file-field .file-path-wrapper {
	overflow: visible;
	padding: 0;
	padding-top: 1em;
}

[type="radio"]:checked+span:after, [type="radio"].with-gap:checked+span:after {
    background-color: #0175d5;
}
[type="radio"]:checked+span:after, [type="radio"].with-gap:checked+span:before, [type="radio"].with-gap:checked+span:after {
    border: 2px solid #0175d5;
}

a.btn, a.btn-large, a.btn-small {
	border:none;
}


#modal_success {
	text-align:center;
	max-width:500px;
}
#modal_success h5 {
	margin:30px;
}

.close_modal_btn {
	display: block;
	position: absolute;
	right: 15px;
	top: 15px;
	width: 50px;
	height: 50px;
	
	font-size: 3em;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	border:solid #e3e3e3 0px;
	text-align: center;
	line-height: 50px;
	pointer-events: all;
	z-index: 10000;
	color: #436c52;
	cursor: pointer;
	transition:all 0.3s
}
.close_modal_btn:hover {
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
	font-size: 4em;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%;
	/* 16:9 */
	padding-top: 25px;
	height: 0;
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.video_btn {
    cursor: pointer;
}
.video_btn .card .card-title {
    color: #555;
    font-weight: bold;
}


/* ---------------------------------------------------------------------------------------------------------------------------------- КОНТАКТЫ
*/
.soc-icons-contacts a i {
	height: 40px;
    width: 40px;
    border: 2px solid #353d4a3b;
    border-radius: 50%;
    text-align: center;
    line-height: 37px;
}

.soc-icons-contacts a:hover i {
	border-color:#86ba35;
	color:#86ba35;
}



/* ---------------------------------------------------------------------------------------------------------------------------------- MEDIA
*/

@media screen and (max-width: 800px) {
  table {
    border: 0;
  }
  table thead {
    display: none;
  }
  table tr {
    margin-bottom: 10px;
    display: block;
    border-bottom: 2px solid #ddd;
  }
  table td {
    display: block;
    text-align: right;
    font-size: 14px;
    border-bottom: 1px dotted #ccc;
    border-right: 1px solid transparent;
  }
  table td:last-child {
    border-bottom: 0;
  }
  table td:before {
    content: attr(data-label);
    float: left;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
  }
}

@media (max-width: 1600px) {
	.container {width:90%}
}
@media (min-width: 1150px) {
	header .my-hide-on-large-only {display:none;}
}
@media (max-width: 1150px) {
	header .my-hide-on-med-and-down {display:none;}
	nav a.sidenav-trigger {display:block;}
}