/* <Common definitions> */
html {
	margin: 0 auto;
}

body {
	background-color: #fff;
	margin: 0;
	padding: 0;
	font-family: Verdana, sans-serif;
}

/*.top-line {
	color: #3f5475;
	font-size: 12px;
	border-bottom: 1px solid #999;
	height: 24px;
	width: 100%;
	margin-bottom: -50px;
	// Netscape 4, IE 4.x-5.0/Win and other lesser browsers will use this 
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1000;
	background-color: #eaedf0;
	border-bottom: 2px solid #ccc;
}

form > div.top-line {
	// used by Opera 5+, Netscape6+/Mozilla, Konqueror, Safari, OmniWeb 4.5+, iCab, ICEbrowser
	position: fixed;
	height: 24px;
}

.top-line-inner {
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 4px 12px;
}

.top-line a {
	color: #3f5475;
}

.top-line select {
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 11px;
	border: 1px solid #CCCCCC;
	padding: 0;
	background-color: #F0F0F0;
}

.top-line .username, .top-line .wps, .top-line .login {
	padding-left: 14px;
	margin: 0px 4px;
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 12px; /* расстояние между элементами */
}

.header-contacts a {
  display: flex;
  align-items: center;
}

.header-contacts img {
  height: 24px; /* выравнивание размера иконок */
  width: auto;
  transition: transform 0.2s ease;
}

.header-contacts img {
  height: 24px;
  width: auto;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.header-contacts img:hover {
  transform: scale(1.3); /* сильнее увеличиваем и чуть поворачиваем */
}

.top-line .username {
	background: url(../images/icons/username.gif) 0px 2px no-repeat;
}

.top-line .wps {
	margin-left: 0px;
	padding-left: 5px;
}

.top-line .options {
	background: url(../images/icons/options.gif) 0px 2px no-repeat;
}

.top-line .login {
	background: url(../images/icons/exit.gif) 0px 3px no-repeat;
}
*/

td {
	padding: 0px;
	vertical-align: top;
}

form {
	padding: 0px;
	margin: 0px;
}

.top-bg {
	background: url("../images/bg/header-bg.jpg") #C0C0C0 left top no-repeat;
}

/* <Header> */

#header {
	background: rgba(118,35,35,0.65);
	padding: 30px 0;
	border: 0 solid;
	text-align: left;
	position: relative;
}
@media (min-width: 1200px) {
	#header {
		background: url("../images/bg/custom-content-bg.png") no-repeat 43% center rgba(118,35,35,0.65);
	}
}

#header .logo {
	display: inline-block;
	margin-right: 60px;
	color: #fff;
}
.logo-sign {
	margin-right: 10px;
	-webkit-transform: 0;
	-ms-transform: 0;
	transform: 0;
	-webkit-transition-duration: 3s;
	-ms-transition-duration: 3s;
	transition-duration: 3s;
}
body.loaded .logo-sign {
	-webkit-transform: rotate(1080deg);
	-ms-transform: rotate(1080deg);
	transform: rotate(1080deg);
}
#header .logo a {
	display: inline-block;
	vertical-align: middle;
}

#header .custom-content {
	display: inline-block;
	max-width: 290px;
	vertical-align: middle;
	color: #fff;
}

#header .header-contacts {
	color: #fff;
	margin-top: 17px;
	text-align: right;
}
@media (max-width: 679px) {
	#header .custom-content {
		display: block;
		margin-top: 20px;
	}
	#header .header-contacts {
		text-align: left;
	}
}

.header-phone {
	display: inline-block;
	font-size: 24px;
	line-height: 42px;
	margin-right: 30px;
	white-space: nowrap;
	vertical-align: middle;
	color: #fff;
	text-decoration: none;
}
.header-phone:hover,
.header-phone:focus {
	color: #fff;
	text-decoration: none;
}
.header-phone > img {
	margin-right: 5px;
}

.header-email {
	margin-right: 10px;
	vertical-align: middle;
	text-decoration: none;
}
.header-email:hover,
.header-email:focus {
	text-decoration: none;
}
.header-skype {
	vertical-align: middle;
	text-decoration: none;
}
.header-skype:hover,
.header-skype:focus {
	text-decoration: none;
}

/* </Header> */

/* <Menu> */
.toolbar {
	padding: 0;
	background-color: rgba(130, 0, 0, .8);
}

.top-menu {
	width: 100%;
	margin-left: 0px;
}

.top-menu ul {
	width: 100%!important;
	list-style: none;
	margin: 0;
	padding: 0;
}
.top-menu li {
	width: 20%;
}
.top-menu a {
	float: left;
	display: block;
	width: 100%;
	padding: 10px 0!important;
	border: none;
	text-align: center;
	font-weight: normal;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
}
.top-menu li:before {
	content: " ";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	display: block;
	height: 40px;
	width: 1px;
	background: rgba(255,255,255,0.3);
}
.top-menu li:last-child:after {
	content: " ";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto 0;
	display: block;
	height: 40px;
	width: 1px;
	background: rgba(255,255,255,0.3);
}
.top-menu a.active {
	font-weight: normal;
	color: #fff;
	text-decoration: none;
}
@media (max-width: 991px) {
	.top-menu li {
		width: auto;
	}
	.top-menu a {
		width: auto;
		padding: 10px 30px!important;
	}
}

.level2 a:hover, .top-menu a:hover, .top-menu a:hover table {
	background: #A10C0C;
}

.top-menu a.active, .level1 a:active {
	background: none repeat scroll 0 0 #A30E0E;
}


/* Clock */

/*#header .clock {
	margin-top: 30px;
	position: absolute;
	right: 20px;
}

.clock #date {
	background-color: #CC0000;
	color: #FFFFFF;
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 5px;
	padding: 4px 20px;
}

.clock #time {
	background-color: #820000;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: normal;
	padding: 3px 20px;
	text-align: left;
	margin-top: 5px;
}

.clock #note {
	background-color: #690000;
	color: #FFFFFF;
	display: block;
	font-size: 11px;
	padding: 3px 20px;
	width: 150px;
}

.clock {
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	display: inline;
	float: left;
}

.clock #clock {
	color: #000;
	font-size: 14px;
	display: inline;
	padding: 0px 10px 0px 0px;
	margin: 0px 10px 0px 0px;
	border-right: 1px solid #3F5475;
	line-height: 16px;
}*/

/* Carousel */
.carouselContainer {
	padding: 30px 0 54px;
}
.carousel-inner>.item {
	/*height: 420px;*/
	/*background: #fff;*/
}
@media (min-width: 1200px) {
	.carousel-inner>.item>img,
	.carousel-inner>.item>a>img {
		padding: 0 1px;
	}
}
.carousel-control {
	width: 10%;
	opacity: .7;
	filter: alpha(opacity=70);
}

.carousel-control.left,
.carousel-control.right {
	background: none;
}
.carousel-chevron-left,
.carousel-chevron-right {
	display: block;
	width: 100%;
	height: 100%;
}
.carousel-chevron-left {
	background: url("../images/icons/arrow-left.svg") no-repeat center center;
}
.carousel-chevron-right {
	background: url("../images/icons/arrow-right.svg") no-repeat center center;
}
.carousel-indicators {
	bottom: -36px;
	line-height: 1;
	margin-bottom: 0;
}
.carousel-indicators li {
	width: 14px;
	height: 14px;
	margin: 0 10px;
	border: none;
	background: #C98C8D;
}
.carousel-indicators .active {
	width: 14px;
	height: 14px;
	margin: 0 10px;
	background: #8D000A;
}

/* Content Container */
.page-header {
	margin: 0 0 30px;
	padding: 0;
	border-bottom: 0;
	text-transform: uppercase;
	color: #BC6567;
	font-weight: 700;
	text-align: center;
}
.alert {
	padding: 20px 40px;
	background: #eee;
	text-align: center;
}
.alert-danger {
	padding: 20px 40px;
	background: #F4E8E8;
	text-align: center;
}

.contentContainer {
	margin: 40px 0 10px;
}

.benefit-header {
	margin-top: 0;
	margin-bottom: 20px;
	text-transform: uppercase;
	color: #BC6567;
	font-weight: 700;
}
.benefit-descr {
	margin-bottom: 20px;
}
.benefit-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.benefit-list > li{
	padding-left: 50px;
	padding-bottom: 20px;
	background: url('../images/icons/tick.png') no-repeat top left;
}

.start-btn {
	-ms-border-radius: 0;
	border-radius: 0;
	margin-top: 30px;
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	background: #BC6567;
	color: #fff;
}
.start-btn:hover,
.start-btn:focus {
	color: #fff;
	background: #803739;
}

.benefit-block {
	margin-bottom: 30px;
}
.benefit-icon {
	float: left;
	width: 100px;
	text-align: center;
}
.benefit-text {
	padding-left: 120px;
}
.benefit-text > .moreinfo {
	display: block;
	margin-top: 10px;
}

@media (max-width: 991px) {
	.start-btn {
		margin-bottom: 60px;
	}
}

/* news */
.newsContainer {
	padding: 0 0 20px;
	border-bottom: 7px solid #E3E3E3;
	margin: 40px 0 14px;
}

.newsBlock {
	padding-top: 15px;
	padding-bottom: 15px;
}

.news-header {
	padding-bottom: 10px;
	border-bottom: 1px solid #C5D9DD;
	margin-top: 0;
	text-transform: uppercase;
	font-weight: 700;
	color: #803739;
}

.newsBlock .date {
	border-right: 3px solid #C8C8C8;
	color: #94383B;
	float: left;
	font-size: 30px;
	line-height: 20px;
	padding-right: 5px;
	text-align: center;
	width: 50px;
}

.newsBlock .date .month {
	color: #000;
	font-size: 16px;
	margin-top: 5px;
}

.newsBlock .text {
	padding-left: 63px;
	font-style: italic;
}

.newsBlock .text .moreinfo {
	display: block;
	margin-top: 10px;
	text-transform: lowercase;
	font-style: normal;
}

/* footer */

.contactsContainer {
	padding: 30px 0;
	background: #E3E3E3;
	color: #5D5D5D;
}
.footer-phone,
.footer-email {
	color: #5D5D5D;
	text-decoration: none;
}

@media (max-width: 767px) {
	.call-center-block {
		margin-top: 30px;
		margin-bottom: 30px;
	}
}

.copyrightContainer {
	margin-top: 40px;
}
.copyrightContainer .container {
	padding-top: 15px;
	padding-bottom: 30px;
	border-top: 1px solid #C6C6C6;
	font-size: 11px;
}

.copyright a {
	color: #666;
	text-decoration: none;
}

.copyright a:hover {
	text-decoration: underline;
}

.creator a {
	background: url("../images/fogsoft-a.gif") no-repeat scroll left top;
	color: #666666;
	float: right;
	margin-top: 0;
	padding: 0 0 0 100px;
	text-decoration: none;
}
@media (max-width: 767px) {
	.creator a {
		background: url("../images/fogsoft-a.gif") no-repeat scroll left bottom;
		padding: 0 0 25px 0;
	}
}

.contacts-row:hover {
	background: #eee;
}
.contacts-row-mb {
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.contacts-row {
		margin-bottom: 10px;
	}
	.contacts-row.contacts-row-mb {
		margin-bottom: 30px;
	}
	.contacts-row-title {
		font-weight: 700;
	}
}