:root {
	--transition: 0.5s;
	--m-white: #fff;
	--m-black: #000;
	--m-grey: #777;
	--m-dark-grey: #333;
	--m-dark-orange: #9f1e00;
	--m-orange: #ef6400;
	--m-yellow: #ffb701;
	--m-blue: #5586a6;
	--m-blue-medium: #3d5a68;
	--m-dark-blue: #212b2d;
	--l-gradient: linear-gradient(45deg, #EECFBA, #C5DDE8);
	--l-gradient-block: linear-gradient(45deg, #fff1bb, #ffcc5f);
	--l-gradient-black: linear-gradient(45deg, #333, #333);
	--l-gp-mars: linear-gradient(45deg, #555, #000);
	--l-gp-ska: linear-gradient(45deg, #fddd42, #ffb701);
	--l-gp-server: linear-gradient(45deg, #1871b4, #3d5a68);
	--l-gp-otchet: linear-gradient(45deg, #bf2534, #941e00);
	--l-g-footer: linear-gradient(45deg, #666, #222);
}

/*скролбар*/
::-moz-scrollbar {
	width: 10px;
	height: 6px;
	background: var(--m-dark-grey);
}
::-webkit-scrollbar {
	width: 10px;
	height: 6px;
	background: var(--m-dark-grey);
}
::-moz-scrollbar-button:start:decrement,
::-moz-scrollbar-button:start:decrement {
	height: 0px;
	display: block;
	background-color: var(--m-black);
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
	height: 0px;
	display: block;
	background-color: var(--m-black);
}
::-moz-scrollbar-track-piece {
	background-color: #3b3b3b;          /*Global Track Peice(the slider noob.)*/
	-webkit-border-radius: 6px;
}
::-webkit-scrollbar-track-piece {
	background-color: #3b3b3b;          /*Global Track Peice(the slider noob.)*/
	-webkit-border-radius: 6px;
}
::-moz-scrollbar-thumb:vertical {
	height: 50px;
	background-color: #777;            /* Up/Down slider background*/
	-webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:vertical {
	height: 50px;
	background-color: #777;            /* Up/Down slider background*/
	-webkit-border-radius: 6px;
}
::-moz-scrollbar-thumb:horizontal {
	width: 50px;
	background-color: #777;            /* Side/Side slider background*/
	-webkit-border-radius: 3px;
}
::-webkit-scrollbar-thumb:horizontal {
	width: 50px;
	background-color: #777;            /* Side/Side slider background*/
	-webkit-border-radius: 3px;
}

body {
	font-size: 0.9rem;
	position: relative;
}

/*анимашки*/
@keyframes swingdown {
	0% {
		transform: scaleY(1);
	}
	40%{
		transform: scaleY(1.07);
	}
	100%{
		transform: scaleY(1) scaleX(1);
	}
}

.anim-swingdown {
	animation-name: swingdown;
	animation-duration: 1s;
	animation-timing-function: ease;
}

@keyframes poyavlenie {
	0% {
		transform: translate(-200%,220px);
	}
	50%{
		transform: translate(8%);
	}
	65%{
		transform: translate(-4%);
	}
	80%{
		transform: translate(4%);
	}
	95%{
		transform: translate(-2%);
	}
	100% {
		transform: translate(0%);
	}
}
@keyframes ischezanie {
	0% {
		transform: translate(0%);
	}
	100%{
		transform: translate(450%,220px);
	}
}

@keyframes droj {
	0% {
		transform: translate(-1%);
	}
	50%{
		transform: translate(1%);
	}
	65%{
		transform: translate(-2%);
	}
	80%{
		transform: translate(2%);
	}
	95%{
		transform: translate(-1%);
	}
	100% {
		transform: translate(0%);
	}
}

@keyframes bounceInDown {
	60%, 75%, 90%, from, to{
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, 25px, 0);
	}
	75% {
		transform: translate3d(0, -10px, 0);
	}
	90% {
		transform: translate3d(0, 5px, 0);
	}
	to {
		transform: none;
	}
}
.anim-bounceInDown {
	animation-name: bounceInDown;
	animation-duration: 1s;
	animation-timing-function: ease;
}

@keyframes bounceInLeft {
	60%, 75%, 90%, from, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity:0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(5px,0,0);
		transform: translate3d(5px,0,0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	10%, 20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
	}
	30%, 50%, 70%, 90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	40%, 60%, 80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

/*глобал*/
h1 {
	font-size: 4.5rem;
	text-shadow: rgba(0,0,0,.3) 0 0 5px;
}
h2 {
	position: relative;
	padding-top: 20px;
	padding-bottom: 20px;
}
h2 span {
	z-index: 5;
	position: relative;
}
h2 span:before {
	content:'';
	position: absolute;
	bottom: 5px;
	left: 0px;
	width: 100%;
	height: 5px;
	background: var(--m-orange);
	z-index: -1;
	opacity: 0.5;
}
h3 {
	font-size: 1.4rem;
}

code, pre {
	color: #e83e8c;
	border-left: solid 2px #e83e8c;
	padding-left: 40px;
	position: relative;
}
.pre_copy {
	display: inline-block;
	padding: 5px;
	border: 1px solid #ccc;
	background: #fff;
	color: #ccc;
	width: 150px;
	font-size: 12px;
	text-align: center;
	border-radius: 5px;
	cursor: pointer;
	transition: .3s;
	margin-bottom: 20px;
}
.pre_copy:hover {
	background: #ccc;
	color: #777;
}
.copy_ok {
	display: inline-block;
	padding: 5px;
	font-size: 12px;
	color: #777;
}

.h1 {
	font-size: 1.5rem;
}
.l-gradient {
	background: var(--l-gradient);
}
.l-gradient-block {
	background: var(--l-gradient-block);
}

.font-rem-i {
	font-size: 1.5rem;
}
.font-rem-i.one {
	color: var(--m-blue);
}
.font-rem-i.two {
	color: var(--orange);
}

.font-i-green {
	color: #0dbe00;
}
.font-i-red {
	color: #ff0000;
}

.m-more {
	color: var(--m-grey);
}
.m-more:hover {
	color: var(--m-orange);
}

/* menu */
.navbar-menu-top {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
	padding-top: 40px;
	padding-bottom: 40px;
	transition: var(--transition);
}
@media (max-width: 992px) {
	.navbar-menu-top {
		background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
		padding-top: 10px;
		padding-bottom: 10px;
	}
}
.navbar-menu-top-scroll {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
	padding-top: 10px;
	padding-bottom: 10px;
	transition: var(--transition);
}
.logo {
	width: 150px;
	opacity: 1;
	transition: var(--transition);
}
.logo:hover {
	opacity: 0.5;
}

.poloska {
	width: 1px;
	background: var(--m-white);
	height: 100%;
}

.navbar .navbar-toggler {
	color: rgba(255, 255, 255, 0.5);
	border-color: rgba(255, 255, 255, 0.1);
}
.navbar .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar .navbar-text {
	color: rgba(255, 255, 255, 0.5);
}
.navbar .navbar-text a {
	color: var(--m-white);
}
.navbar .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
	color: var(--m-white);
}

.top-menu {
	display: flex;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	list-style: none;
	position: relative;
}
.top-menu .hit, .top-menu .link {
	font-size: 12px;
	position: relative;
}
.top-menu .hit {
	background: -webkit-gradient(linear, left top, left bottom, from(#ff8d36), to(#ef6400));
	background: -webkit-linear-gradient(top, #ff8d36, #ef6400);
	background: -o-linear-gradient(top, #ff8d36, #ef6400);
	background: linear-gradient(to bottom, #ff8d36, #ef6400);
}
.top-menu .hit .link-top-menu, .top-menu .link .link-top-menu {
	color: var(--m-white);
	text-decoration: none;
	padding: 10px;
	display: block;
	font-weight: 600;
	cursor: pointer;
}
.top-menu .hit:hover {
	background: var(--m-white);
	box-shadow: rgba(0,0,0,0.2) 10px 10px 20px;
}
.top-menu .link:hover {
	background: var(--m-white);
	box-shadow: rgba(0,0,0,0.2) 10px 10px 20px;
}
.top-menu .hit:hover .link-top-menu {
	color: var(--m-dark-grey);
}
.top-menu .link:hover .link-top-menu {
	color: var(--m-dark-grey);
}
.top-menu .link .strelka:after {
	content: "\f107";
	font-family: 'Font Awesome 5 Free';
	color: var(--m-white);
	position: relative;
	top: 0;
	left: 5px;
}
.top-menu .link .strelka:hover:after {
	color: var(--m-dark-grey);
}
.opisanie {
	display: none;
	position: absolute;
	padding: 10px;
	top: 38px;
	left: 0;
	z-index: 1025;
	background: var(--m-white);
	width: 380px;
	box-shadow: rgba(0,0,0,0.2) 10px 10px 20px;
	text-transform: none;
}
.opisanie-about {
	display: none;
	position: absolute;
	padding: 10px;
	top: 38px;
	right: 0;
	z-index: 1025;
	background: var(--m-white);
	width: 380px;
	box-shadow: rgba(0,0,0,0.2) 10px 10px 20px;
	text-transform: none;
}
.opisanie-big {
	display: none;
	position: absolute;
	padding: 10px;
	top: 38px;
	left: -300px;
	z-index: 1025;
	background: var(--m-white);
	width: 1100px;
	box-shadow: rgba(0,0,0,0.2) 10px 10px 20px;
	text-transform: none;
}
@media (max-width: 1200px) {
	.opisanie-big {
		left: -270px;
		max-width: 900px;
	}
}
.top-menu .hit:hover .opisanie, .top-menu .link:hover .opisanie-about {
	display: block;
	animation-name: swingdown;
	animation-duration: 1s;
	animation-timing-function: ease;
}
.top-menu .link:hover .opisanie-big {
	display: block;
	animation-name: swingdown;
	animation-duration: 1s;
	animation-timing-function: ease;
}
.opisanie-big hr {
	margin-top: 0.1rem;
	margin-bottom: 1rem;
	border: 0;
	border-top: 2px solid var(--m-dark-grey);
}
.opisanie-big .htitle {
	font-weight: bold;
	margin-bottom: 0;
}
.ul-top {
	list-style: none;
	margin: 0;
	padding: 0;
}
.ul-top li {
	padding: 2px 0;
}
.ul-top a {
	font-weight: bold;
	color: var(--m-dark-grey);
}
.ul-content {
	list-style: none;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 20px;
	margin-right: 0;
	padding: 0;
}
.ul-content a {
	font-weight: normal;
	color: var(--m-grey);
}
.podrobnee {
	margin-top: 20px;
	border-top: 1px solid #ccc;
	padding-top: 10px;
	color: var(--m-grey);
}
.base-opis {
	display: none;
	position: absolute;
	right: 0;
	top: 38px;
	background: var(--m-white);
	width: 230px;
	padding: 5px;
	cursor: default;
	box-shadow: rgba(0,0,0,0.2) 10px 10px 20px;
}
.top-menu .link:hover .base-opis {
	display: block;
	animation-name: swingdown;
	animation-duration: 1s;
	animation-timing-function: ease;
}
.base-opis img {
	width: 20px;
	margin-right: 10px;
}
.base-opis ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.base-opis ul a {
	padding: 5px 10px;
	color: var(--m-grey);
	display: block;
}
.base-opis ul a:hover {
	background: var(--m-grey);
	color: var(--m-white);
	text-decoration: none;
}

.mobile-menu {
	overflow-y: scroll;
	max-height: 450px;
	list-style: none;
	margin: 0;
	padding: 20px 0;
}
.mobile-menu::-webkit-scrollbar {
	display: none;
}
.mobile-menu .hit a {
	padding: 10px;
	background: var(--m-orange);
	display: block;
	color: var(--m-white);
	cursor: pointer;
}
.mobile-menu .link a {
	padding: 10px;
	background: var(--m-white);
	display: block;
	color: var(--m-dark-grey);
	cursor: pointer;
}
.mobile-menu .click p, .mobile-menu .subclick .click a {
	padding: 10px;
	margin: 0;
	background: var(--m-white);
	display: block;
	color: var(--m-dark-grey);
	cursor: pointer;
}
.mobile-menu .click p:after {
	content: "\f107";
	font-family: 'Font Awesome 5 Free';
	color: var(--m-dark-grey);
	position: relative;
	top: 0;
	left: 5px;
	font-weight: bold;
}
.mobile-menu .subclick {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid #efefef;
	border-bottom: 1px solid #efefef;
}
.mobile-menu .hit a:hover,
.mobile-menu .link a:hover,
.mobile-menu .click p:hover,
.mobile-menu .subclick .click a:hover {
	background: #eee;
	text-decoration: none;
	color: var(--m-dark-grey);
}

.telephone .m-line-top .upravlenie {
	width: 20px;
}
.telephone .m-line-top .upravlenie .clickup {
	width: 0;
	height: 0;
	border: 7px solid transparent;
	display: block;
	margin-bottom: 4px;
	margin-left: 5px;
	border-bottom-color: var(--m-white);
	border-top: 0;
	cursor: pointer;
	transition: var(--transition);
}
.telephone .m-line-top .upravlenie .clickdown {
	width: 0;
	height: 0;
	border: 7px solid transparent;
	display: block;
	margin-top: 4px;
	margin-left: 5px;
	border-top-color: var(--m-white);
	border-bottom: 0;
	cursor: pointer;
	transition: var(--transition);
}
.telephone .m-line-top .upravlenie .clickup:hover {
	border-bottom-color: var(--m-orange);
}
.telephone .m-line-top .upravlenie .clickdown:hover {
	border-top-color: var(--m-orange);
}
.t-phone {
	display: none;
	color: var(--m-white);
	font-weight: bold;
	font-size: 1.5rem;
	transition: var(--transition);
}
.t-phone:hover {
	text-decoration: none;
	color: var(--m-orange);
}
.t-phone.active {
	display: block;
}
.m-mail a {
	font-size: 1rem;
	color: var(--m-white);
	transition: var(--transition);
}
.m-mail a:hover {
	text-decoration: none;
	color: var(--m-orange);
}
.ico {
	width: 25px;
	height: 25px;
	background: var(--m-orange);
	margin-right: 5px;
	color: var(--m-white);
	font-size: 1rem;
	text-align: center;
	display: block;
	transition: var(--transition);
}
.ico.dop {
	margin-right: 0;
}
.ico.dop.one {
	background: #c53926;
	cursor: pointer;
	position: relative;
}
.ico.dop.two {
	background: var(--m-dark-orange);
	cursor: pointer;
	position: relative;
}
.ico.dop.one:hover, .ico.dop.two:hover {
	background: var(--m-white);
	color: var(--m-orange);
}
.maps {
	display: none;
	position: absolute;
	right: -25px;
	top: 25px;
	background: var(--m-white);
	width: 230px;
	padding: 5px;
	cursor: default;
	z-index: 10;
	font-size: 0.8rem;
	color: var(--m-dark-grey);
	box-shadow: rgba(0,0,0,0.2) 10px 10px 20px;
}
.maps img {
	position: relative;
	z-index: 1;
}
.maps .nakarte {
	position: absolute;
	z-index: 2;
	display: block;
	bottom: 20px;
	left: 10px;
	right: 10px;
	padding: 5px 0;
	background: var(--m-white);
	color: var(--m-dark-grey);
	box-shadow: rgba(0,0,0,0.3) 2px 2px 3px;
	transition: var(--transition);
}
.maps .nakarte:hover {
	text-decoration: none;
	transform: translate(2px,2px);
	box-shadow: rgba(0,0,0,0.3) 0 0 3px;
}
.maps .nakarte .fa {
	color: #ff0000;
}
.ico.dop.one:hover .maps {
	display: block;
	animation-name: swingdown;
	animation-duration: 1s;
	animation-timing-function: ease;
}
.landing {
	display: none;
	position: absolute;
	right: 0;
	top: 25px;
	background: var(--m-white);
	width: 230px;
	padding: 5px;
	cursor: default;
	font-size: 0.8rem;
	box-shadow: rgba(0,0,0,0.2) 10px 10px 20px;
}
.ico.dop.two:hover .landing {
	display: block;
	animation-name: swingdown;
	animation-duration: 1s;
	animation-timing-function: ease;
}
.landing ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.landing ul a {
	padding: 5px 10px;
	color: var(--m-grey);
	display: block;
}
.landing ul a:hover {
	background: var(--m-grey);
	color: var(--m-white);
	text-decoration: none;
}

/* menu */

.header {
	//background: url('../images/background/background-main-set.jpg') 100% 100% no-repeat;
	background-size: cover;
	width: 100%;
	height: 100vh;
	position: relative;
	color: var(--m-dark-grey);
	z-index: 2;
	pointer-events: none;
}
.header .zagolovok {
	height: 100vh;
	z-index: 1020;
}
.header .zagolovok hr {
	width: 140px;
	border: 1px solid var(--m-white);
	animation-name: bounceInDown;
	animation-duration: 1.5s;
	animation-timing-function: ease;
}
.header .zagolovok h1 {
	font-size: 4.5rem;
	font-weight: 500;
	animation-name: bounceInDown;
	animation-duration: 1s;
	animation-timing-function: ease;
	//color: var(--m-white);
	color: #333;
}
@media (max-width: 576px) {
	.header .zagolovok h1 {
		font-size: 2rem;
	}
}
.header .zagolovok .h2 {
	font-size: 1.5rem;
	font-weight: 400;
	padding-bottom: 20px;
	animation-name: bounceInDown;
	animation-duration: 2s;
	animation-timing-function: ease-out;
	//color: var(--m-white);
	color: #333;
	//text-shadow: rgba(0,0,0,.5) 0 0 3px;
}
@media (max-width: 576px) {
	.header .zagolovok .h2 {
		font-size: 0.8rem;
	}
}
.header-bottom {
	min-width: 100%;
	width: 100%;
	height: 100px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 90%);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}

/*main header*/
.header-main {
	background: url('../images/background/background-main-set2.jpg') #477ab9;
	background-repeat: no-repeat;
	background-size: cover;
	//background-position: center;
	width: 100%;
	position: relative;
	color: var(--m-dark-grey);
	border-bottom: 2px solid var(--m-orange);
}
.header-main .shapka {
	padding-top: 30px;
	padding-bottom: 30px;
}
.header-main .shapka .h1 {
	animation-name: bounceInDown;
	animation-duration: 2s;
	animation-timing-function: ease;
	color: #333;
	//color: #fff;
	text-shadow: none;
}
.header-main .shapka hr {
	width: 70px;
	height: 1px;
	border: none;
	display: inline-block;
	color: #fff;
	background-color: #fff;
	margin-top: 0;
	margin-bottom: 7px;
	animation-name: bounceInDown;
	animation-duration: 1.5s;
	animation-timing-function: ease;
	box-shadow: rgba(0,0,0,1) 0 0 2px;
}
.header-main .shapka p {
	animation-name: bounceInDown;
	animation-duration: 1s;
	animation-timing-function: ease;
	color: #333;
	//color: #fff;
}
.header_desc {
}
.header-main .shapka img {
	animation-name: bounceInLeft;
	animation-duration: 1s;
	animation-timing-function: ease;
	width: 100px;
}
.anim-div {
	animation-name: tada;
	animation-duration: 1s;
	animation-timing-function: ease;
}

/*папки*/
.papki {
	position: fixed;
	width: 100%;
	left: 0;
	bottom: 0;
	z-index: 1999;
	padding-left: 20px;
	display: flex;
}
.papki-none {
	position: fixed;
	width: 100%;
	left: -100%;
	bottom: 0;
	z-index: 1999;
	padding-left: 20px;
	display: none;
	opacity: 0;
}
.papki .program {
	background: var(--m-white);
	border: 3px solid var(--m-dark-grey);
	box-shadow: rgba(0,0,0,0.2) 0 0 5px;
}
.papki .program .program-top {
	background: var(--l-gp-mars);
	padding: 0 10px;
}
.papki .ska {
	background: var(--m-white);
	border: 3px solid #fedd2e;
	box-shadow: rgba(0,0,0,0.2) 0 0 5px;
}
.papki .ska .ska-top {
	background: var(--l-gp-ska);
	padding: 0 10px;
}
.papki .server {
	background: var(--m-white);
	border: 3px solid #1071b6;
}
.papki .server .server-top {
	background: var(--l-gp-server);
}
.papki .program .program-top .zagolovok, .papki .server .server-top .zagolovok, .papki .otchetnost .otchetnost-top .zagolovok {
	color: var(--m-white);
}
.papki .otchetnost {
	background: var(--m-white);
	border: 3px solid #c02631;
}
.papki .otchetnost .otchetnost-top {
	background: var(--l-gp-otchet);
}
.papki .brend {
	width: 55px;
}
.papki .zagolovok {
	width: auto;
	font-size: 1rem;
}
.papki .text {
	padding-left: 55px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 20px;
	display: none;
	transition: 0.5s;
}
.papki .text p{
	padding-top: 10px;
	padding-bottom: 10px;
}
.papki .program:hover .program-text .text {
	display: block;
	animation-name: swingdown;
	animation-duration: 1s;
	animation-timing-function: ease;
	transition: 0.5s;
}
.papki .ska:hover .ska-text .text {
	display: block;
	animation-name: swingdown;
	animation-duration: 1s;
	animation-timing-function: ease;
}
.papki .server:hover .server-text .text {
	display: block;
	animation-name: swingdown;
	animation-duration: 1s;
	animation-timing-function: ease;
}
.papki .otchetnost:hover .otchetnost-text .text {
	display: block;
	animation-name: swingdown;
	animation-duration: 1s;
	animation-timing-function: ease;
}

/*блок бордер*/
.block-border, .block-border-full:nth-child(odd) {
	border-right: 1px dashed var(--m-dark-grey);
}
.block-border:nth-last-of-type(2n+1), .block-border-full:last-child {
	border-right: none;
}
@media (max-width: 992px) {
	.block-border, .block-border-full:nth-child(odd) {
		border-right: none;
	}
}

/* кнопка */
.m-button {
	border: 1px solid #fff;
	position: relative;
	padding: 5px 20px;
	border-radius: 4px;
	background: -webkit-gradient(linear, left top, left bottom, from(#ff8d36), to(#ef6400));
	background: -webkit-linear-gradient(top, #ff8d36, #ef6400);
	background: -o-linear-gradient(top, #ff8d36, #ef6400);
	background: linear-gradient(to bottom, #ff8d36, #ef6400);
	-webkit-box-shadow: 0 5px 15px 0 rgba(42, 104, 133, 0.2);
	box-shadow: 0 5px 15px 0 rgba(42, 104, 133, 0.2);
	text-align: center;
	font-size: 1.2rem;
	color: #fff;
	cursor: pointer;
	transition: var(--transition);
	pointer-events: auto;
}
.m-button:before {
	content:'';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 0px;
	background: rgba(255,255,255,0.2);
	border-radius: 5px;
	transition: all 0.3s ease;
}
.m-button:hover {
	box-shadow: rgba(0,0,0,0.2) 5px 5px 5px, inset 0 0 0 35px var(--m-dark-orange);
	transition: 0.15s;
	//animation-name: droj;
	//animation-duration: 0.5s;
	//animation-timing-function: ease;
	color: var(--m-white);
	text-decoration: none;
}
.m-button:hover:before {
	height: 50%;
}
.m-button:active {
	transform: translate(2px, 2px);
	box-shadow: rgba(0,0,0,0.2) 3px 3px 5px, inset 0 0 0 35px var(--m-dark-orange);
}
.m-button span {
	font-size: 0.6rem;
	display: block;
}
.m-glann-button {
	font-size: 1.2rem;
	margin-top: 20px;
	z-index: 999;
	padding: 10px 35px;
	border: 1px solid #444;
	box-shadow: #447dff 0 0 45px;
}
@media (max-width: 576px) {
	.m-glann-button {
		font-size: 1.2rem;
	}
}

.m-button-grey {
	box-shadow: rgba(0,0,0,0.2) 5px 5px 5px, inset 0 0 0 0 #999;
	padding: 5px 20px;
	background: #aaa;
	color: var(--white);
	font-size: 1.2rem;
	cursor: pointer;
	border-bottom: 3px solid #777;
	border-radius: 5px;
	transition: var(--transition);
	position: relative;
}
.m-button-grey:before {
	content:'';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 0px;
	background: rgba(255,255,255,0.2);
	border-radius: 5px;
	transition: all 0.3s ease;
}
.m-button-grey:hover {
	box-shadow: rgba(0,0,0,0.2) 5px 5px 5px, inset 0 0 0 35px #999;
	transition: 0.15s;
	animation-duration: 0.5s;
	animation-timing-function: ease;
	color: var(--m-white);
	text-decoration: none;
}
.m-button-grey:hover:before {
	height: 50%;
}
.m-button-grey:active {
	transform: translate(5px, 5px);
	box-shadow: rgba(0,0,0,0.2) 0 0 5px, inset 0 0 0 35px #999;
}

.m-menu-button {
	font-size: 0.8rem;
	margin-top: 5px;
}

.m-button-footer {
	margin-bottom: 30px;
}

/*breadcrumbs*/
.breadcrumbs {
	border-bottom: 2px solid #ccc;
	padding-top: 10px;
	padding-bottom: 10px;
}
.breadcrumbs a {
	padding-right: 10px;
	color: var(--m-grey);
}
.breadcrumbs a:hover {
	color: var(--m-dark-grey);
}
.breadcrumbs a .fa-home {
	font-size: 1.2rem;
}
.breadcrumbs .fa-angle-right {
	font-size: 0.6rem;
	padding-right: 10px;
	color: var(--m-grey);
}
.breadcrumbs span {
	padding-right: 10px;
	color: var(--m-grey);
}

/*иконка скролл*/
.scroll {
	background-image: var(--l-gradient), url(../images/background/scroll/about.jpg);
	background-blend-mode: screen;
	background-position: center center;
	background-attachment: fixed;
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--m-orange);
}
.scroll .one {
	position: relative;
	width: 45px;
	height: 40px;
}
.scroll .two {
	color: #ccc;
}

.scrolling {
	cursor: pointer;
}

.icon-scroll, .icon-scroll:before {
	position: absolute;
	left: 50%;
	top: 5px;
}
.icon-scroll {
	width: 17px;
	height: 30px;
	box-shadow: inset 0 0 0 1px #ccc;
	border-radius: 25px;
	background: ;
}
.icon-scroll:before {
	content: '';
	width: 5px;
	height: 5px;
	background: #ccc;
	left: 6px;
	top: 8px;
	border-radius: 4px;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-name: scroll;
}
@keyframes scroll {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translateY(30px);
	}
}

/*input*/
.wrapper-input {
	margin-bottom: 0;
	position: relative;
}
.wrapper-input.name:after, 
.wrapper-input.email:after, 
.wrapper-input.phone:after, 
.wrapper-input.text:after {
	font-family: 'Font Awesome 5 Free';
	color: var(--m-grey);
	position: absolute;
	font-size: 1rem;
	top: 6px;
	left: 12px;
}
.wrapper-input.name:after {
	content: "\f508";
	font-weight: bold;
}
.wrapper-input.email:after {
	content: "\f199";
	font-weight: bold;
}
.wrapper-input.phone:after {
	content: "\f095";
	font-weight: bold;
}
.wrapper-input.text:after {
	content: "\f303";
	font-weight: bold;
}

.f-name, .f-mail, .f-phone {
	margin-bottom: 5px;
	padding-left: 35px;
	padding-right: 10px;
	height: 35px;
	background: var(--m-white);
	border: 0;
	border-radius: 2px;
	//box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.06);
	position: relative;
}
textarea {
	margin-bottom: 5px;
	padding-left: 35px;
	padding-right: 10px;
	padding-top: 10px;
	height: 130px;
	background: var(--m-white);
	border: 0;
	border-radius: 2px;
	//box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.06);
	position: relative;
	font-size: 0.9rem;
}
blockquote {
	border-left: 2px solid var(--m-orange);
	padding: 20px;
	font-style: italic;
}
blockquote.spla {
	font-size: 22px;
}
.field-but {
	display: none;
}

/*радиобутоны*/
.radiobutton {
	position: absolute;
	z-index: -1;
	opacity: 0;
	margin: 10px 0 0 7px;
}
.radiobutton + label {
	position: relative;
	padding: 0 0 0 35px;
	cursor: pointer;
}
.radiobutton + label:before {
	content: '';
	position: absolute;
	top: -3px;
	left: 0;
	width: 22px;
	height: 22px;
	border: 1px solid #CDD1DA;
	border-radius: 50%;
	background: var(--m-white);
}
.radiobutton + label:after {
	content: '';
	position: absolute;
	top: 0;
	left: 3px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--orange);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.5);
	opacity: 0;
	transition: .2s;
}
.radiobutton:checked + label:after {
	opacity: 1;
}
.radiobutton:focus + label:before {
	box-shadow: 0 0 0 3px rgba(255,255,0,.7);
}

/*секции*/
.section-max {
	padding: 80px 0;
	background-position: center center;
	background-attachment: fixed;
}
.section-shadow {
	padding: 80px 0;
	background-position: center center;
	background-attachment: fixed;
	box-shadow: rgba(0,0,0,0.2) 0 0 40px;
	position: relative;
	z-index: 2;
}
.section-min {
	background-position: center center;
	background-attachment: fixed;
}
.white-block {
	padding-top: 80px;
	padding-bottom: 80px;
	background: var(--m-white);
}

.white-block img {
max-width: 100%;
}

/*Блок облачные сервисы*/

.cloud-service {
	background-image: url(../images/background/pautinki.jpg);
}
.cloud-service h2 {
	font-size: 3rem;
	font-weight: 600;
}
.cloud-service h2 span {
	color: var(--m-orange);
	display: block;
}
.cloud-service h2 span:before {
	background: none;
}
.cloud-service .inform.one {
	border-left: 4px solid #90a4ae;
}
.cloud-service .inform.two {
	border-left: 4px solid #ef6400;
}
.cloud-service .inform.three {
	border-left: 4px solid #9f1e00;
}
.cloud-service .otstup {
	width: 100%;
	height: 220px;
}
.cloud-service .imagefon {
	top: 260px;
	left: 0;
}

/*новости*/

.news {
	background-image: url(../images/background/news.jpg);
}
.news-block {
	padding: 20px 20px;
	background: var(--m-white);
	margin-top: 20px;
	position: relative;
	cursor: default;
}
.news-block:before {
	content:'';
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 0;
	background: var(--l-gradient);
	transition: all 0.3s ease;
	z-index: 0;
	border-radius: 5px;
}
.news-block:hover:before {
	height: 100%;
}
.news-block .image-news {
	height: 160px;
	overflow: hidden;
}
.news-block .image-news img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.news-block .image-news .date {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: var(--m-white);
	font-size: 2rem;
	font-weight: bold;
	width: 70px;
	height: 70px;
}
.news-block .image-news .date span {
	display: block;
	font-size: 0.8rem;
	font-weight: 300;
}
.news-block h3 {
	font-size: 0.9rem;
	font-weight: bold;
	padding-top: 10px;
	position: relative;
	z-index: 2;
}
.news-block p {
	height: 180px;
	position: relative;
	z-index: 2;
}
@media (max-width: 768px) {
	.news-block p {
		height: auto;
	}
}
.line-razdelite {
	height: 40px;
	width: 100%;
	background: url('../images/elements/line-fon-g.png') center;
	margin: 40px auto;
	position: relative;
}

/*новости фул*/
.g-menu {
	display: block;
	border-radius: 2px;
	border: 1px solid #ccc;
	padding: 5px;
	text-decoration: none;
	color: var(--m-grey);
	margin-top: 5px;
	margin-bottom: 5px;
	background: var(--m-white);
}
.g-menu:hover {
	color: var(--m-orange);
	text-decoration: none;
}
.hot-news h3 {
	height: 70px;
}
.hot-news p {
	height: 152px;
word-break: break-word;
}
@media (max-width: 992px) {
	.hot-news p {
		height: 85px;
	}
}
@media (max-width: 470px) {
	.hot-news p {
		height: auto;
	}
	.hot-news h3 {
		height: auto;
	}
}
.news-intro p {
	font-size: 1.2rem;
}
.news-imag img {
	max-width: 100%;
}

.date-news {
	color: #999;
}
.page-list li {
	list-style-type: none;
	margin: 0 5px;
}
.page-list li a {
	color: var(--m-grey);
	padding: 5px 10px;
	border: 1px solid #777;
	display: block;
	border-radius: 2px;
	transition: var(--transition);
}
.page-list li a:hover {
	background: #777;
	color: var(--m-white);
	transition: var(--transition);
	text-decoration: none;
}

/*видео*/
.video {
	background-image: url(../images/background/video.jpg);
}
.video .display {
	top: 0;
	right: 0;
	z-index: 1;
}
.video .video-play {
	position: absolute;
	z-index: 10;
	top: 0;
	right: 0;
	padding-top: 25px;
	padding-left: 11.2%;
	padding-right: 11.2%;
}
.video .video-play iframe {
	width: 100%;
	height: 320px;
}
@media (max-width: 1348px) {
	.video .video-play {
		padding-left: 6.9%;
		padding-right: 6.9%;
	}
}
@media (width: 1348px) {
	.video .video-play {
		padding-left: 11%;
		padding-right: 11%;
	}
}
@media (max-width: 1200px) {
	.video .video-play {
		padding-top: 17px;
		padding-left: 6.9%;
		padding-right: 6.9%;
	}
	.video .video-play iframe {
		height: 270px;
	}
}
@media (max-width: 992px) {
	.video .video-play {
		padding-top: 14px;
		padding-left: 8%;
		padding-right: 8%;
	}
	.video .video-play iframe {
		height: 200px;
	}
}
@media (max-width: 768px) {
	.video .video-play {
		padding-top: 20px;
		padding-left: 7%;
		padding-right: 7%;
		position: relative;
	}
	.video .video-play iframe {
		height: 300px;
	}
}

/*преимущества*/
.preimushestva {
	background: var(--m-white);
}
.preimushestva .block-border {
	margin-top: 20px;
}
.preimushestva .block:before {
	content:'';
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 0;
	background: var(--l-gradient);
	transition: all 0.3s ease;
	z-index: 0;
	border-radius: 5px;
}
.preimushestva .block:hover:before {
	height: 100%;
}
.preimushestva .block .media {
	z-index: 2;
	position: relative;
	padding-top: 30px;
	padding-bottom: 30px;
	cursor: default;
}
.preimushestva .block .media img {
	max-width: 40px;
}

/*отзывы*/
.otzivi {
	background-image: url(../images/background/keis.png);
}
.otzivi .block {
	background: var(--m-white);
	border: 1px dashed var(--m-dark-grey);
	box-shadow: rgba(0,0,0,0.2) 0 0 40px;
}
.otzivi .problems {
	padding-top: 40px;
	border-right: 1px solid #efefef;
}
.otzivi .problems h3 {
	color: var(--m-dark-orange);
}
.otzivi .decision {
	padding-top: 40px;
}
.otzivi .decision h3 {
	color: var(--m-orange);
}
.otzivi .people {
	padding-top: 40px;
	background: var(--l-gradient);
}
.otzivi .people h3 {
	padding: 20px 0;
}
.otzivi .people p {
	padding-bottom: 40px;
}
.otzivi .people p span {
	display: block;
}

/*подвал*/
.footer {
	background: var(--l-g-footer);
	border-top: 2px solid var(--m-white);
	box-shadow: rgba(0,0,0,0.2) 0 0 40px;
	z-index: 2;
}
.footer .contact {
	padding-top: 20px;
	color: var(--m-white);
	font-size: 12px;
}
.footer .contact .logo {
	width: 150px;
	margin-bottom: 15px;
}
.footer .contact .block {
	padding: 0 15px;
}
.footer .contact .block.map {
	margin-top: 10px;
	margin-bottom: 10px;
}
.footer .contact .block .link {
	font-size: 1rem;
	color: var(--m-white);
	transition: var(--transition);
}
.footer .contact .block .link:hover {
	color: var(--m-orange);
	text-decoration: none;
}

/*подвал SMM*/
/* .smm {
	padding-top: 10px;
	padding-bottom: 10px;
}
.smm a {
	display: inline-block;
	width: 27px;
	height: 27px;
	border: 1px solid var(--m-white);
	border-radius: 50%;
	text-align: center;
	padding-top: 2px;
	color: var(--m-white);
	transition: var(--transition);
	position: relative;
	font-size: 14px;
}
.smm a:hover {
	background: var(--m-white);
}
.smm a:before {
	display: none;
	position: absolute;
	top: -38px;
	left: 0;
	width: 200px;
	background: var(--m-white);
	padding: 5px;
	border-radius: 5px;
	z-index: 99999;
	border: 1px dashed var(--m-dark-grey);
	box-shadow: rgba(0,0,0,0.3) 3px 3px 5px;
}
.smm a.whatsapp:hover {
	border: 1px solid #2cd36b;
	color: #2cd36b;
}
.smm a.whatsapp:before {
	content: 'Мы в WhatsApp';
}
.smm a.viber:hover {
	border: 1px solid #7b519b;
	color: #7b519b;
}
.smm a.viber:before {
	content: 'Мы в Viber';
}
.smm a.telegram:hover {
	border: 1px solid #32a5de;
	color: #32a5de;
}
.smm a.telegram:before {
	content: 'Мы в Telegram';
}
.smm a.telegram_send:hover {
	border: 1px solid #32a5de;
	color: #32a5de;
}
.smm a.telegram_send:before {
	content: 'Написать нам в Telegram';
}
.smm a.skype:hover {
	border: 1px solid #17b0ee;
	color: #17b0ee;
}
.smm a.skype:before {
	content: 'Мы в Skype';
}
.smm a.vk:hover {
	border: 1px solid #5381b6;
	color: #5381b6;
}
.smm a.vk:before {
	content: 'Группа в Вконтакте';
}
.smm a.facebook:hover {
	border: 1px solid #3c5996;
	color: #3c5996;
}
.smm a.facebook:before {
	content: 'Группа в Facebook';
}
.smm a.odnoklassniki:hover {
	border: 1px solid #f4812e;
	color: #f4812e;
}
.smm a.odnoklassniki:before {
	content: 'Группа в Одноклассниках';
}
.smm a.instagram:hover {
	border: 1px solid #d52876;
	color: #d52876;
}
.smm a.instagram:before {
	content: 'Мы в Instagram';
}
.smm a.twitter:hover {
	border: 1px solid #56cbfd;
	color: #56cbfd;
}
.smm a.twitter:before {
	content: 'Мы в Twitter';
}
.smm a.youtube:hover {
	border: 1px solid #fd0016;
	color: #fd0016;
}
.smm a.youtube:before {
	content: 'Мы в YouTube';
}
.smm a.tiktok:hover {
	border: 1px solid #333333;
	color: #333333;
}
.smm a.tiktok:before {
	content: 'Мы в TikTok';
}

.smm a:hover:before {
	display: block;
} */

.footer-mars {
	padding: 3px 10px;
	background: rgba(255,255,255,0.2);
	border: 1px dashed var(--m-white);
	border-radius: 5px;
	transition: var(--transition);
	color: var(--m-white);
	margin-bottom: 10px;
}
.footer-mars:hover {
	background: rgba(255,255,255,0.5);
	color: var(--m-white);
	text-decoration: none;
}
.footer-mars img {
	width: 30px;
}

/*подвал форма*/
.footer-form {
	padding-top: 20px;
	color: var(--m-white);
	overflow: hidden;
}
.footer-form .h3 {
	background: var(--l-gp-mars);
	padding-top: 10px;
	padding-bottom: 10px;
	border-radius: 2px;
	font-size: 1.4rem;
}
.footer-form .text {
	font-size: 0.6rem;
}
.footer-form .text a {
	color: var(--m-orange);
	padding-bottom: 5px;
	display: block;
}

/*меню подвал*/
.footer-menu {
	padding: 20px;
	background: var(--m-dark-grey);
	border-top: 2px solid var(--m-white);
	box-shadow: rgba(0,0,0,0.2) 0 0 40px;
	z-index: 2;
	color: var(--m-white);
}
.footer-menu .block {
	padding-top: 40px;
}
.footer-menu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.footer-menu .h3 {
	font-size: 0.8rem;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--m-white);
}
.footer-menu ul li a {
	color: var(--m-white);
	font-size: 0.7rem;
	padding-top: 10px;
	padding-bottom: 0;
	display: inline-block;
}
.footer-menu ul li ul li a {
	color: #ccc;
	font-size: 0.6rem;
	padding-top: 0;
	padding-bottom: 0;
}
.footer-info {
	padding: 20px 0;
	background: var(--l-g-footer);
	border-top: 2px solid var(--m-white);
	box-shadow: rgba(0,0,0,0.2) 0 0 40px;
	z-index: 2;
	color: #ccc;
	font-size: 0.6rem;
}
@media(max-width: 768px) {
	.footer-menu .h3,
	.footer-menu ul li a,
	.footer-menu ul li ul li a,
	.footer-info {
		font-size: 0.8rem;
	}
}

/*всплывашка*/
.pop-form {
	z-index: 99999;
	background: var(--l-gradient);
	//background: #c0eedf;
	padding: 0;
	margin: 0;
	display: none;
	position: relative;
	transition: var(--transition);
}
.pop-form:after {
	content: '';
	position: absolute;
	width: 2px;
	height: 100%;
	background: var(--m-white);
	right: 0;
	top: 0;
	z-index: 2;
}
.pop-form .text {
	font-size: 0.6rem;
	margin-bottom: 5px;
}
.mask {
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.85);
	z-index: 9999;
	display: none;
	position: fixed;
	overflow: hidden;
}
.pop-close .fa-times {
	display: inline-block;
	font-size: 1.6rem;
	color: var(--m-grey);
	cursor: pointer;
	transition: var(--transition);
	margin-top: 5px;
	margin-bottom: 5px;
}
.pop-close .fa-times:hover {
	transform: rotate(30deg);
	color: var(--m-dark-grey);
}
.pop-form .zagl {
	margin-bottom: 5px;
	padding-top: 10px;
	padding-bottom: 5px;
	font-size: 1.2rem;
	position: relative;
	border-bottom: 1px solid #9fa9ad;
	margin-bottom: 10px;
}
.pop-form .phoneline {
	font-size: 1.4rem;
	width: 50px;
	height: 50px;
	background: var(--m-white);
	border-radius: 50%;
	padding-top: 7px;
	color: var(--m-grey);
}
.pop-form .media {
	margin-top: 20px;
	border-top: 1px solid #9fa9ad;
	border-bottom: 1px solid #9fa9ad;
	padding: 10px 0;
}
.pop-form .media .naklon {
	padding-left: 10px;
	display: block;
	font-size: 0.75rem;
}
.chel {
	margin-top: 30px;
	max-width: 100%;
}

.top {
	position: fixed;
	font-size: 3rem;
	bottom: 20px;
	left: 20px;
	color: var(--m-grey);
	z-index: 10;
	cursor: pointer;
	transition: var(--transition);
	display: none;
}
.top:hover {
	color: #999;
}

/*about*/
.s-about {
	background-image: url(../images/background/mars.jpg);
}
.s-about .media i {
	font-size: 1.6rem;
	margin-right: 20px;
	color: var(--m-grey);
	width: 40px;
}
.s-about .media h5 a {
	color: var(--m-dark-grey);
}
.s-about .media h5 span {
	font-size: 0.8rem;
}
.s-about .about-preim {
	padding-top: 80px;
	padding-bottom: 80px;
}
.s-about .about-preim h5 {
	font-size: 2rem;
	color: var(--m-dark-orange);
}
.s-about .about-preim div {
	transition: var(--transition);
}
.s-about .about-preim div:hover {
	transform: scale(1.1,1.1);
}

/*1c*/
.block-tarif {
	background-image: url(../images/background/fon1c.png);
}
.block1c-background {
	background: url(../images/1c/back1c-tarif.png) center;
	border-radius: 5px;
}
.block-tarif .block {
	padding-top: 20px;
	padding-bottom: 20px;
}
.block-tarif .block.cvet {
	background: var(--l-gradient-block);
	border-radius: 5px;
}
.block-tarif .block .connect {
	text-transform: uppercase;
}
.price {
	font-size: 1.2rem;
	color: var(--m-dark-orange);
	background: rgba(255,255,255,0.9);
	border-radius: 5px;
}
.price span {
	font-size: 3rem;
}
.block-tarif .block:before {
	content:'';
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 0;
	background: var(--l-gradient);
	transition: all 0.3s ease;
	z-index: 0;
	border-radius: 5px;
}
.block-tarif .block:hover:before {
	height: 100%;
}
.block-tarif .block h3, .block-tarif .block p, .block-tarif .block i, .block-tarif .block .media-body {
	z-index: 2;
	position: relative;
}
.block-tarif .block h3 {
	padding-bottom: 15px;
	margin: 0;
	border-bottom: 1px dashed var(--m-dark-grey);
}
.block-tarif .block .connect {
	padding: 5px;
}
.block-tarif .block .m-button {
	margin-top: 20px;
}
.block-tarif .media {
	z-index: 2;
	position: relative;
	padding-top: 5px;
	padding-bottom: 5px;
	cursor: default;
}
.block-tarif .media i {
	font-size: 1.5rem;
	padding-right: 20px;
	width: 40px;
}
.hit-tarif {
	top: 9px;
	right: 15px;
	background: var(--m-orange);
	padding: 10px;
	color: var(--m-white);
	font-weight: bold;
	border: 2px solid var(--m-white);
	border-radius: 5px;
}
.rent1c {
	background-image: var(--m-white);
}

.deistvia {
	background-image: var(--l-gradient), url(../images/background/scroll/about.jpg);
	background-blend-mode: screen;
}
.number-podkl {
	width: 40px;
	height: 40px;
	background: var(--m-orange);
	font-size: 1.5rem;
	border-radius: 5px 0 5px 0;
	color: var(--m-white);
}

.conf-1c-block {
	font-size: 1.2rem;
}
.conf-1c-block.one {
	color: var(--m-orange);
}
.conf-1c-block.two {
	color: var(--m-grey);
}

/*калькулятор сервер*/
.kalkulator-server {
	background-image: url(../images/background/pautinki.jpg);
}
.kalkulator-server .media {
	z-index: 2;
	position: relative;
	padding-top: 5px;
	padding-bottom: 5px;
	cursor: default;
}
.kalkulator-server .media i {
	font-size: 1.5rem;
	padding-right: 20px;
	width: 40px;
}
.polzunok {
	-webkit-appearance: none;
	margin-bottom: 0;
	padding-left: 0;
	padding-right: 0;
	background: none;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	position: relative;
}
.polzunok::-webkit-slider-runnable-track {
	border-radius: 5px;
	height: 5px;
	border: 1px solid var(--m-white);
	background-color: #aaa;
}
.polzunok::-webkit-slider-thumb {
	-webkit-appearance: none;
	background-color: var(--m-blue);
	border: 2px solid var(--m-white);
	width: 20px;
	height: 20px;
	border-radius: 10px;
	cursor: pointer;
	margin-top: -9px;
	transition: var(--transition);
}
.polzunok::-webkit-slider-thumb:hover {
	background: var(--yellow);
}
.polzunok:focus {
	outline: none;
	background: none;
}
.polzunok:hover {
	background: none;
}

.plus, .minus {
	cursor: pointer;
	margin-top: 0;
	height: 35px
}
.minus {
	border-radius: 5px 0 0 5px;
}
.plus {
	border-radius: 0 5px 5px 0;
}
.pole {
	max-width: 60px;
	padding-left: 0;
	padding-right: 0;
	text-align: center;
	box-shadow: rgba(0,0,0,0.2) 5px 5px 5px;
	border-bottom: 3px solid #777;
}
.snem {
	font-style: italic;
}
.videlishka {
	background: #ef6400;
	color: #fff;
	padding-top: 10px;
	padding-bottom: 22px;
}

.callico {
	display: none;
}
@media(max-width: 992px) {
	.callico {
		display: block;
	}
}

.radios-tarif {
	font-size: 1rem;
}
.radios-tarif input {
	display: none;
}
.radios-tarif label {
	display: block;
	margin: 0;
	padding: 10px 10px;
	border: 1px solid #ccc;
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%);
	cursor: pointer;
	position: relative;
}
.radios-tarif label.one span, .radios-tarif label.two span {
	font-size: 10px;
	font-style: italic;
}
.radios-tarif label.one::before {
	position: absolute;
	top: 4px;
	left: 10px;
	content: url(../images/vps/vps_mini.png); /* "\f3a5" */
	font-family: 'Font Awesome 5 Free';
	color: var(--m-blue);
	font-size: 1.5rem;
}
.radios-tarif label.two::before {
	position: absolute;
	top: 4px;
	left: 10px;
	content: url(../images/vps/vps_gold_mini.png); /* "\f3a5" */
	font-family: 'Font Awesome 5 Free';
	font-weight: bold;
	color: var(--m-orange);
	font-size: 1.5rem;
}
.radios-tarif input:checked + label {
	background: var(--l-gradient);
	box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.1);
}
.radios-tarif div:first-child label {
	margin-left: 0;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.radios-tarif div:last-child label {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.osradio + label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 22px;
	height: 22px;
	border: 1px solid #CDD1DA;
	border-radius: 50%;
	background: var(--m-white);
}
.osradio + label:after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--orange);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.5);
	opacity: 0;
	transition: .2s;
}

/*чекбокс*/
@keyframes click-wave {
	0% {
		height: 40px;
		width: 40px;
		opacity: 0.35;
		position: relative;
	}
	100% {
		height: 200px;
		width: 200px;
		margin-left: -80px;
		margin-top: -80px;
		opacity: 0;
	}
}

.option-input {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	position: relative;
	height: 25px;
	width: 25px;
	transition: all 0.15s ease-out 0s;
	background: #fff;
	box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 1px rgba(255, 255, 255, 0.06);
	cursor: pointer;
	display: block;
	margin-right: 10px;
	outline: none;
	z-index: 1000;
}
.option-input:hover {
	background: #efefef;
}
.option-input:checked {
	background: var(--orange);
}
.option-input:checked::before {
	height: 25px;
	width: 25px;
	position: absolute;
	content: '✔';
	display: inline-block;
	font-size: 1rem;
	text-align: center;
	line-height: 25px;
	color: var(--m-white);
}
.option-input:checked::after {
	animation: click-wave 0.65s;
	background: var(--orange);
	content: '';
	display: block;
	position: relative;
	z-index: 100;
}

/*Селекты*/
/* select {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	outline: 0;
	box-shadow: none;
	border: 1px solid var(--m-blue) !important;
	//background: var(--m-blue);
	background-image: none;
	border-radius: 3px;
}
.select {
	position: relative;
	display: block;
	width: 100%;
	height: 40px;
	line-height: 3;
	//background: var(--m-blue-medium);
	overflow: hidden;
}
select {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0 0 0 40px;
	color: var(--m-blue);
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}
/* Arrow */
.select::after {
	content: "\f107";
	font-family: 'Font Awesome 5 Free';
	font-weight: bold;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding: 0 15px;
	background: var(--m-blue);
	pointer-events: none;
	color: var(--m-white);
	border-radius: 0 3px 3px 0;
}
.select:hover::after {
	background: var(--m-blue-medium);
}
.select::after {
	transition: .5s all ease;
} */

.grad-block {
	padding-top: 20px;
	padding-bottom: 20px;
}
.grad-block.cvet {
	background: var(--l-gradient-block);
	border-radius: 5px;
}
.grad-block:before {
	content:'';
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 0;
	background: var(--l-gradient);
	transition: all 0.3s ease;
	z-index: 0;
	border-radius: 5px;
}
.grad-block:hover:before {
	height: 100%;
}
.grad-block h3, .grad-block p, .grad-block i, .grad-block img, .grad-block .media-body, .grad-block .more-b {
	z-index: 2;
	position: relative;
}

.more-b {
	color: #aaa;
	cursor: pointer;
	display: block;
	text-align: center;
	font-weight: bold;
}
.more-b:hover {
	color: var(--m-white);
	background: #aaa;
	transition: var(--transition);
}

.raschetserver p {
	margin: 0;
	padding: 0;
}
.priceitog {
	font-size: 1.2rem;
}
.cena {
	color: var(--m-dark-orange);
	font-size: 1.5rem;
}
.cena span {
	font-size: 4rem;
}
.oldcena {
	font-size: 1.2rem;
	display: none;
	color: var(--m-grey);
}
.oldcena .oldprice {
	text-decoration:line-through;
}

.media.pdf-download, .media.ipt {
	cursor: pointer;
	transition: var(--transition);
	border-bottom: 1px solid var(--m-white);
}
.media.pdf-download:hover, .media.ipt:hover {
	opacity: 0.7;
}

.sticky {
	position: sticky;
	top: 100px;
}

.section-max.tp-support {
	background-image: rgba(255,255,255,0.1), url(../images/vps/tp-back.png);
	background-blend-mode: screen;
	background-position: center center;
	background-attachment: scroll;
}

#bannerSlider .one, #bannerSlider .two {
	background-size: contain;
	height: 400px;
}
#bannerSlider .one {
	background: url(../images/vps/banner/ban1.png) center;
}
#bannerSlider .two {
	background: url(../images/vps/banner/ban2.png) center;
}
#bannerSlider .h1 {
	font-size: 2.8rem;
}
#bannerSlider .h2 {
	font-size: 1.5rem;
}

.demo {
	background-image: url(../images/background/bg-demo.png);
}
.snoska-block {
	background: var(--l-gradient-block);
	border-radius: 5px;
}
.snoska-block i {
	font-size: 1.6rem;
	color: var(--m-white);
}
.snoska-block p {
	font-size: 1.2rem;
	font-style: italic;
}

.veeamspeed {
	display: none;
}
.sum-backup {
	font-size: 1rem;
}
.sum-backup span {
	font-size: 1.2rem;
	color: #9f1e00;
}

.th-tab {
	border-top: 1px solid #dee2e6;
	border-bottom: 1px solid #dee2e6;
}
.td-tab-one {
	border-top: 1px solid #dee2e6;
	border-bottom: 1px solid #dee2e6;
	background: rgba(0, 0, 0, 0.05);
}
.td-tab-two {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	background: #fff;
}

.text-dark-orange {
	color: #9f1e00;
}

/*партнёры*/
.partners-block {
	background-image: url(../images/partners/partn_bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	padding: 100px 0;
}
@media(max-width: 1040px) {
	.partners-block {
		background: #4B8FE0;
		background-image: none;
	}
}
.partners-block h2, .partners-block h3, .partners-block p {
	color: #fff;
}
.partners-block h2 span:before {
	content:'';
	position: absolute;
	bottom: 5px;
	left: 0px;
	width: 100%;
	height: 0;
	background: #fff;
	z-index: -1;
	opacity: 1;
}
.partners-block .price {
	background: #ef6400;
	padding: 40px 0;
	border: 4px solid #fff;
}
.partn_bl {
	background: #00add1;
}
.partn_bl h2, .partn_bl p {
	color: #fff;
}
.partn_bl h2 span:before {
	content:'';
	position: absolute;
	bottom: 5px;
	left: 0px;
	width: 100%;
	height: 0;
	background: #fff;
	z-index: -1;
	opacity: 1;
}

/*off-server*/
.overhide {
	overflow: hidden;
	position: relative;
	width: 350px;
	height: 310px;
	margin: 0 auto;
}
.of-hide {
	overflow: hidden;
}
.vps-anim-phone {
	position: absolute;
	z-index: 1;
	top: 80px;
	left: 30px;
	width: 249px;
	height: 133px;
	background: url(../images/vps/animation/phone.png);
}
@keyframes anim-text {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(3deg);
	}
	100% {
		transform: rotate(0deg);
	}
}
.vps-anim-text {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 298px;
	height: 83px;
	background: url(../images/vps/animation/text.png);
	animation: anim-text 2s infinite;
	transform-origin: bottom right;
}
.vps-anim-button {
	position: absolute;
	z-index: 3;
	top: 105px;
	left: 115px;
	width: 83px;
	height: 83px;
	background: url(../images/vps/animation/button.png);
	transition: var(--transition);
	cursor: pointer;
}
.vps-anim-button:hover {
	background: url(../images/vps/animation/button-hover.png);
	transition: var(--transition);
}
.vps-anim-ruka {
	position: absolute;
	z-index: 4;
	top: 200px;
	left: 180px;
	width: 134px;
	height: 189px;
	background: url(../images/vps/animation/ruka.png);
}
@keyframes anim-ruka {
	0% {
		transform: translate(0,0);
	}
	50% {
		transform: translate(-20px,-40px);
	}
	100% {
		transform: translate(0,0);
	}
}
.action-animate:hover .vps-anim-ruka {
	animation: anim-ruka 2s infinite;
	transition: all 0.4s ease-out;
}
.anim-over {
	display: none;
	overflow: hidden;
	position: relative;
	width: 350px;
	height: 310px;
	margin: 0 auto;
}
.anim-office {
	z-index: 1;
	position: relative;
}
.anim-but-call {
	position: absolute;
	top: 46%;
	z-index: 2;
	display: none;
	animation-name: bounceInDown;
	animation-duration: 1s;
	animation-timing-function: ease;
}

.type-1c {
	background: #fbed9e;
	border-right: 2px solid #bca417;
}

/*кошечка*/
.simplemodal-overlay {
	background: rgba(0,0,0,0.9);
	width: 100%;
	height: 100%;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
}
.exit_content {
	display: none;
	width: 700px;
	background: #fff url('../images/popup/cat.png') no-repeat;
	background-size: 350px;
	box-shadow: rgba(0,0,0,0.5) 0 0 80px;
	padding-top: 50px;
	padding-left: 0;
	padding-right: 0;
	color: #666;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -200px;
	margin-left: -350px;
}
.modal-close {
	background: url('../images/popup/x.png') no-repeat;
	width: 25px;
	height: 29px;
	display: inline;
	z-index: 3200;
	position: absolute;
	top: 0px;
	right: 0px;
	cursor: pointer;
}
.modal-close:hover {
	opacity: 0.7;
}
.modal-logo {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 9px solid #ccc;
	background: url('../images/popup/l-man.jpg') center;
	position: absolute;
	top: -50px;
	left: 50%;
	margin-left: -59px;
}
.call-top {
	padding: 20px;
	text-align: center;
}
.call-top .uze_uhodite {
	font-size: 28px;
}
.call-top .uze_uhodite span {
	display: block;
}
.call-top .na_linii {
	font-size: 16px;
}
.call-bottom {
	background: #ccc;
	padding: 20px;
	text-align: center;
}
.f-call {
	padding: 10px 20px;
	border: none;
	font-size: 18px;
	width: 60%;
	margin-right: 20px;
	margin-bottom: 10px;
}
.fb-call {
	padding: 10px 20px;
	color: #fff;
	background: #ef6400;
	border: none;
	font-size: 18px;
	width: 35%;
	height: 50px;
	box-shadow: inset 0 0 0 0 #9f1e00;
	transition: 0.15s;
	margin-bottom: 10px;
	cursor: pointer;
}
.fb-call:hover {
	box-shadow: inset 0 0 0 35px #9f1e00;
	transition: 0.15s;
}
.call-sogl {
	color: #888;
	font-size: 10px;
	position: absolute;
	bottom: 20px;
	left: 20px;
	text-decoration: none;
}

.block-tarif .media i.i-quest, i.i-quest {
	font-size: 1rem;
	cursor: pointer;
	position: relative;
	color: var(--m-dark-orange);
}
.question-block {
	display: none;
	color: var(--m-dark-grey);
	width: 100%;
	font-family: "Open Sans", sans-serif;
	font-size: 0.8rem;
	border-radius: 2px;
	position: absolute;
	top: 35px;
	left: 0px;
	background: var(--m-white);
	padding: 10px;
	box-shadow: rgba(0,0,0,0.2) 2px 2px 5px;
	transition: var(--transition);
	z-index: 999;
	border: 2px solid #ccc;
}
.question-block:after, .question-block:before {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.question-block:after {
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #fff;
	border-width: 10px;
	margin-left: -10px;
}
.question-block:before {
	border-color: rgba(239, 100, 0, 0);
	border-bottom-color: #ccc;
	border-width: 13px;
	margin-left: -13px;
}
.block-tarif .media i.i-quest:hover ~ .question-block, i.i-quest:hover ~ .question-block {
	display: block;
}

/*ГРМ*/
.block-grm {
	background: #f2f2f2;
}
.opacity-block {
	padding-top: 80px;
	padding-bottom: 80px;
}
.grm-header {
	z-index: 1;
	height: 100%;
	right: 15%;
}
.grm-polosa {
	width: 437px;
	background-color: #fd0;
	height: 100%;
	transform: skewX(-36deg);
	overflow: hidden;
}
.grm-polosa .grm-img {
	width: 100vw;
	height: 100%;
	background: url(../images/grm/part-grm.jpg) center;
	transform: skewX(36deg);
}
@media (max-width: 720px) {
	.grm-polosa {
		transform: skewX(0deg);
	}
	.grm-polosa .grm-img {
		transform: skewX(0deg);
	}
}
.grm-header-text {
	z-index: 2;
}
h2.h2grm {
	font-size: 4rem;
}
h2.h2grm2 {
	font-size: 3rem;
	background: rgba(0,0,0,0.4);
	display: inline-block;
	padding: 10px;
	color: var(--m-white);
}
h3.h3grm {
	font-size: 2.2rem;
}
h4.h4grm {
	font-size: 1.22rem;
}
@media (max-width: 720px) {
	h2.h2grm {
		font-size: 3rem;
	}
	h2.h2grm2 {
		font-size: 2rem;
	}
}
.grm-button {
	padding: 10px 60px;
	background: #fff;
	border-radius: 5px;
	border: 3px solid #fd0;
	display: inline-block;
	color: #696969;
	text-align: center;
	font-size: 1.5rem;
	box-shadow: 0 9px 14px 2px rgba(0,0,0,0.1);
	position: relative;
	margin-top: 50px;
	margin-left: 2px;
	text-decoration: none;
	cursor: pointer;
}
.grm-button:hover {
	transform: translate(0, 3px);
	box-shadow: 0 7px 14px 2px rgba(0,0,0,0.1);
}
.grm-button:active {
	transform: translate(0, 7px);
	box-shadow: 0 2px 14px 2px rgba(0,0,0,0.1);
}
.grm-block-yellow {
	border-right: 1px solid #fd0;
}
.grm-block-yellow:first-child {
	border-left: 1px solid #fd0;
}
h3.h3-grm-opis {
	font-size: 1.2rem;
}
h3.h3-grm-opis span {
	font-size: 0.8rem;
	display: block;
}
.grm-info {
	background-image: var(--l-gradient-black), url(../images/grm/slide.jpg);
	background-blend-mode: multiply;
	background-size: cover;
}
.grm-info h2 {
	color: #fd0;
}
.grm-info p {
	color: var(--m-white);
}
.grm-info p span {
	color: #fd0;
	font-size: 1.2rem;
}
.b-shad-grm {
	box-shadow: rgba(0,0,0,0.1) 0 0 40px;
	font-size: 0.9rem;
	border: 1px solid #fd0;
	margin-bottom: 40px;
}
.b-shad-grm strong {
	font-size: 1.2rem;
}
.grm-back {
	background: #fafafa;
}
.grm-podkl {
	background: #fd0;
}
.grm-podkl h2 {
	color: var(--m-white);
}

.sravnenie {
	padding-top: 100px;

	background: #efefef;
	font-size: 16px;
}
.sravnenie h3 {
	font-size: 22px;
}
.sravnenie h3 span {
	background: #ff0000;
	font-size: 18px;
	padding: 5px 10px;
	color: var(--white);
}
.sravnenie .block {
	border: 1px solid var(--m-orange);
	padding-top: 40px;
	padding-bottom: 40px;
	background: var(--white);
	box-shadow: rgba(0,0,0,0.1) 0 0 25px;
}
.sravnenie .summ {
	font-style: italic;
}
.sravnenie .summ span {
	font-size: 42px;
	font-weight: 800;
	font-style: normal;
	color: #4353f8;
}
.sravnenie .nametools {
	color: #6a6a6a;
	font-style: italic;
}
.sravnenie .price-block span {
	font-size: 22px;
}
.section-form {
	background: url(../images/landing/rent1c/back-form-orange.jpg);
	background-size: cover;
	background-attachment: fixed;
	padding-top: 60px;
	padding-bottom: 60px;
}
.section-form h2 {
	font-size: 38px;
	font-style: italic;
	color: var(--m-white);
	padding-top: 40px;
}

.calkulator {
	background: #efefef;
	padding-top: 100px;
	padding-bottom: 40px;
	position: relative;
}
.calkulator .block {
	background: var(--m-white);
}
.calkulator h3 {
	font-size: 24px;
	color: #777;
}
.calkulator h4 {
	font-size: 14px;
	padding: 15px 0;
}

.calkulator input[type="text"] {
	border: 0;
	padding: 20px;
	box-shadow: none;
}
.calkulator input[type="text"]:hover {
	background: var(--m-white);
}
.calkulator input[type="range"] {
	width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	z-index: 2;
	position: relative;
	-webkit-appearance: none;
	width: 100%;
	height: 25px;
	background: var(--m-dark-grey);
	outline: none;
	opacity: 0.7;
	-webkit-transition: .2s;
	transition: opacity .2s;
}
.calkulator input[type="range"]:hover {
	opacity: 1;
}
.calkulator input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 25px;
	height: 25px;
	background: var(--m-orange);
	cursor: pointer;
	border: 1px solid var(--m-black);
}
.calkulator input[type="range"]::-moz-range-thumb {
	width: 25px;
	height: 25px;
	background: var(--m-orange);
	cursor: pointer;
}
.calkulator datalist {
	display: flex;
	width: 100%;
	justify-content: space-between;
	margin-top: -23px;
	padding-top: 0px;
}
.calkulator option {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	z-index: 1;
	position: relative;
	padding: 9px;
	font-style: italic;
}
.calkulator .summ-people {
	width: 100%;
	font-size: 18px;
	padding: 10px 30px;
	border: 0;
}
.calkulator .button {
	font-size: 18px;
	font-weight: 600;
	padding: 10px;
	-webkit-appearance: none;
	appearance: none;
	background: linear-gradient(to bottom, #ff8d36, #ef6400);
	color: var(--m-white);
	border: 1px solid var(--m-orange);
	border-radius: 2px;
	cursor: pointer;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
}
.calkulator .button-not {
	font-size: 18px;
	font-weight: 600;
	padding: 10px;
	-webkit-appearance: none;
	appearance: none;
	background-color: #eee;
	color: #ccc;
	border: 1px solid #ccc;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
}
.calkulator .button:hover {
	background: linear-gradient(to bottom, #ff9645, #ff710b);
}
.calkulator .summ-tarif {
	font-size: 14px;
	font-style: italic;
	color: #4353f8;
}
.calkulator .summ-tarif span, .functional {
	font-size: 24px;
	font-style: normal;
	font-weight: 800;
}
.calkulator .list-spisok {
	font-size: 16px;
	color: #6a6a6a;
	font-style: italic;
}
.calkulator .list-theme {
	font-size: 16px;
	text-align: center;
}
.calkulator .list-theme span {
	font-style: normal;
	font-weight: 800;
}
.calkulator .yes-circle {
	color: var(--m-orange);
}
.calkulator .not-circle {
	color: #efefef;
}
.calkulator .back-conf {
	background: #fafafa;
}

/*radio*/
.contain {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	margin-right: 20px;
	cursor: pointer;
	font-size: 14px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.contain input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border: 1px solid var(--m-dark-grey);
}
.contain:hover input ~ .checkmark {
	background-color: #ccc;
}
.contain input:checked ~ .checkmark {
	background-color: var(--m-orange);
}
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.contain input:checked ~ .checkmark:after {
	display: block;
}
.contain .checkmark:after {
 	top: 8px;
	left: 8px;
	width: 8px;
	height: 8px;
	background: var(--m-white);
}

.selkalk {
	width: 100%;
	height: 40px;
	margin: 5px 0;
	padding: 5px;
	color: var(--m-dark-grey);
	cursor: pointer;
	border: 1px solid var(--m-dark-grey) !important;
	border-radius: 0;
	position: relative;
}
.selkalk:disabled {
	background: #efefef;
	border: 1px solid #ccc !important;
	color: #ccc;
	cursor: default;
}
.ksumm, .ssumm, .osumm {
	font-size: 18px;
}

.flake {
	color: #fff;
}
.radios-tarif {
	display: flex;
}
.widthcalk {
	width: 50%;
}
.widthcalk label {
	padding-left: 55px;
}

@media(max-width: 576px) {
	.cloud-service h2, h2, h2.h2grm, h3.h3grm, h2.h2grm2 {
		font-size: 1.5rem;
	}
	h2.h2grm2 {
		max-width: 230px;
	}
	.rent1c img {
		display: none;
	}
	.sravnenie .summ span {
		font-size: 22px;
	}
	.sravnenie h3, .section-form h2 {
		font-size: 16px;
	}
	.footer-form .h3, h5, .h5, .snoska-block p {
		font-size: 1rem;
	}
	.shapka .media img {
		display: none;
	}
	.block-grm {
		background: #fedc2e;
	}
	#bannerSlider .h1 {
		font-size: 1.5rem;
	}
	#bannerSlider .h2 {
		font-size: 1rem;
	}
	.hit-tarif {
		display: none;
	}
	.cena span, .price span {
		font-size: 2rem;
	}
	#vk_community_messages {
		display: none;
	}
}
@media(max-width: 768px) {
	.polzunok {
		display: none;
	}
	.widthcalk {
		width: 100%;
		display: block;
	}
	.radios-tarif {
		display: block;
	}
}

.muzik {
	background: #ff0000;
}
.zacher {
	text-decoration: line-through;
}
.eTimer {
	display: none;
}

.news-statya h2 {
	font-size: 32px;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 0;
}
.news-statya h3 {
	font-size: 24px;
	padding-top: 20px;
	padding-bottom: 20px;
}
.news-statya ul {
	margin-left: 20px;
	padding: 0;
}
.news-statya ul li {
	font-size: 16px;
}
.news-statya ol {
	margin-left: 20px;
	padding: 0;
}
.news-statya ol li {
	font-size: 16px;
}
.news-statya blockquote {
	font-size: 16px;
	border-left: 2px solid #777;
	padding: 10px 20px;
	background: #f9f9f9;
	font-style: italic;
	margin-bottom: 0;
}
.news-statya p {
	font-size: 16px;
	margin-top: 20px;
	margin-bottom: 20px;
}
.news-statya .news-intro .intro {
	font-style: italic;
	color: #888;
}
.news-statya a {
	
}
.news-statya strong {
	
}
.news-statya em {
	
}
.news-statya del {
	
}
.news-statya img {
	padding: 20px;
}

.label_search {
	display: none;
}
input.input_search {
	width: calc(99% - 150px);
	margin-top: 5px;
	padding-left: 10px;
	padding-right: 10px;
	height: 36px;
	background: var(--m-white);
	border: 1px solid #ccc;
	border-radius: 0;
	box-shadow: none;
	position: relative;
}
input.input_search:hover {
	box-shadow: var(--m-orange) 0 0 5px;
	border: 1px solid var(--m-orange);
}
input.btn_search {
	width: 150px;
	margin-top: 5px;
	padding-left: 0;
	padding-right: 0;
	height: 36px;
	background: linear-gradient(to bottom, #ff8d36, #ef6400);
	color: var(--white);
	cursor: pointer;
	border: 0;
	border-radius: 2px;
	box-shadow: 0 5px 15px 0 rgba(42, 104, 133, 0.2);
	position: relative;
}
input.btn_search:hover {
	background: var(--m-dark-orange);
}

.kav {
	background-image: var(--l-gradient), url(../images/kav/background.jpg);
	background-size: cover;
	background-blend-mode: screen;
}
.kav h2 {
	margin-top: 100px;
	margin-bottom: 0;
	padding-bottom: 20px;
	font-weight: 600;
	font-size: 48px;
}
.kav .p-ital {
	margin-bottom: 100px;
	font-style: italic;
}
@media(max-width: 576px) {
	.kav h2 {
		font-size: 24px;
		margin-top: 40px;
	}
	.kav .p-ital {
		margin-bottom: 20px;
	}
}
.kav .green {
	margin-top: 20px;
	margin-bottom: 20px;
	background: #239B82;
	min-height: 100%;
	color: var(--m-white);
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
}
.kav .green a {
	color: var(--m-white);
	font-size: 16px;
}
.kav-block {
	padding: 60px 0;
}
.kav-block ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.kav-block ul li {
	padding: 5px 0;
}
.kav-grey {
	background: #f8f8f8;
}

.table-container {
	width: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
.table-container table {
	width: 100%;
}
.table-container table img {
	max-width: 100px;
}
.table-container table tr th {
	padding: 15px 20px;
	background: #ddd;
}
.table-container table tr td {
	padding: 15px 20px;
}
.table-container table tr:nth-child(2n) {
	background: #f8f8f8;
}

.spla {
	background-image: var(--l-gradient), url(../images/spla/origin.jpg);
	background-size: cover;
	background-blend-mode: screen;
}
.spla h2 {
	margin-top: 100px;
	margin-bottom: 0;
	padding-bottom: 20px;
	font-weight: 600;
	font-size: 48px;
}
.spla .p-ital {
	margin-bottom: 100px;
	font-style: italic;
}
@media(max-width: 576px) {
	.spla h2 {
		font-size: 24px;
		margin-top: 40px;
	}
	.spla .p-ital {
		margin-bottom: 20px;
	}
}

.csp {
	background-image: url(../images/csp/csp.jpg);
	background-size: cover;
	background-blend-mode: screen;
}
.csp h2 {
	margin-top: 100px;
	margin-bottom: 0;
	padding-bottom: 20px;
	font-weight: 600;
	font-size: 48px;
	color: var(--m-white);
}
.csp .p-ital {
	margin-bottom: 100px;
	font-style: italic;
	color: var(--m-white);
}
@media(max-width: 576px) {
	.csp h2 {
		font-size: 24px;
		margin-top: 40px;
	}
	.csp .p-ital {
		margin-bottom: 20px;
	}
}

.tarif-icon {
	z-index: 2;
	position: relative;
	max-width: 200px;
	margin-bottom: 20px;
	border-radius: 4px;
}

.backgr-sv {
	background: url(../images/background/background-main-set.jpg) 100% 100% no-repeat #477ab9;
	background-size: cover;
}

/*профстратег*/
.profstrateg {
	position: fixed;
	bottom: 60px;
	left: 0px;
	width: 400px;
	height: 400px;
	background-image: url(../images/profstrateg/sergey.png);
	background-size: cover;
	overflow: hidden;
	border-radius: 50%;
	transition: transform 1s;
	transform: rotate(-90deg);
	transform-origin: bottom left;
	z-index: 999;
	font-size: 14px;
	box-shadow: rgba(0,0,0,0.7) 0 0 25px;
}
.profstrateg .one {
	animation: anim 0.8s infinite;
	position: absolute;
	right: 0;
	top: 157px;
	width: 310px;
	padding: 10px 0 10px 30px;
	color: #fff;
	background: #fff;
	font-size: 18px;
	font-weight: bold;
	z-index: 1000;
	display: none;
}
.profstrateg .two {
	position: absolute;
	right: 0;
	top: 225px;
	width: 310px;
	padding: 10px 0 10px 30px;
	color: #333;
	background: #fff;
	font-size: 18px;
	font-weight: normal;
	z-index: 1001;
	display: none;
}
.profstrateg .three {
	position: absolute;
	right: 0;
	top: 270px;
	width: 310px;
	padding: 10px 0 10px 30px;
	color: #333;
	background: #fff;
	font-size: 14px;
	font-weight: normal;
	z-index: 1002;
	border-radius: 0 0 0 30px;
	display: none;
}
.profstrateg .three li {
	width: 220px;
}

@keyframes anim {
	0% {
		background: #ff0000;
	}
	50% {
		background: #ff6a6a;
	}
	100% {
		background: #ff0000;
	}
}

.rotate0 {
	transition: transform 0.5s ease;
	transform: rotate(0deg);
	transform-origin: bottom left;
}
.rotate90 {
	transition: transform 0.5s ease;
	transform: rotate(-90deg);
	transform-origin: bottom left;
}
.thumb-wrap {
	position: relative;
	padding-bottom: 56.25%; /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}
.thumb-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ororo strong, .ororo em {
	font-weight: 400;
	font-style: normal;
}

a.red_text {
	color: #ef3800;
}

@media(max-width: 620px) {
	.page-list {
		flex-wrap: wrap;
	}
}

/* cat_callback */
.cat_mask {
	background: rgba(255,255,255,.9);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 9999;
}
.cat_callback {
	position: fixed;
	margin: auto;
	padding: 40px;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #fff;
	max-width: 600px;
	height: 370px;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: rgba(0,0,0,.3) 0 0 15px;
	z-index: 99999;
	display: none;
}
.cat_callback .cat_input {
	padding: 10px 20px;
	border: 2px solid #ccc;
	border-radius: 5px;
	transition: .3s;
}
.cat_callback .cat_phone {
	width: calc(100% - 160px);
}
.cat_callback .cat_input:hover {
	border: 2px solid #333;
}
.cat_callback .cat_send {
	width: 140px;
	background: linear-gradient(to bottom, #ff8d36, #ef6400);
	cursor: pointer;
	color: #fff;
	text-align: center;
	line-height: 46px;
	margin-left: 20px;
	border-radius: 5px;
	transition: .3s;
	user-select: none;
}
.cat_callback .cat_send:hover {
	background: linear-gradient(to bottom, #ff8d36, #ef4400);
}
.cat_callback .cat_email1 {
	display: none;
}
.cat_callback .cat_video {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	overflow: hidden;
	outline: 3px solid #eee;
}
.cat_callback h3 {
	font-size: 34px;
	color: #000;
}
.cat_callback .cat_title {
	font-size: 16px;
	font-weight: 500;
	color: #333;
}
.cat_callback .cat_title span {
	display: block;
}
.cat_callback .cat_discription {
	font-size: 14px;
	color: #777;
}
.cat_callback .cat_info,
.cat_callback .cat_policy {
	font-size: 14px;
}
.cat_callback .cat_policy {
	text-align: right;
}
.cat_callback .cat_close {
	width: 20px;
	height: 20px;
	background-image: url(https://marstel.ru/assets/templates/mars/images/cat_callback/close.svg);
	position: absolute;
	top: 20px;
	right: 40px;
	cursor: pointer;
	opacity: .3;
	transition: .3s;
}
.cat_callback .cat_close:hover {
	opacity: .8;
	transform: rotate(90deg);
}
.cat_wait_group {
	display: none;
}
@media(max-width: 768px) {
	.cat_callback {
		max-width: 100%;
		height: 100%;
	}
	.cat_callback .cat_policy {
		text-align: left;
	}
}

iframe {
 max-width: 100%;
}