/* fonts */
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700|Open+Sans:400,700|PT+Sans");
/* variables */
/* variables ==== fonts */
/* variables colors */
/* global */
body {
        font-family: "PT Sans", sans-serif;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
            flex-direction: column;
        min-height: 100vh;
}

a {
        color: #9fc246;
}
a:hover {
        color: #7c9638;
}

/* bs3 */
.navbar {
        border-radius: 0;
        background-color: #9fc246;
        border: 0;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:focus,
.navbar-inverse .navbar-nav > .active > a:hover {
        background-color: #7c9638;
}

.navbar-inverse .navbar-nav > li > a {
        color: #fff;
        font-family: "Montserrat", sans-serif;
        font-weight: bold;
}
.navbar-inverse .navbar-nav > li > a:hover {
        background-color: #7c9638;
}

.b-sidebar {
        margin-top: 20px;
}
.b-sidebar__menu li a {
        display: block;
        font-family: "Montserrat", sans-serif;
        color: #7c9638;
        padding: 5px 15px;
        transition: .5s all;
}
.b-sidebar__menu li a:hover,
.b-sidebar__menu li a:active,
.b-sidebar__menu li a:focus {
        text-decoration: none;
        background-color: #9fc246;
        color: #fff;
}
.b-sidebar__menu li b {
        border-bottom: 2px solid #9fc246;
        padding: 5px 15px;
        font-weight: bold;
        text-transform: uppercase;
        display: inline-block;
        margin-bottom: 20px;
        font-family: "Montserrat", sans-serif;
}

.b-topheader {
        padding: 5px 0;
        background-color: #9fc246;
}
.b-topheader__list {
        margin-bottom: 0;
}
.b-topheader__list li > a {
        color: #fff;
        font-size: 16px;
}
.b-topheader__list li > a:hover {
        color: #7c9638;
}

.b-header {
        border-bottom: 2px solid #9fc246;
}
.b-header__logo img {
        height: 80px;
}
.b-header__address p {
        margin-bottom: 0;
        margin-top: 10px;
}
.b-header__search {
        margin-top: 20px;
        margin-bottom: 20px;
}
.b-header__search input {
        border-radius: 0;
        border: 1px solid #9fc246;
}
.b-header__search input:focus {
        box-shadow: none;
        border-color: #7c9638;
}
.b-header__search .btn {
        border-radius: 0;
        border: 1px solid #9fc246;
        border-left: 0;
        color: #9fc246;
}

.b-footer {
        background-color: #333;
        padding-top: 20px;
		
}
.b-footer li {
        color: #fff;
}
.b-footer li b {
        font-family: "Montserrat", sans-serif;
        text-transform: uppercase;
        color: #9fc246;
        display: block;
        margin-bottom: 10px;
}
.b-footer li a {
        color: #ddd;
}
.b-footer li a:hover {
        text-decoration: none;
        color: #9fc246;
}
.b-footer__col--socials i {
        margin-right: 5px;
}
.b-footer--bottom {
        background-color: #222;
        padding: 10px;
        color: #fff;
}

.b-layout {
        -ms-flex: 1;
            flex: 1;
	height: 100%;
	
}

.b-content__header {
        text-align: center;
}
.b-content__header h2,
.b-content__header h1 {
        display: inline-block;
        font-family: "Montserrat", sans-serif;
        border-bottom: 2px solid #9fc246;
        padding-bottom: 5px;
}
.b-content__header h1 {
        margin-bottom: 20px;
}

.b-item__tabs {
        padding-left: 0;
	    /*width: 865px;*/
}
.b-item__tabs li {
        display: inline-block;
        list-style-type: none;
		margin-bottom: 5px;
}
.b-item__tabs li a {
        padding: 10px 20px;
        display: block;
        background-color: #f4f5f6;
        transition: .5s all;
        color: #333;
        font-family: "Montserrat", sans-serif;
        font-size: 16px;
        text-transform: uppercase;
}
.b-item__tabs li a:hover,
.b-item__tabs li a:active,
.b-item__tabs li a:focus {
        text-decoration: none;
        background-color: #9fc246;
        color: #fff;
}
.b-item__tabs li.active a {
        background-color: #9fc246;
        color: #fff;
}

.b-item .tab-pane {
        padding: 20px;
        border: 1px solid #eee;
        margin-bottom: 20px;
}
.b-item .tab-pane h3 {
        margin-top: 0;
}

.b-item__thumb {
        margin-bottom: 20px;
}
.b-item__thumb img {
        width: 100%;
}

.b-item__thumbs > img {
        width: 31.3%;
        display: inline-block;
        padding: 5px;
        border: 1px solid #eee;
}

.b-contacts__address a {
        color: #333;
        text-decoration: underline;
}

.b-contacts__address h3 {
        margin-top: 0;
}

.b-contacts__box {
        margin-bottom: 30px;
}

.b-catalog {
        margin: 30px 0;
}
.b-catalog__item {
        background-color: #f4f5f6;
        border: 2px solid #f4f5f6;
        transition: .5s all;
        position: relative;
        margin-bottom: 30px;
}
.b-catalog__item:hover {
        border-color: #9fc246;
}
.b-catalog__item:hover .b-catalog__hover {
        opacity: 1;
}
.b-catalog__hover {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(159, 194, 70, .4);
        background-image: url(../img/hover.png);
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0;
        transition: .5s all;
}
.b-catalog__thumb {
        min-height: 255px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
}
.b-catalog__thumb img {
        max-width: 100%;
        max-height: 100%;
}
.b-catalog__desc {
        padding: 10px;
		box-sizing: border-box;
		height: 75px;
}
.b-catalog__desc h4 {
        margin: 0;
        font-family: "Montserrat", sans-serif;
        margin-bottom: 5px;
}
.b-catalog__desc p {
        margin: 0;
}

.b-partners__item {
        height: 100px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: #f4f5f6;
        padding: 5px;
        margin-bottom: 20px;
}
.b-partners__item img {
        max-width: 100%;
        max-height: 100%;
}

@media (max-width: 767px) {
        .b-catalog__thumb {
                height: auto;
        }
}

@media (max-width: 600px) {
        .b-item__tabs li {
                width: 100%;
        }
}
@media screen and (min-width:0\0) {
    body {
        display: block;
    }
	header {
		top: 0;
	}
}