html.js .loader {
	background: none repeat scroll 0 0 #ffffff;
	bottom: 0;
	height: 100%;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 9999;
}

html.js .loader_inner {
    background-image: url("../img/preloader.gif");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #fff;
	height: 60px;
	width: 60px;
	margin-top: -30px;
	margin-left: -30px;
	left: 50%;
	top: 50%;
	position: absolute;
}

* {
    box-sizing: border-box;
}


html {
    height: 100%; 
}

/*safari*/

_::-moz-svg-foreign-content, :root .top-menu > li > a{
	font-size: 14px;
	padding: 0 21px;
}


_::-moz-svg-foreign-content, :root .block-3{
	width: 19%;
	text-align: left;
	padding-right: 100px;
	word-wrap: break-word;
}

/**/

body {
	font-size: 16px;
	min-width: 320px;
	line-height: 1.428;
	font-family: "RobotoRegular", sans-serif;
	overflow-x: hidden;
    height: 100%;
	-webkit-font-smoothing: subpixel-antialiased;
}

.hidden {
    display: none;
}


@media only screen and (min-width : 200px) {
	
    .container {
        width: 100%;
        margin: 0 auto;
        padding: 0;
	}
}

@media only screen and (min-width : 992px) {
    
    .container {
        width: 940px;
        margin: 0 auto;
        padding: 0 20px;
	}
}

@media only screen and (min-width : 1280px) {
    
    .container {
        width: 1240px;
        margin: 0 auto;
        padding: 0 0px;
	}
}

.wrapper {
    position: relative;
    display: block;
    width: 100%;
    min-height: 100%;
    margin: 0 auto;
    padding-bottom: 111px;
}

header {
    background-image: url(../img/bg-head.png);
    
    
}

.content {
    display: inline-block;
    height: 100%;
    width: 100%;
}


footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    background: #3498DB;
    height: 111px;
    background-image: url(../img/bg-head.png);
}

/************************************************/
/*                   navbar                     */
/************************************************/

nav {
    position: relative;
    width: 100%;
    height: 111px;
	z-index: 15;
}

.logo {
    width: 161px;
    height: 161px;
    position: absolute;
    float: left;
    margin-top: 10px;
}

.logo a {
    display: block;
}

.logo a{
width: 100%;
height: 100%;
background-image: url('../img/logotip.png');
background-size: cover;
background-position: center center;
}

nav ul {
    padding: 0;
}

ul.top-menu {
	float: right;
    margin-top: 0;
    height: 111px;
    padding: 0;
}

nav ul li {
    list-style: none;
}

ul.top-menu > li {
    position: relative;
    list-style: none;
    float: left;
}

ul.top-menu > li > a {
    display: inline-block;
    color: #FFF;
    text-transform: uppercase;
    font-size: 14px;
    font-family: "RobotoRegular", sans-serif;
    line-height: 111px;
    text-decoration: none;
    padding: 0 25px;
    transition: .25s;
}
ul.top-menu > li > a.active{
	color: #b1b1b1;
}

ul.top-menu > li.active > a {
    color: #b1b1b1;
	-webkit-transition: transform 0.2s;
    -o-transition: transform 0.2s;
    transition: transform 0.2s;
}

ul.top-menu > li > a:hover {
    text-decoration: underline;
    background-color: #1453a0;
	-webkit-transition: transform 0.2s;
    -o-transition: transform 0.2s;
    transition: transform 0.2s;
}


ul.top-menu > li.dropdown-toggle .sub-m:after {
    display: inline-block;
    content: "";
    width: 16px;
    height: 17px;
	margin-left: 7px;
    margin-bottom: -3px;
    background-image: url(../img/ico-sub.png);
    -webkit-filter: brightness(100);
	filter: brightness(100);
	-webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: transform 0.2s;
    -o-transition: transform 0.2s;
    transition: transform 0.2s;
}

ul.top-menu > li.open .sub-m:after {
    display: inline-block;
    content: "";
    
    margin-left: 8px;
	-webkit-filter: brightness(100%);
	filter: brightness(100%);
	-webkit-transform: rotate(-0deg);
    -ms-transform: rotate(-0deg);
    -o-transform: rotate(-0deg);
    transform: rotate(-0deg);
    -webkit-transition: transform 0.2s;
    -o-transition: transform 0.2s;
    transition: transform 0.2s;
}

ul.top-menu > li.dropdown-toggle ul.dropdown {
    display: none;
}

ul.top-menu > li ul.dropdown {
    
    position: absolute;
    top: 111px;
    left: 0;
    background-color: #1453a0;
    float: left;
    min-width: 160px;
    list-style: none;
    padding: 10px 24px;
}

ul.top-menu > li ul.dropdown a {
    white-space: nowrap;
    color: #FFF;
    text-transform: uppercase;
    font-size: 14px;
    font-family: "RobotoRegular", sans-serif;
    line-height: 35px;
    text-decoration: none;
	
}

ul.top-menu > li ul.dropdown a:hover {
    text-decoration: underline;
}

.menu-but {
    position: relative;
    float: right;
    width: 60px;
    height: 80px;
    background-image: url(../img/btn-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.menu-but.open{
	background-color: #1453a0;
}
.top-menu {
    display: none;
}

@media only screen and (min-width : 200px) {
    
    nav {
        height: 60px;
	}
    
    .menu-but {
        width: 60px;
        height: 60px;
	}
    
    .logo {
        width: 90px;
        height: 90px;
        margin-top: 7px;
        margin-left: 16px;
        z-index: 1001;
	}


	ul.top-menu {
        position: absolute;
        width: 100%;
        height: auto;
        background-color: #1453a0;
        z-index: 1002;
        top: 60px;
        padding: 10px 0;
	}
    
    ul.top-menu > li {
        float: none;
	}
    
    ul.top-menu > li > a {
        width: 100%;
        font-size: 13px;
        padding: 0 10px;
        line-height: 35px;
        text-align: left;
        padding-left: 35px;
	}
    
    ul.top-menu > li.open > a {
        text-decoration: underline;
        background-color: #FFF;
        color: #0b4388;
        font-weight: 700;
        text-decoration: none;
	}
    
    ul.top-menu > li ul.dropdown {
        position: relative;
        background-color: #06346c;
        width: 100%;
        z-index: 2000;
        top: 0;
	}
    
    ul.top-menu > li ul.dropdown a {
        display: inline-block;
        font-size: 13px;
        line-height: 15px;
        width: 100%;
        padding-left: 35px;
        background-image: url(../img/sub-mark.png);
        background-repeat: no-repeat;
        background-position: 10px -1px;
		height: 35px;
		white-space: normal;
	} 
}

@media only screen and (min-width : 768px) {
    
    nav {
        height: 80px;
	}

    .menu-but {
        width: 60px;
        height: 80px;
	}
    
    .logo {
        width: 131px;
        height: 131px;
        margin-top: 7px;
        margin-left: 16px;
        z-index: 1001;
	}


    
    ul.top-menu {
        position: absolute;
        width: 100%;
		max-width: 440px;
		right: 0;
        height: auto;
        background-color: #1453a0;
        z-index: 10002;
        top: 80px;
        padding: 10px 0;
        margin-bottom: 0;
	}
	
}

@media only screen and (min-width : 992px) {
    
    nav {
        height: 100px;
	}
    
    .logo {
        width: 151px;
        height: 151px;
        margin-top: 7px;
	}
    
    ul.top-menu {
        position: relative;
        width: 720px;
		max-width: 720px;
        height: 100px;
        top: 0;
        background: none;
        padding: 0;
	}
    
    ul.top-menu > li {
        float: left;
	}
    
    ul.top-menu > li > a {
        font-size: 12px;
        padding: 0 10px;
        line-height: 100px;
	} 
    
    ul.top-menu > li.open > a {
        text-decoration: underline;
        background-color: #1453a0;
        color: #FFF;
        text-decoration: underline;
        font-weight: normal;
	}
    
    ul.top-menu > li.dropdown-toggle .sub-m:after {
        display: none;
	}
    
    ul.top-menu > li.open .sub-m:after {
        display: none;
	}
    
    ul.top-menu > li ul.dropdown {
        position: absolute;
        top: 100px;
        left: 0;
        background-color: #1453a0;
        width: auto;
        min-width: 160px;
        padding: 8px 20px;
	}
    
    ul.top-menu > li ul.dropdown a {
        font-size: 12px;
        line-height: 30px;
        background-image: none;
        padding-left: 0;
		height: auto;
		white-space: nowrap;
	}
    
    .top-menu {
        display: block !important;
	}
    
    .menu-but {
        display: none;
	}
}

@media only screen and (min-width : 1280px) {
    
    nav {
        height: 111px;
	}
    
    .logo {
        width: 161px;
        height: 161px;
        margin-top: 10px;
	}
    
    ul.top-menu {
        position: relative;
        width: 1000px;
		max-width: 1000px;
        height: 111px;
	}
    
    ul.top-menu > li > a {
        font-size: 14px;
        padding: 0 22px;
        line-height: 111px;
	} 
    ul.top-menu > li:last-child a {
        font-size: 14px;
        padding: 0 20px;
        line-height: 111px;
	} 
    ul.top-menu > li ul.dropdown {
        top: 111px;
        min-width: 160px;
        padding: 10px 24px;
	} 
    
    ul.top-menu > li ul.dropdown a {
        font-size: 14px;
        line-height: 35px;
		height: auto;
		white-space: nowrap;
	} 
	
}

/************************************************/
/*                  top-slider                  */
/************************************************/

.carousel-top {
    display: block;
    width: 100%;
    float: left;
}

.owl-carousel-top {
    display: block;
    float: left;
}

.owl-carousel-top a {
    display: block;
    position: relative;
	text-decoration: none;
	
}

.krug {
    display: block;
    width: 400px;
    height: 400px;
    position: absolute;
    z-index: 101;
    top: 50%;
    margin-top: -240px;
    left: 50%;
    margin-left: -200px;
    border: 4px solid rgba(255,255,255,.86);
    border-radius: 50%;
    padding-left: 6px;
    padding-top: 6px;
}

.krug-inner {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background-color: rgba(255,255,255,.86);
    color: #000;
    font-size: 44px;
    text-transform: uppercase;
    font-family: "RobotoCondensedRegular", sans-serif;
    color: #2c2c2c;
}

.krug-inner strong {
    font-family: "RobotoCondensedBold", sans-serif;
    font-size: 44px;
}

.carousel-top .container {
    width: 100%;
    padding: 0;
}

.owl-dots {
    display: block;
    height: 20px;
    text-align: center;
    margin-top: -8%;
    margin-bottom: 8%;
}

.owl-dot {
    width: 18px;
    height: 18px;
    margin: 0 48px;
    background-color: #FFF;
    display: inline-block;
    position: relative;
    border-radius: 50%;
    z-index: 9999;
    border: 2px solid #FFF;
}

.owl-dot:after {
    content: "";
    display: block;
    width: 90px;
    height: 1px;
    background-color: #FFF;
    margin-left: 19px;
    margin-top: 7px;
}

.owl-dot:last-child:after {
    display: none;
}

.owl-dot.active {
    background-color: #06428b;
    border: 2px solid #FFF;
}

@media only screen and (min-width : 200px) {
    .krug {
        width: 125px;
        height: 125px;
        margin-top: -72px;
        margin-left: -60px;
        border: 3px solid rgba(255,255,255,.86);
        padding-left: 5px;
        padding-top: 5px;
	}
    
    .krug-inner {
        width: 110px;
        height: 110px;
        font-size: 12px;
	}
    
    .krug-inner strong {
        font-size: 13px;
	}
    
    .owl-dot {
        margin: 0 12px;
	}
    
    .owl-dot:after {
		width: 18px;
	}
}

@media only screen and (min-width : 768px) {
    .krug {
        width: 300px;
        height: 300px;
        margin-top: -180px;
        margin-left: -150px;
        border: 4px solid rgba(255,255,255,.86);
        padding-left: 6px;
        padding-top: 6px;
	}
    
    .krug-inner {
        width: 280px;
        height: 280px;
        font-size: 36px;
	}
    
    .krug-inner strong {
        font-size: 38px;
	}
    
    .owl-dot {
        margin: 0 38px;
	}
    
    .owl-dot:after {
        width: 70px;
	}
}

@media only screen and (min-width : 992px) {
    
    .krug {
        width: 400px;
        height: 400px;
        margin-top: -240px;
        margin-left: -200px;
	}
    
    .krug-inner {
        width: 380px;
        height: 380px;
        font-size: 44px;
	}
    
    .krug-inner strong {
        font-size: 44px;
	}
    
    .owl-dot {
        margin: 0 48px;
	}
    
    .owl-dot:after {
        width: 90px;
	}
}

/************************************************/
/*                  section s1                  */
/************************************************/

.s1 {
    display: block;
    width: 100%;
    background-image: url(../img/section-bg.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    float: left;
    margin-top: -20px;
    padding-bottom: 0px;
}

.left-date, .right-date{
	font-size: 300px;
    color: #ccc;
    opacity: 0.6;
	font-family: 'RobotoCondensedBold', sans-serif;
	
	z-index: -1;
	letter-spacing: -0.02em;
}

.left-date{
	display: none;
    position: absolute;
    left: 42px;
    bottom: 108px;
}
.right-date{
	display: none;
    position: absolute;
    right: 0px;
    top: -89px;
}

.btn {
    display: block;
	clear: both;
    font-size: 26px;
    font-family: "RobotoCondensedBold", sans-serif;
    color:#06428b;
    text-transform: uppercase;
    text-decoration: none;
    background-image: url(../img/btn3.png);
    width: 232px;
    height: 66px;
    line-height: 66px;
    padding-left: 21px;
    /* transition: .15s; */
    margin: 0 auto;
	cursor: pointer;
}

.owl-carousel-s1 > div {
    
}

.btn:hover {
    color: #FFF;
    background-position: 100%;
}

.btn.back1 {
	display: block;
    clear: both;
    font-size: 26px;
    font-family: "RobotoCondensedBold", sans-serif;
    color: #06428b;
    text-transform: uppercase;
    text-decoration: none;
    background-image: url(../img/btn3-back.png);
	background-position: 232px center !important;
    width: 232px;
    height: 66px;
    line-height: 66px;
    padding-left: 16px;
    /* transition: .15s; */
    margin: 0 auto;
    cursor: pointer;
}
.btn.back1:hover{
	background-position: 0px center !important;	
	color: #fff !important;
}

.s1 .owl-controls{
	margin-top: -49px;
    position: absolute;
    left: 119px;
}
.s1 .btn {
    margin: 0px auto;
	margin-bottom: -20px;
}

.s1 article {
    float: left;
    margin-bottom: 15px;
}

.s1 article:last-of-type {
    margin-bottom: 30px;
}

h1 {
    text-align: center;
    text-transform: uppercase;
    font-size: 40px;
    color: #06428b;
    font-family: 'RobotoCondensedBold', sans-serif;
	
    overflow: hidden;
    line-height: 45px;
}

h2 {
    font-family: 'RobotoCondensedBold', sans-serif;
	
    text-transform: uppercase;
    font-size: 26px;
    color: #2c2c2c;
}

h1 {
    margin-top: 62px;
    margin-bottom: 32px;
}
.s1 h1, .s1 h2{
	margin-top: 53px;
    margin-bottom: 40px;
}

.s1 h2{
	margin:0px;
	padding: 0px;
	margin-top: 32px;
}
.s1 p {
    font-size: 16px;
    color: #2c2c2c;
    line-height: 29px;
	z-index: 10;
	padding: 8px 10px 0px;
	letter-spacing: -0.02em;
}

.s1 img {
    width: auto !important;
}


.left-foto {
    float: left;
    margin-right: 150px;
}

.right-foto {
    float: right;
    margin-left: 180px;
}

h1:before,
h1:after {
	content: '';
	display: inline-block;
	width: 100%;
	height: 3px;
	background: #06428b;
	z-index: -1;
	position: relative;
	vertical-align: middle;
    z-index: 10;
}

h1:before {
	right: 15px;
	margin: 0 0 0 -100%;
}

h1:after {
	left: 15px;
	margin: 0 -100% 0 0;
}

.s1 .owl-dots {
    display: block;
    height: 20px;
    text-align: left;
    margin-top: -130px;
    margin-bottom: 8%;
}

.s1 .owl-dot {
    width: 18px;
    height: 18px;
    margin: 0 46px;
    background-color: #FFF;
    display: inline-block;
    position: relative;
    border-radius: 50%;
    z-index: 9999;
    border: 2px solid #808080;
}

.s1 .owl-dot:after {
    content: "";
    display: block;
    width: 90px;
    height: 1px;
    background-color: #808080;
    margin-left: 19px;
    margin-top: 7px;
}

.s1 .owl-dot:last-child:after {
    display: none;
}

.s1 .owl-dot.active {
    background-color: #06428b;
    border: 2px solid #06428b;
}


.s1 .owl-item .btn.back1{
	display: none !important;
}
.s1 .owl-item:last-child .btn{
	display: none !important;
}
.s1 .owl-item:last-child .btn.back1{
	display: block !important;
}

@media only screen and (min-width : 200px) {
    
    .s1 {
        margin-top: -20px;
        padding-bottom: 0px;
		background-image: none;
	}
    .s1 h1 {
		margin-top: 23px;
		margin-bottom: 18px;
	}
	.s1 h2{
		margin-top: 23px;
		margin-bottom: -5px;
		padding: 0 16px;
	}
	
	.s2 h1{
		margin-top: 30px;
	}
	
    h1 {
        margin-top: 50px;
        margin-bottom: 10px;
	}
    
    h1 {
        font-size: 22px;
        line-height: 35px;
	}
    
    h1:before,
    h1:after {
        height: 2px;
	}
    
    h1:before {
        right: 10px;
        margin: 0 0 0 -100%;
	}
	
    h2 {
        font-size: 18px;
        margin-bottom: 0;
        padding: 0 10px;
	}
    
    h1:after {
        left: 10px;
        margin: 0 -100% 0 0;
	}
    
    .s1 p {
        font-size: 16px;
        line-height: 29px;
        padding: 0 16px;
	}
	
	.s1 img {
		
		margin-bottom: 27px;
		height: auto;
		max-width: 100%;
	}
    
    .s1 .owl-dots {
        display: none !important;
	}
	
	
	.btn {
        display: block;
		clear: both;
		font-size: 16px;
		font-family: "RobotoCondensedBold", sans-serif;
		color: #06428b;
		text-transform: uppercase;
		text-decoration: none;
		background-image: url(../img/btn3.png);
		width: 141px;
		background-size: cover;
		height: 40px;
		line-height: 42px;
		padding-left: 12px;
		/* transition: .15s; */
		margin: 0 auto;
		cursor: pointer;
	}
	.s1 .btn:hover{
		background-position:100%;
	}
	
	.btn.back1 {
		display: block;
		clear: both;
		font-size: 16px;
		font-family: "RobotoCondensedBold", sans-serif;
		color: #06428b;
		text-transform: uppercase;
		text-decoration: none;
		background-image: url(../img/btn3-back.png);
		background-position: 141px center !important;
		width: 141px;
		height: 40px;
		line-height: 40px;
		padding-left: 8px;
		/* transition: .15s; */
		margin: 0 auto;
		cursor: pointer;
	}
	
}

@media only screen and (min-width : 768px) and (max-width : 991px) {
	
	.s1 {
		margin-top: -20px;
		padding-bottom: 0px;
		background-image: none;
	}
	
	h1 {
		margin-top: 70px;
		margin-bottom: 10px;
	}
	
	h1 {
		font-size: 28px;
		line-height: 35px;
	}
	
	h1:before,
	h1:after {
		height: 2px;
	}
	
	h1:before {
		right: 10px;
		margin: 0 0 0 -100%;
	}
	
	h2 {
		font-size: 20px;
		margin-bottom: 0;
		padding: 0 15px;
	}
	
	h1:after {
		left: 10px;
		margin: 0 -100% 0 0;
	}
	
	.s1 p {
		font-size: 16px;
		line-height: 28px;
		padding: 0 15px;
	}
	
	.s1 img {
		width: auto!important;
		margin-bottom: 30px;
		float: none !important;
		margin-left: 15px;
		margin-right: 0;
		height: auto;
	}
	
	.s1 .owl-dots {
		display: none !important;
	}
	
	.btn {
		display: block;
		clear: both;
		font-size: 26px;
		font-family: "RobotoCondensedBold", sans-serif;
		color:#06428b;
		text-transform: uppercase;
		text-decoration: none;
		background-image: url(../img/btn3.png);
		width: 232px;
		height: 66px;
		line-height: 66px;
		padding-left: 21px;
		/* transition: .15s; */
		margin: 0 auto;
		cursor: pointer;
	}
	.btn.back1 {
		display: block;
		clear: both;
		font-size: 26px;
		font-family: "RobotoCondensedBold", sans-serif;
		color: #06428b;
		text-transform: uppercase;
		text-decoration: none;
		background-image: url(../img/btn3-back.png);
		background-position: 232px center !important;
		width: 232px;
		height: 66px;
		line-height: 66px;
		padding-left: 16px;
		/* transition: .15s; */
		margin: 0 auto;
		cursor: pointer;
	}
	
	.s1 h2 {
		margin-top: 33px;
		margin-bottom: 0px;
		padding: 0px 16px;
	}
	
}

@media only screen and (min-width : 992px) {
	
	.s1 {
		margin-top: -20px;
		padding-bottom: 0px;
		background-image: url(../img/section-bg.png);
	}
	
	h1 {
		text-align: center;
		text-transform: uppercase;
		font-size: 40px;
		color: #06428b;
		font-family: 'RobotoCondensedBold', sans-serif;
		
		overflow: hidden;
		line-height: 45px;
	}
	
	h2 {
		font-family: 'RobotoCondensedBold', sans-serif;
		
		text-transform: uppercase;
		font-size: 26px;
		color: #2c2c2c;
	}
	h1{
		margin-top: 62px;
		margin-bottom: 32px;
	}
	
	.s1 h1, .s2 h1 {
		margin-top: 53px;
		margin-bottom: 40px;
	}
	
	.s1 p {
		font-size: 16px;
		color: #2c2c2c;
		line-height: 29px;
		padding: 8px 0px 0px;
	}
	
	.s1 img {
		width: auto !important;
	}
	.s2 h1{
		margin-top: 50px;
	}
	.s1 h2 {
		margin-top: 33px;
		margin-bottom: 0px;
		padding: 0px 0;
	}
	.left-foto {
		float: left !important;
		margin-right: 20px;
		height: auto;
	}
	
	.right-foto {
		float: right !important;
		margin-left: 20px;
		height: auto;
	}
	
	h1:before,
	h1:after {
		content: '';
		display: inline-block;
		width: 100%;
		height: 3px;
		background: #06428b;
		z-index: -1;
		position: relative;
		vertical-align: middle;
		z-index: 10;
	}
	
	h1:before {
		right: 15px;
		margin: 0 0 0 -100%;
	}
	
	h1:after {
		left: 15px;
		margin: 0 -100% 0 0;
	}
	
	.s1 .owl-dots {
		display: block !important;
		height: 20px;
		text-align: left;
		margin-top: -130px;
		margin-bottom: 8%;
	}  
	
	.s1 .btn {
		margin: 100px auto 0px;
	}
	
	
	
	.s1 .owl-controls {
		margin-top: -49px;
		position: absolute;
		left: -10px;
	}
	
	.s1 article {
		float: left;
		margin-bottom: 15px;
	}
	
	.s1 article:last-of-type {
		margin-bottom: 30px;
		margin-top: -14px;
	}
	.btn {
		display: block;
		clear: both;
		font-size: 26px;
		font-family: "RobotoCondensedBold", sans-serif;
		color:#06428b;
		text-transform: uppercase;
		text-decoration: none;
		background-image: url(../img/btn3.png);
		width: 232px;
		height: 66px;
		line-height: 66px;
		padding-left: 21px;
		/* transition: .15s; */
		margin: 0 auto;
		cursor: pointer;
	}
	.btn.back1 {
		display: block;
		clear: both;
		font-size: 26px;
		font-family: "RobotoCondensedBold", sans-serif;
		color: #06428b;
		text-transform: uppercase;
		text-decoration: none;
		background-image: url(../img/btn3-back.png);
		background-position: 232px center !important;
		width: 232px;
		height: 66px;
		line-height: 66px;
		padding-left: 16px;
		/* transition: .15s; */
		margin: 0 auto;
		cursor: pointer;
	}
	
	.s1 .btn:hover{
		background-position:100%;
	}
	
}



@media only screen and (min-width : 1280px) {   
	.s1{
		background-image: url(../img/section-bg.png);
	}
	.left-foto {
		float: left !important;
		margin-right: 100px;
		height: auto;
	}
	.right-foto {
		float: right !important;
		margin-left: 170px;
		height: auto;
		margin-top: 0px;
	}
	.s1 p{
		padding-right:100px;
	}
	.left-date, .right-date{
		display: block;
	}
	.s1 .owl-controls {
		margin-top: -49px;
		position: absolute;
		left: 119px;
	}
}


/************************************************/
/*                  section s2                  */
/************************************************/

.s2 {
	display: block;
	width: 100%;
	float: left;
	margin-top: 0px;
	padding-bottom: 20px;
	/* background-color: #FFF; */
	margin-bottom: 40px;
}

.s2 a.logos {
	width: 210px;
	height: 105px;
	margin: 0 auto;
	/*background-size: contain !important;*/
	background-repeat: no-repeat !important;
	background-position: center !important;
	display: block;
}


.s2 .owl-dots {
	display: none !important;
}

.owl-carousel-s2 {
	padding: 17px 50px 27px;
}

.s2 .owl-prev {
	position: absolute;
	left: 0;
	top: 57px;
	width: 19px;
	float: left;
	width: 19px;
	height: 32px;
	background-image: url(../img/nav-strel.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}

.s2 .owl-prev:hover {
	background-position: -21px 0;
}

.s2 .owl-next {
	position: absolute;
	right: 0;
	top: 57px;
	width: 19px;
	height: 32px;
	background-image: url(../img/nav-strel.png);
	background-repeat: no-repeat;
	background-position: 0 -37px;
}

.s2 .owl-next:hover {
	background-position: -21px -37px;
}


.s2 .owl-next.disabled, .s2 .owl-prev.disabled{
	display: none !important;
}


@media only screen and (min-width : 200px) {
	.s2 .owl-next {
		position: absolute;
		right: 16px;
	}
	.s2 .owl-prev {
		position: absolute;
		left: 16px;
	}
}


@media only screen and (min-width : 768px) {
	.s2 .owl-next {
		position: absolute;
		right: 16px;
	}
	.s2 .owl-prev {
		position: absolute;
		left: 16px;
	}
}

/************************************************/
/*                  footer                      */
/************************************************/

footer {
	color: #FFF;
	font-size: 14px;
	font-family: "HelveticaNeueCyr-Roman", sans-serif;
	padding: 0px;
}

footer a {
	color: #FFF;
	text-decoration: none;
	background-image: url(../img/cursor-logo.png);
	background-repeat: no-repeat;
	background-position: center right;
	padding-right: 19px;
}

footer a span {
	text-decoration: underline;
}
footer .block-1,
footer .block-2,
footer .block-3,
footer .block-4 {
	display: table-cell;
	height: 111px;
	vertical-align: middle;
	padding: 0 0px;
}

footer .block-1 {
	width: 29.5%;
}
footer .block-1 span{
	display: inline;
	width: auto;
}
footer .block-2 {
	width: 35.5%;
}

footer .block-3 {
	width: 19.5%;
	text-align: left;
	padding-right: 120px;
	word-wrap: break-word;
}

footer .block-4 {
	width: 15.5%;
	text-align: right;
}
@media only screen and (min-width : 240px) {
	
	footer {
		font-size: 14px;
		height: 153px;
		padding: 10px 4px;
		letter-spacing: -0.02em;
		line-height: 18px;
	}
	
	footer .block-1,
	footer .block-2,
	footer .block-3,
	footer .block-4 {
		display: block;
		height: auto;
		vertical-align: middle;
		padding: 5px 10px;
	}
	
	footer .block-1 {
		width: 100%;
	}
	
	footer .block-2 {
		width: 100%;
	}
	
	footer .block-3 {
		width: 100%;
		text-align: left;
	}
	
	footer .block-4 {
		width: 100%;
		text-align: left;
	}
}
@media only screen and (max-width : 320px) {
	footer {
		font-size: 13px;
	}
}
@media only screen and (min-width : 768px) {
	
	footer {
		font-size: 13px;
		height: 111px;
		padding: 0px;
	}
	
	footer .block-1,
	footer .block-2,
	footer .block-3,
	footer .block-4 {
		display: table-cell;
		height: 111px;
		vertical-align: middle;
		padding: 0 10px;
	}
	
	footer .block-1 {
		width: 27%;
	}
	footer .block-1 span{
		display: block;
		width: 100%;
	}
	footer .block-2 {
		width: 30%;
	}
	
	footer .block-3 {
		width: 17%;
		text-align: center;
	}
	
	footer .block-4 {
		width: 27%;
		text-align: right;
	}
}

@media only screen and (min-width : 992px) {
	
	footer {
		font-size: 14px;
	}
	
	footer .block-1,
	footer .block-2,
	footer .block-3,
	footer .block-4 {
		display: table-cell;
		height: 111px;
		vertical-align: middle;
		padding: 0 5px;
	}
	
	footer .block-1 {
		width: 27%;
	}
	
	footer .block-2 {
		width: 30%;
	}
	
	footer .block-3 {
		width: 17%;
		text-align: center;
		text-align: left;
		padding-right: 30px;
		word-wrap: break-word;
	}
	
	footer .block-4 {
		width: 27%;
		text-align: right;
	}
}

@media only screen and (min-width : 1280px) {
	
	footer {
		font-size: 14px;
	}
	
	footer .block-1,
	footer .block-2,
	footer .block-3,
	footer .block-4 {
		display: table-cell;
		height: 111px;
		vertical-align: middle;
		padding: 0 0px;
	}
	
	footer .block-1 {
		width: 29.5%;
	}
	footer .block-1 span{
		display: inline;
		width: auto;
	}
	footer .block-2 {
		width: 35.5%;
	}
	
	footer .block-3 {
		width: 19.5%;
		text-align: left;
		padding-right: 120px;
		word-wrap: break-word;
	}
	
	footer .block-4 {
		width: 15.5%;
		text-align: right;
	}
}


/************************************************/
/*                  inner-page                  */
/************************************************/

.inner-page {
	padding-bottom: 40px;
}

.inner-page h2 {
	padding-left: 0;
	font-family: 'RobotoCondensedRegular', sans-serif;
	margin-bottom: 29px;
	clear:both;
	font-weight: 300;
}

.tovar-item h2.title{
	font-family: 'RobotoCondensedBold', sans-serif;
	margin-top: -18px;
	font-size: 30px;
	margin-bottom: 26px;
}

.inner-page p {
	padding-bottom: 13px;
	font-family: "RobotoRegular", sans-serif;
	line-height: 29px;
}

.inner-page a {
	color: #1453a0;
	text-decoration: underline;
}


.inner-page a:hover {
	color: #b1b1b1;
	text-decoration: underline;
}

.inner-page .foto-left {
	float: left;
	margin-right: 40px;
}

.inner-page ul {
	list-style-image: url(../img/list-img.png);
	line-height: 29px;
	margin-bottom: 29px;
}

.inner-page ol{
	counter-reset: myCounter;
	line-height: 29px;
	margin-left: 0;
	margin-bottom: 29px;
}

.inner-page ol li{
	list-style: none;
}

.inner-page ol li:before {
	counter-increment: myCounter;
	content:counter(myCounter);
	display: inline-block;
	text-align: center;
	margin: 0px 10px;
	line-height: 29px;
	margin-left: 0px;
	font-family: "RobotoBold", sans-serif;
}

.inner-page table {
	width: auto;
	min-width:100%;
	text-align:center;
	border-collapse:collapse;
	margin-bottom:52px;
	margin-top: 0px;
}

.inner-page th {
	font-family: "RobotoBold", sans-serif;
	font-size: 13px;
	text-align: left;
	padding-bottom: 5px;
	padding-left: 15px;
}

.inner-page tr {
	
}

.inner-page td {
	width: auto;
	text-align: left;
	font-size: 13px;
	padding: 15px 15px;
	line-height: 20px;
	border: 1px solid #ccc;
}

.inner-page tr:nth-child(odd) {
	background-color: #f8f8f8;
}
.inner-page tr:nth-child(1) {
	background-color: #fff;
}
@media only screen and (min-width : 200px) {
	
	.inner-page h2 {
		margin-bottom: 20px;	
	}
	
	.inner-page .foto-left {
		float: none;
		margin: 0 auto;
		display: block;
	}
	.tovar-item h2.title{
		font-size: 20px;
		margin-top: 0px;
	}
	
	.inner-page p {
		font-size: 14px;
		line-height: 25px;
	}
	
	.inner-page ul {
		font-size: 14px;
		line-height: 25px;
	}
	
	.inner-page ol {
		font-size: 14px;
		line-height: 25px;
	}
	
	.inner-page td {
	border: 1px solid #ccc;
		width: auto;
		text-align: left;
		font-size: 12px;
		padding: 5px 5px;
		line-height: 18px;
	}
	
	.inner-page {
		padding-bottom: 60px;
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.inner-page h3{
		display: block;
		margin-bottom: 23px;
		clear: both;
		font-size: 19px;
	}
	
	
	.inner-page td p{
		padding-bottom: 0;
	}
	
	.inner-page tr td:nth-child(1){
		text-align:left !important;
	}
	
	.inner-page table{
	clear: both;
	}
}

@media only screen and (min-width : 570px) {
	
	.inner-page .foto-left {
		float: left;
		margin-top: 12px;
		margin-bottom: 12px;
		margin-right: 54px;
		display: block;
	}
}

@media only screen and (min-width : 768px) {
	
	.inner-page {
		padding-left: 15px;
		padding-right: 15px;
		padding-bottom: 40px;
	}
	
	.inner-page ul {
		font-size: 16px;
		line-height: 29px;
		padding-left: 0px;
		list-style-position: outside;
		
	}
	.inner-page ul li{
		padding-left: 10px;
		margin-left: 18px;
	}
	
	.inner-page ol {
		font-size: 16px;
		line-height: 29px;
		padding-left: 14px;
		list-style-position: inside;
	}
	
	.inner-page p {
		font-size: 16px;
		line-height: 29px;
	}
	
	.inner-page td {
		width: auto;
		font-size: 13px;
		padding: 5px 15px;
		line-height: 20px;
		border: 1px solid #ccc;
		text-align: center;
	} 
	
	
	
}

@media only screen and (min-width : 992px) {
	.inner-page h2 {
		margin-bottom: 29px;
	}
	.tovar-item h2.title {
		
		margin-top: -18px;
		font-size: 30px;
		margin-bottom: 26px;
	}
	.inner-page {
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 40px;
	}
}

@media only screen and (min-width : 1280px) {
	.inner-page .foto-left{
		margin-right: 54px;
		margin-top: 12px;
		margin-bottom: 12px;
	}
	.inner-page {
		padding-bottom: 40px;
	}
}

/************************************************/
/*                  news-list                   */
/************************************************/

.article-col {
	clear: both;
	overflow-x: hidden;
	padding-top: 10px;
}
.article-col  img{
	width: 100%;
}

.article-col article {
	width: 40%;
	margin-bottom: 60px;
}

.article-col article:nth-child(odd) {
	float: left;
	clear: both;
}

.article-col article:nth-child(even) {
	float: left;
	margin-left: 124px;
}

.article-col .h3 {
	font-size: 20px;
	line-height: 23px;
	text-transform: uppercase;
	text-decoration: underline;
	font-family: 'RobotoCondensedRegular', sans-serif;
	font-weight: 300;
}

a.btn-small {
	clear: both;
	display: block;
	width: 108px;
	height: 38px;
	background-image: url(../img/btn-s.png);
	text-align: center;
	line-height: 38px;
	font-family: "RobotoCondensedBold", sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
	padding-right: 5px;
	/* transition: .15s; */
}

a.btn-small:hover {
	background-position: 108px center;
	color: #FFF;
	text-decoration: none;
}




.pagination {
	display: block;
	width: 100%;
	overflow: hidden;
	margin-bottom: 20px;
}

.pagination ul {
	display: table;
	list-style-image: none;
	list-style: none;
	line-height: 29px;
	overflow: hidden;
	margin: 0 auto;
	padding: 0;
	width: auto;
}

.pagination ul li {
	margin: 0px;
	padding: 0px;
	display: block;
	float: left;
	border: 1px solid #dddddd;
	border-left: none;
	/* transition: .15s; */
}

.pagination ul li.active {
	background-color: #eeeeee;
}
.pagination ul li.active a {
	color: #707070;
}

.pagination ul li:hover {
	background-color: #1453a0;
}

.pagination ul li:hover a {
	color: #FFF;
}

.pagination ul li:first-child {
	border-bottom-left-radius: 5px;
	border-top-left-radius: 5px;
	border-left: 1px solid #dddddd;
}

.pagination ul li:last-child {
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
}

.pagination ul li a {
	display: block;
	width: 34px;
	height: 34px;
	text-align: center;
	line-height: 34px;
	text-decoration: none;
	color: #000;
	text-decoration: none !important;
}
.article-col article .preview_picture{
	margin-bottom: 26px;
	width: 100%;
	height: auto;
	margin-top: 31px;
}

@media only screen and (min-width : 200px) {
	
	.inner-page .detail_picture{
		
		width:100%;
		height: auto;
	}
	
	
	
	.article-col article {
		width: 100%;
		margin-bottom: 60px;
		margin-left: 0px !important;
	}
	
	#slider img{
		width: 100%;
		height: auto;
		}
	
	.article-col article:nth-child(odd) {
		float: left;
		clear: both;
	}
	
	.article-col article:nth-child(even) {
		float: left;
	}
}

@media only screen and (min-width : 768px) {
	
	
	.inner-page .detail_picture{
		
		width: 100%;
		height: auto;
	}
	.article-col article {
		width: 45%;
		margin-bottom: 60px;
	}
	
	.article-col article:nth-child(odd) {
		float: left;
		clear: both;
	}
	
	.article-col article:nth-child(even) {
		float: right;
		margin-left: 0px;
	}
}
@media only screen and (min-width : 992px) {
	.article-col article {
		width: 45%;
	}
	.article-col article:nth-child(even) {
		float: right;
		margin-left: 0px; 
	}
}
@media only screen and (min-width : 1024px) {
	.article-col article {
		width: 45%;
	}
	.article-col article:nth-child(even) {
		float: right;
		margin-left: 0px; 
	}
}

/************************************************/
/*                  breadcrumbs                 */
/************************************************/

.breadcrumbs {
	overflow: hidden;
	margin-top: 11px;
	margin-bottom: 7px;
	box-sizing: border-box;
	padding-left: 10px;
}

.breadcrumbs li {
	float: left;
	font-size: 12px;
	color: #828282;
	font-weight: 500;
	font-style: normal;
	font-family: 'Roboto', sans-serif;
}
.breadcrumbs li:before{
	display: none !important;
}

.breadcrumbs li span {
	margin: 0 5px;
	font-size: 12px;
	color: #141414;
	font-weight: 500;
	font-style: normal;
	font-family: 'Roboto', sans-serif;
}

.breadcrumbs li a span{
	font-size: 12px;
	color: #141414;
	font-weight: 500;
	font-style: normal;
	font-family: 'Roboto', sans-serif;
	margin: 0;
}
.breadcrumbs li a:hover{
	color: #e31e24;
}
.breadcrumbs li a:hover span{
	font-size: 12px;
	color: #e31e24;
	font-weight: 500;
	font-style: normal;
	font-family: 'Roboto', sans-serif;
	text-decoration: none;
}
.breadcrumbs li span.text{
	margin: 0;
	font-size: 12px;
	color: #141414;
	font-weight: 500;
	font-style: normal;
	font-family: 'Roboto', sans-serif;
}


/************************************************/
/*                  contacts                   */
/************************************************/

.contact-col {
	overflow: hidden;
	margin-top: 43px;
	word-break: normal;
}

.contact-col h2 {
	margin-bottom: 30px;
	line-height: 38px;
}

.contact-col p{
	letter-spacing: -0.01em;
}

.contact-col .col-1 {
	width: 48%;
	float: left;
}

.contact-col .col-2 {
	width: 45%;
	float: right;
}
.col-1 span{    display: inline-block;}
.contact-col form {
	position: relative;
}

.contact-col form div {
	height: 33px;
	width: 100%;
	border-bottom: 3px solid #383838;
	margin-bottom: 27px;
	font-size: 13px;
	text-transform: uppercase;
}




.contact-col form div span {
	float: left;
	display: inline-block;
	width: 40px;
	padding-left: 0px;
	height: 28px;
	line-height: 20px;
}

.contact-col form div.textar {
	border-bottom: none;
	height: auto;
}

.contact-col form div.textar span {
	width: 150px;
	height: auto;
	padding-left: 40px;
}

.contact-col form div textarea {
	width: 100%;
	height: 165px;
	border: 2px solid #383838;
	resize: none;
	outline: none;
}

#form_add div:nth-of-type(1) .icon-cont{
	background-image: url(../img/cont-ico-1.png);
	background-position: 10px center;
	background-repeat: no-repeat;
	font-size: 0px;
}

#form_add div:nth-of-type(2) .icon-cont{
	background-image: url(../img/cont-ico-2.png);
	background-position: 10px center;
	background-repeat: no-repeat;
	font-size: 0px;
}

#form_add div:nth-of-type(4) .icon-cont{
	background-image: url(../img/cont-ico-3.png);
	background-position: 10px center;
	background-repeat: no-repeat;
	font-size: 0px;
}

.contact-col form div .message {
	background-image: url(../img/cont-ico-4.png);
	background-position: 10px center;
	background-repeat: no-repeat;
}


div.error:nth-of-type(1) .icon-cont{
	background-image: url(../img/cont-ico-1-red.png) !important;
}

div.error:nth-of-type(2) .icon-cont{
	background-image: url(../img/cont-ico-2-red.png) !important;
}

div.error:nth-of-type(3) .icon-cont{
	background-image: url(../img/cont-ico-3-red.png) !important;
}

div.error .message {
	background-image: url(../img/cont-ico-4-red.png) !important;
	color: #f00;
}


.contact-col input[type="text"]::-webkit-input-placeholder {color:#000;}
.contact-col input[type="text"]::-moz-placeholder          {color:#000;}/* Firefox 19+ */
.contact-col input[type="text"]:-moz-placeholder           {color:#000;}/* Firefox 18- */
.contact-col input[type="text"]:-ms-input-placeholder      {color:#000;}


.error input[type="text"]::-webkit-input-placeholder {color:#f00;}
.error input[type="text"]::-moz-placeholder          {color:#f00;}/* Firefox 19+ */
.error input[type="text"]:-moz-placeholder           {color:#f00;}/* Firefox 18- */
.error input[type="text"]:-ms-input-placeholder      {color:#f00;}

.contact-col form div.error{
	/*	border-bottom: 3px solid #F00; */
}

.contact-col input[type="text"] {
	width: 480px;
	height: 30px;
	line-height: 30px;
	border: none;
	outline: none;
}






.contact-col input[type="submit"] {
	position: absolute;
	bottom: 10px;
	right: 20px;
	width: 26px;
	height: 26px;
	background-color: transparent;
	background-image: url(../img/cont-butt.png);
	border: none;
	cursor: pointer;
	outline: none;
	font-size: 0px;
}

.contact-foot {
	padding: 0 15px;
	margin-bottom: 50px;
}

.contact-foot p {
	line-height: 28px;
}

.contact-foot strong {
	font-family: "RobotoBold", sans-serif; 
}


.karta {
	margin-bottom: 32px;
}

@media only screen and (min-width : 200px) {
	
	.contact-foot {
		padding: 0 10px;
		font-size: 14px;
		line-height: 25px;
	}
	
	.contact-col .col-1 {
		width: 100%;
		float: left;
	}
	
	.contact-col .col-2 {
		width: 100%;
		float: right;
	}    
	.contact-col input[type="text"] {
		width: 66%;
	}
}

@media only screen and (min-width : 768px) {
	
	.contact-foot {
		padding: 0 15px;
		font-size: 16px;
		line-height: 29px;
	}
	
	.contact-col .col-1 {
		width: 48%;
		float: left;
	}
	
	.contact-col .col-2 {
		width: 45%;
		float: right;
	}    
	
	.contact-col input[type="text"] {
		width: 256px;
	}
}

@media only screen and (min-width : 992px) {
	
	.contact-col input[type="text"] {
		width: 335px;
	}
}

@media only screen and (min-width : 1280px) {
	
	.contact-col input[type="text"] {
		width: 480px;
	}
}

/************************************************/
/*                  catalog                     */
/************************************************/

.catalog {
	overflow: hidden;
	margin-bottom: -30px;
}

.catalog ul.cat-lvl {
	list-style-image: none;
	list-style: none;
	padding: 0;
	margin: 0;
	margin-top: 46px;
}
.catalog a{
	text-decoration: none;
}

ul.cat-lvl li {
	display: block;
	width: 33.3333%;
	height: 336px;
	float: left;
	text-align: center;
	padding: 0;
	margin: 0;   
}

ul.cat-lvl li.diplom{
height:auto;
margin-bottom: 50px;
}

ul.cat-lvl li.diplom a img{
max-width: 90%;
display: block;
margin: 0 auto;
}

ul.slides{
	margin-bottom: 0px;
}
ul.slides li{
	padding: 0;
	margin: 0 ;	
}

ul.cat-lvl li img {
	display: block;
	clear: both;
	margin: 0 auto 15px auto;
}

ul.cat-lvl li a span{
	line-height: 18px;
	font-size: 20px;
	display: block;
	font-family: "RobotoCondensedRegular", sans-serif;
	text-transform: uppercase;
	padding: 0 50px;
}

ul.cat-lvl li a span.image_catalog{
	width: 280px;
	height: 220px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	clear: both;
	padding: 0;
	margin: 0 auto 20px auto;
	background-image: url('../img/tile-empty.png');
}


.btn-small.rev {
	width: 145px;
	height: 49px;
	line-height: 49px;
	font-size: 14px !important;
	padding-right: 0;
	background-image: url(../img/btn-s-rev.png);
	background-position: 145px center !important;
	margin-top: 22px;
	
}

.btn-small.rev:hover {
	background-position:0 center !important;
	text-decoration: none;
}
.rev {
	margin-left: 5%;
}

@media only screen and (min-width : 200px) {
	
	ul.cat-lvl li {
		width: 100%;
	}
	
	.rev {
		margin-left: 5%;
	}
	.rev.news{
		margin-left: 0%;
	}
}

@media only screen and (min-width : 768px) {
	
	ul.cat-lvl li {
		width: 50%;
	}
	
	.rev {
		margin-left: 9%;
	}
	.rev.news{
		margin-left: 0%;
	}
}

@media only screen and (min-width : 992px) {
	
	ul.cat-lvl li {
		width: 33.3333%;
	}
	
	.rev {
		margin-left: 1%;
	}
	.rev.news{
		margin-left: 0%;
	}
}

@media only screen and (min-width : 1280px) {
	
	.rev {
		margin-left: 5%;
	}
	.rev.news{
		margin-left: 0%;
	}
}



/************************************************/
/*                  item                     */
/************************************************/

.tovar-item .rev {
	margin-left: 0;
}

.slid-tovar {
	width: 500px;
	height: auto;
	
	float: left;
	margin-top: 6px;
	margin-right: 25px;
	margin-bottom: 18px;
}

.slid-tovar  .detail_picture{
	width: 100%;
	height: auto;
}

#slider .flex-direction-nav{
	display: none;
}
#carousel .flex-direction-nav{
	display: none;
}
#carousel ul.slides li span.thumb_catalog{
	width: 114px;
	height: 82px;
	position: relative;
	display: block;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #fff;
	opacity: 0.7;
	margin: 0px;
	padding: 0px;
}
#carousel ul.slides li.flex-active-slide span.thumb_catalog{
	opacity: 1;
}

@media only screen and (min-width : 767px) {
	
	#carousel li{
		margin-right: 14px !important;
	}
}

@media only screen and (max-width : 767px) {
	
	.inner-page table {
		display: inline-block;
		max-width: 100%;
		overflow-x: auto;
	}
	
	.inner-page table {
		-webkit-overflow-scrolling: touch;
		background: -webkit-radial-gradient(left ellipse, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 75%) 0 center, -webkit-radial-gradient(right ellipse, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 75%) 100% center;
		background: radial-gradient(ellipse at left, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 75%) 0 center, radial-gradient(ellipse at right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 75%) 100% center;
		background-size: 10px 100%, 10px 100%;
		background-attachment: scroll, scroll;
		background-repeat: no-repeat;
	}
	
	.inner-page table td:not(:first-child) {
		min-width: 150px !important;
	}
	
	.inner-page table tr:nth-child(2n) {
		background-color: transparent;
	}
	
	
	.inner-page table td {
		font-size: 13px;
	}
	
	.inner-page table td:first-child {
		background-image: -webkit-linear-gradient(left, white 50%, rgba(255, 255, 255, 0) 100%);
		background-image: linear-gradient(to right, white 50%, rgba(255, 255, 255, 0) 100%);
		background-repeat: no-repeat;
		background-size: 20px 100%;
		min-width: 300px !important;
	}
	
	.inner-page table td:last-child {
		background-image: -webkit-linear-gradient(right, white 50%, rgba(255, 255, 255, 0) 100%);
		background-image: linear-gradient(to left, white 50%, rgba(255, 255, 255, 0) 100%);
		background-repeat: no-repeat;
		background-position: 100% 0;
		background-size: 20px 100%;
	}
}

@media only screen and (max-width : 900px) {
	
	.slid-tovar {
		width: 500px;
		height: auto;
		background-color: transparent;
		float: none;
		margin: 25px auto 0 auto;
	}
}
@media only screen and (max-width : 500px) {
	
	.slid-tovar {
		width: 377px;
		height: auto;
		
		float: none;
		margin: 25px auto 0 auto;
	}
	
}
@media only screen and (min-width : 200px) and (max-width : 359px) {
	#carousel {
		padding-left: 30px;
		padding-right: 30px;
	}
}
@media only screen and (min-width : 359px) and (max-width : 400px) {
	#carousel {
		padding-left: 50px;
		padding-right: 50px;
	}
}


@media only screen and (min-width : 400px) and (max-width : 420px) {
	#carousel {
		padding-left: 15px;
		padding-right: 15px;
	}
}
@media only screen and (min-width : 420px) and (max-width : 480px) {
	#carousel {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media only screen and (max-width : 480px) {
	
	
	
	.slid-tovar {
		width: 100%;
		height: auto;
		
		float: none;
		margin: 25px auto 0 auto;
	}
}
#slider {
	margin-bottom: 29px;
	
}

.flex-direction-nav {
	list-style-image: none !important;
}

#carousel {
	margin-bottom: 0;
	margin-top: -6px;
}

#carousel ul li {
	background-color:#000;
	cursor: pointer;
}
#carousel ul li:last-child{
	/*margin-right: 0px !important;*/
}


.flex-prev {
	background-image: url(../img/nav-strel.png);
	width: 19px !important;
	height: 34px !important;
	font-size: 0;
}

.flex-next {
	background-image: url(../img/nav-strel.png);
	background-position: 0 34px ;
	width: 19px !important;
	height: 34px !important;
	font-size: 0;
}


.flex-direction-nav a:before {
	display: none;
}

.title-fancy{
	display: none;
}

.fancybox-title h2{
	margin-top: 0;
	padding: 0;
}

.contact-col .col-1 h2, .contact-col .col-2 h2{
	margin-top: 0px;
	text-transform: none;
	font-family: "RobotoBold";
}


font.notetext{
	color: #06428b !important;
}
.left-foto, .right-foto{
	visibility: hidden;
}

.owl-carousel .left-foto.animated, .owl-carousel .right-foto.animated {
	-webkit-animation-duration: 1.6s;
	animation-duration: 1.6s;
	visibility: visible;
}
ul.cat-lvl li{visibility: hidden;}
ul.cat-lvl li.animated{visibility: visible;}


.splCont {display:block;}


.spoiler{
	margin-bottom: 10px;
}

.spoiler .splLink{
	cursor: pointer;
}


.spoiler .splLink{
	border-bottom: 1px dashed;
    border-color: #000;
    padding-bottom: 2px;
}

.spoiler.open .splLink, .spoiler .splLink:hover{
	border-bottom: 1px dashed;
	color: #06428b;
    border-color: #06428b;
    padding-bottom: 2px;
}