/*
	Разработка шаблонов для DataLife Engine
	------------------	
	Author:	ThemeSkeleton
	------------------
	Website: http://themeskeleton.com/
	------------------
	E-mail: themeskeleton@gmail.com
	------------------
	Skype: ThemeSkeleton
	------------------
	ICQ: 722880
	------------------
*/

/**
 * ВАЖНО: Все медиа-запросы перенесены в файл mediastyles.css
 * Это сделано для стандартизации контрольных точек и улучшения читаемости кода
 * Для изменения адаптивного поведения следует редактировать mediastyles.css
 * 
 * Стандартные контрольные точки:
 * - 375px (для очень маленьких устройств)
 * - 576px (для маленьких устройств)
 * - 768px (для планшетов и средних устройств)
 * - 992px (для ноутбуков)
 * - 1200px (для десктопов)
 */

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600|Roboto:400,700&subset=cyrillic');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

@import url('/templates/scenter/css/font-awesome.min.css');
@import url('/templates/scenter/css/flaticon.css');
@import url('/templates/scenter/css/hover.css');
@import url('/templates/scenter/css/animate.css');
@import url('/templates/scenter/css/mediastyles.css');

.check-mark {
	color: #dc3545;
	margin-right: 8px;
}

* {
	font-family: 'Roboto Condensed', sans-serif !important;
	margin: 0px;
	padding: 0px;
	border: none;
	outline: none;
}


body {
	font-size: 16px;
	line-height: 1.5;
	color: #292929;
	font-weight: 400;
	background: #F1F4F6;
	overflow: scroll;
}

a {
	text-decoration: none;
	cursor: pointer;
}

a:hover,
a:focus,
a:visited {
	text-decoration: none;
	outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	position: relative;
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	margin: 0px;
	background: none;
	line-height: 1.4em;
}

h1 {
	font-size: 48px;
	line-height: 1.2;
}

h2 {
	font-size: 36px;
	line-height: 1.3;
}

h3 {
	font-size: 28px;
	line-height: 1.4;
}

h4 {
	font-size: 24px;
	line-height: 1.4;
}

h5 {
	font-size: 20px;
	line-height: 1.4;
}

input,
button,
select,
textarea {
	font-family: 'Open Sans', sans-serif;
}


p {
	position: relative;

}

.strike-through {
	text-decoration: line-through;
}

/* Сетка Bootstrap вместо кастомной */
.auto-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: auto;
    min-height: 400px;
    overflow-x: hidden;
}

ul,
li {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.theme-btn {
	transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
}

.center {
	text-align: center;
}

.theme-bg {
	background-color: #fc5a1b;
}

.theme-color {
	color: #fc5a1b;
}

.out {
	opacity: 0;
}

.in {
	opacity: 1;
}

.uppercase {
	text-transform: uppercase !important;
}

.capitalized {
	text-transform: capitalize !important;
}

.lowercase {
	text-transform: lowercase !important;
}

.no-uppercase {
	text-transform: none !important;
}

.light-btn {
	position: relative;
	display: inline-block;
	padding: 10px 30px;
	line-height: 26px;
	border: 1px solid transparent;
	background: #fc5a1b;
	margin-bottom: 5px;
	color: #ffffff;
	text-transform: uppercase;
	font-family: 'Roboto', sans-serif;
	transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
}

.dark-btn {
	position: relative;
	display: inline-block;
	padding: 5px 20px;
	line-height: 22px;
	font-size: 14px;
	border: 1px solid transparent;
	background: #36404b;
	color: #ffffff;
	text-transform: uppercase;
}

.light-btn:hover,
.dark-btn:hover {
	background-color: #fb4848;
	border-color: #fb4848;
	color: #ffffff;
}

.dark-btn.style-two {
	background: #bc3131;
}

.dark-btn.style-two:hover {
	color: #000000;
	background: #ffffff;
}

.btn-style-one {
	position: relative;
	display: inline-block;
	overflow: hidden;
	border: 1px solid #dddddd;
	background: #ffffff;
	color: #000000;
	line-height: 22px;
	padding: 5px 15px;
	font-size: 14px;
	text-transform: uppercase;
}

.btn-style-one .fa,
.dark-btn .fa {
	position: relative;
	font-size: 16px;
	padding-right: 15px;
}

.btn-style-one:hover {
	background-color: #fb4848;
	border-color: #fb4848;
	color: #ffffff;
}

.default-btn {
	position: relative;
	display: inline-block;
	line-height: 24px;
	padding: 8px 24px;
	font-size: 14px;
	text-transform: uppercase;
	margin: 0px 10px;
	color: #000000;
	border: 1px solid #dddddd;
	transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
}

.default-btn:hover {
	color: #ffffff !important;
}

.default-btn::before {
	background-color: #3d3d3d;
}

.color-white {
	color: #ffffff !important;
}

.color-grey {
	color: #292929 !important;
}

.no-margin {
	margin: 0px !important;
}

.no-float {
	float: none !important;
}

.post-content hr {
	margin-top: 10px;
	margin-bottom: 10px;
}

.short-seller {
	line-height: 20px;
	font-size: 14px;
}

.skew-lines {
	position: relative;
	font-size: 18px;
}

.padd-top-20 {
	padding-top: 20px !important;
}

.padd-top-30 {
	padding-top: 30px !important;
}

.padd-top-40 {
	padding-top: 40px !important;
}

.padd-bott-20 {
	padding-bottom: 20px !important;
}

.padd-bott-30 {
	padding-bottom: 30px !important;
}

.padd-bott-40 {
	padding-bottom: 40px !important;
}

.no-padd-bottom {
	padding-bottom: 0px !important;
}

.no-padd-top {
	padding-top: 0px !important;
}

.no-margin-bottom {
	margin-bottom: 0px !important;
}

.no-margin-top {
	margin-bottom: 0px !important;
}


.sec-title {
	position: relative;
	text-align: center;
	margin-bottom: 30px;
	margin-top: 15px;
	padding-bottom: 12px;
	border-bottom: 1px solid #e0e0e0;
	margin: 0 auto;
}

.why-us {
    position: relative;
    padding: 80px 0px 80px;
    background: #ffffff;
}

.why-us .title-box {
	position: relative;
	padding: 0px 0px 0px 24px;
	height: 111px;
	align-items: center;
	display: flex;
	margin-bottom: 40px;
	border-left: 3px solid #fb4848;
}

.why-us .title-box h3 {
	font-size: 28px;
	line-height: 1.3em;
}

.why-us .title-box h4 {
	font-size: 18px;
	line-height: 1.6em;
}

.why-us .text-content {
	position: relative;
	margin-bottom: 20px;
}

.why-us .text-content .text {
	font-size: 14px;
	padding-left: 24px;
}

.why-us .box {
	position: relative;
	margin-bottom: 25px;
}

.why-us .box .tab-link {
	position: relative;
	display: block;
	border-radius: 8px;
	padding: 16px 20px 16px 90px;
	box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 4px 0px;
	font-size: 14px;
	color: #292929;
}

.why-us .box .tab-link .arrow {
	position: absolute;
	right: 0px;
	bottom: 0px;
	width: 30px;
	height: 30px;
	text-align: center;
	color: #ffffff;
	font-size: 16px;
	line-height: 30px;
	background: #fb4848;
}

.why-us .box .tab-link * {
	transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
}

.why-us .box .tab-link .icon {
	position: absolute;
	left: 20px;
	top: 28px;
	width: 70px;
	height: 70px;
	color: #fb4848;
	font-size: 42px;
}

.why-us .box .tab-link h4 {
	font-size: 16px;
	margin-bottom: 0px;
}

.why-us .box .tab-link p {
	font-size: 14px;
	color: #a7a7a7;
	margin-bottom: 0px;
	line-height: normal;
}

.main-slider {
	position: relative;
	color: #ffffff;
	font-size: 15px;
}

.main-slider .grey-title {
	position: relative;
	padding: 10px 20px;
	background: rgba(54, 64, 75, 0.85);
	color: #ffffff;
}

.main-slider .white-title {
	position: relative;
	padding: 10px 20px;
	background: rgba(255, 255, 255, 0.85);
	color: #fb4848;
}

.main-slider h2 {
	font-size: 48px;
	line-height: 1.2em;
	font-weight: 300;
	text-transform: uppercase;
}

.main-slider h2 strong {
	font-size: 35px !important;
}

.main-slider .tp-bullets {
	display: none;
}


.main-slider:after,
.page-banner:after,
.main-slider:before,
.page-banner:before {
	content: '';
	position: absolute;
	display: block;
	width: 50%;
	height: 5px;
	bottom: -5px;
	z-index: 1;
}

.main-slider:after,
.page-banner:after {
	left: 50%;
	background: #cccccc;
}

.main-slider:before,
.page-banner:before {
	left: 0%;
	background: #5448fb;
}


.featured-posts {
	position: relative;
	background: #ffffff;
	padding: 30px 0px;
}

.column-view {
	position: relative;
}

.column-view .column-box {
	position: relative;
	margin-bottom: 30px;
}

.column-view .column-box .inner-box {
	position: relative;
	display: block;
	max-width: 450px;
	border: 2px solid #eaeaea;
	margin: 0 auto;
	box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 4px 0px;
	border-radius: 8px;
	transition: all 500ms ease-out;
	-webkit-transition: all 500ms ease-out;
	-ms-transition: all 500ms ease-out;
	-o-transition: all 500ms ease-out;
	-moz-transition: all 500ms ease-out;
}

.column-view .column-box .inner-box:hover {
	border-color: #fb4848;
}

.column-view .column-box .image {
	position: relative;
	overflow: hidden;
	height: 229px;
}

.column-view .column-box .image.csaf {
	height: 0;
	padding-bottom: 62.3%;
	padding-top: 5px;
}

.column-view .column-box .image img {
	position: relative;
	display: block;
	width: 100%;
	transition: all 500ms ease-out 50ms;
	-webkit-transition: all 500ms ease-out 50ms;
	-ms-transition: all 500ms ease-out 50ms;
	-o-transition: all 500ms ease-out 50ms;
	-moz-transition: all 500ms ease-out 50ms;
}

.column-view .column-box .inner-box:hover .image img {}

.column-view .column-box .image .price {
	position: absolute;
	right: 0px;
	bottom: 0px;
	padding: 10px 10px;
	color: #ffffff;
	background: #fb4848;
	font-size: 32px;
	font-weight: 600;
	z-index: 1;
}

.column-view .column-box .image .price sup {
	font-size: 18px;
	padding-right: 5px;
}

.column-view .column-box .post-content {
	position: relative;
	padding: 15px 20px 20px;
}

.column-view .column-box .post-content h3 {
	font-size: 18px;
	margin-bottom: 15px;
	line-height: 30px;
	text-transform: uppercase;
	font-weight: 500;
	font-family: 'Open Sans', sans-serif;
}

.column-view .column-box .post-content h3 a {
	color: #292929;
}

.column-view .column-box .post-content h3 a:hover {
	color: #fb4848;
}

.column-view .column-box .theme-btn {
	float: left;
	margin: 0px 15px 25px 0px;
}

.column-view .column-box .theme-btn.ynts {
	bottom: 0;
	position: absolute;
}

.column-view .column-box .text-center .theme-btn {
	float: none;
	display: inline-block;
	margin: 0px 5px 7px;
}

.column-view .column-box .overlay-box {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	padding: 30px 24px 10px;
	color: #ffffff;
	z-index: 3;
	background: #fb4848;
	border-radius: 8px;
	opacity: 0;
	transition: opacity 500ms ease;
	-webkit-transition: opacity 500ms ease;
	-ms-transition: opacity 500ms ease;
	-o-transition: opacity 500ms ease;
	-moz-transition: all 500ms ease;

}

.column-view .column-box:hover .overlay-box {
	opacity: 1;
	-ms-animation-name: flipInX;
	-moz-animation-name: flipInX;
	-op-animation-name: flipInX;
	-webkit-animation-name: flipInX;
	animation-name: flipInX;
	-ms-animation-duration: 800ms;
	-moz-animation-duration: 800ms;
	-op-animation-duration: 800ms;
	-webkit-animation-duration: 800ms;
	animation-duration: 800ms;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	-op-animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-ms-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-op-animation-iteration-count: 1;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}

.column-view .column-box .overlay-box .skew-lines:before,
.column-view .column-box .overlay-box .skew-lines:after {
	background: #ffffff;
	height: 18px;
}

.column-view .column-box .overlay-box .skew-lines {
	color: #ffffff;
	margin-bottom: 20px;
	padding-left: 50px;
}

.column-view .column-box .overlay-box .text {
	font-size: 14px;
}


.featured-services {
	position: relative;
	padding: 20px 0px 20px;
	background: #f1f4f6;
}

.featured-services .column-box .inner-box {
	background: #ffffff;

}

.featured-services .column-box .text-center .theme-btn {
	float: none;
	vertical-align: middle;
	margin: 0px 7px 5px;
}

.featured-services .column-box .text-center {
	text-align: left !important;
}

.img_saller li a img {
	width: 100%;
	max-width: 520px;
	float: left;
	border-radius: 6px;
	margin-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
}

.btn-saller {
	position: relative;
	padding: 13px 20px;
	background: #fb4848;
	color: #fff;
}

.price-saller {
	font-weight: 600;
	margin-bottom: 10px;
}

.gallery-section {
	position: relative;
	padding: 40px 0px 50px;
	background: #ffffff;
}

.gallery-section .slide-item {
	position: relative;
	overflow: hidden;
	margin-top: 15px;
	border: 1px solid #fb4848;
	height: 350px;
}

.gallery-section .image-box img {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
}

.gallery-section .overlay {
	position: absolute;
	left: 0px;
	top: -100%;
	width: 100%;
	height: 100%;
	background: url(/templates/scenter/images/icons/icon-plus-2.png) center 40% no-repeat;
	background-color: rgba(0, 0, 0, 1);
	opacity: 0;
	z-index: 2;
	transition: all 500ms ease;
	-webkit-all: opacity 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
}

.gallery-section .slide-item:hover .overlay {
	opacity: 0.80;
	top: 0px;
}

.gallery-section .item-caption {
	position: absolute;
	left: 0px;
	bottom: -100%;
	width: 100%;
	text-align: center;
	color: #ffffff;
	padding: 10px 15px;
	background-color: rgba(0, 0, 0, 0.50);
	font-size: 14px;
	z-index: 3;
	opacity: 0;
	color: #fb4848;
	transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	border-top: 2px solid #fb4848;
}

.gallery-section .slide-item:hover .item-caption {
	opacity: 1;
	bottom: 0px;
}

.gallery-section .item-caption p {
    max-width: 300px;
    margin: 0 auto;
    color: #ffffff;
    line-height: 2em;
}

.gallery-section .item-caption h4 {
	font-size: 14px;
}

.gallery-section .owl-stage-outer {
    overflow: visible;
}


.intro-section {
	position: relative;
	color: #ffffff;
	padding: 40px 0px;
	background: #fc6565;
}

.intro-section.theme-two {
    padding: 30px 0;
    background-color: #e9e9e9;
}

.intro-section.theme-two .dark-btn {
	background-color: #545c66;
}

.intro-section.theme-two .dark-btn:hover {
	background: #ffffff;
	border-color: #ffffff;
	color: #292929;
}

.intro-section .border {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.50);
	padding: 40px 25px;
	background: #fb4e4e;
}

.intro-section.theme-two .border {
	background: #2c333b;
}

.intro-section h3 {
	font-size: 24px;
	text-transform: uppercase;
}


.tabs-section {
	position: relative;
	background: #ffffff;
}

.tabs-box .buttons-side {
	position: relative;
	float: right !important;
	margin-bottom: 30px;
}

.tabs-box .tab-buttons {
	position: relative;
}

.tabs-box .tab-buttons li {
	position: relative;
	margin-bottom: 20px;
}

.tabs-box .tab-buttons .tab-btn {
	position: relative;
	display: block;
	border: 1px solid #cccccc;
	padding: 20px 20px 20px 90px;
	font-size: 14px;
	color: #292929;
}

.tabs-box .tab-buttons .tab-btn * {
	transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
}

.tabs-box .tab-buttons .tab-btn.active-btn,
.tabs-box .tab-buttons .tab-btn:hover {
	background: #36404b;
	color: #ffffff;
	border-color: #36404b;
}

.tabs-box .tab-buttons .tab-btn .icon {
	position: absolute;
	left: 20px;
	top: 28px;
	width: 70px;
	height: 70px;
	color: #fb4848;
	font-size: 42px;
}

.tabs-box .tab-buttons .tab-btn.active-btn .icon,
.tabs-box .tab-buttons .tab-btn:hover .icon {
	color: #ffffff;
}

.tabs-box .tab-buttons .tab-btn h4 {
	font-size: 16px;
	margin-bottom: 0px;
}

.tabs-box .tab-buttons .tab-btn p {
	font-size: 14px;
	color: #a7a7a7;
	margin-bottom: 0px;
}

.tabs-box .tab-buttons .tab-btn.active-btn p,
.tabs-box .tab-buttons .tab-btn:hover p {
	color: #ffffff;
}

.tabs-box .tabs-content {
	position: relative;
	float: left !important;
}

.tabs-box .tab-title {
	position: relative;
	margin-bottom: 20px;
}

.tabs-box .tab-title h2 {
	font-size: 36px;
	margin-bottom: 10px;
}

.tabs-box .tab-title h3 {
	font-size: 22px;
	color: #fb4848;
	margin-bottom: 0px;
}

.tabs-box .tab .text {
	position: relative;
	margin-bottom: 30px;
	line-height: 1.8em;
	color: #565656;
}

.tabs-box .tab .list {
	position: relative;
	/* margin-bottom:30px; */
	line-height: 1.5em;
}

.tabs-box .tab .list ul li {
	position: relative;
	line-height: 30px;
	padding-left: 30px;
	margin-bottom: 5px;
	text-align: left;
}

/* .tabs-box .tab .list ul li:before {
	font-family: 'FontAwesome';
	content: "\f00c";
	position: absolute; 
	left: 0px;
	top: 0px;
	width: 20px;
	height: 30px;
	line-height: 30px;
	padding-right: 15px;
	font-size: 18px;
	color: #fb4848;
} */

.tabs-box .tab .list ul {
    list-style: none; /* Убираем стандартные маркеры списка */
    padding-left: 0; /* Убираем отступ слева */
}

.tabs-box .tab .list ul li {
    position: relative; /* Для позиционирования псевдоэлемента */
    padding-left: 25px; /* Отступ для текста, чтобы не перекрывать галочку */
}

.tabs-box .tab .list ul li:before {
    content: ""; /* Создаем пустой контент для псевдоэлемента */
    position: absolute; /* Абсолютное позиционирование */
    left: 0; /* Сдвигаем влево */
    top: 50%; /* Центрируем по вертикали */
    transform: translateY(-50%); /* Центрируем по вертикали */
    width: 10px; /* Ширина галочки */
    height: 10px; /* Высота галочки */
    background-color: #fb4848; /* Цвет галочки */
    clip-path: polygon(0 50%, 40% 100%, 100% 0, 80% 0, 40% 60%); /* Форма галочки */
}

.tabs-box .tab {
	position: relative;
	display: none;
	left: 20px;
	transition: all 500ms ease-out;
	-webkit-transition: all 500ms ease-out;
	-ms-transition: all 500ms ease-out;
	-o-transition: all 500ms ease-out;
	-moz-transition: all 500ms ease-out;
}

.tabs-box .tab.active-tab {
	display: block;
	left: 0px;
}

.testimonials-section {
	position: relative;
	padding: 30px 0px 0px;
	background: url(/templates/scenter/images/background/texture-map.png) center center no-repeat;
	background-color: #3d3d3d;
}

.testimonials-section .sec-title {
	border: none;
	color: #ffffff;
}

.testimonials-section .sec-title h3 {
	display: inline-block;
	padding: 0px 0px 10px;
	border-bottom: 2px solid #fb4848;
}

.testimonials-section.theme-two .sec-title h3 {
	border-bottom: 2px solid #ffffff;
}

.testimonials-section.theme-two {
	background-color: #fb4848;
}

.testimonials-section .testimonials-slider {
	position: relative;
}

.testimonials-section .testimonials-slider .slide-item {
	position: relative;
	margin: 50px 0px 0px 0px;
	border: 1px solid #fb4848;
	background: #ffffff;
	text-align: center;
}

.testimonials-section .testimonials-slider .image-box {
	position: relative;
	width: 80px;
	height: 80px;
	margin: -40px auto 0px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-moz-border-radius: 50%;
}

.testimonials-section .testimonials-slider .image-box img {
	position: relative;
	width: 80px;
	height: 80px;
	display: block;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-moz-border-radius: 50%;
}

.testimonials-section .slide-item h3 {
	position: relative;
	text-align: center;
	vertical-align: middle;
	font-size: 14px;
	color: #000000;
	font-weight: 600;
	margin: 0px 5px 20px 0px;
}

.testimonials-section .rating {
	position: relative;
	display: inline-block;
	vertical-align: middle;
}

.testimonials-section .rating .star {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 16px;
	background: url(/templates/scenter/images/icons/star-icon.png) center center no-repeat;
}

.testimonials-section .slide-text {
	position: relative;
	font-size: 14px;
	color: #565656;
	font-style: italic;
	line-height: 2em;
	padding: 20px;
}

.testimonials-section .column-carousel.three-column .owl-nav {
	display: none !important;
}

.testimonials-section .column-carousel.three-column .owl-controls {
	position: relative;
	text-align: center;
	padding: 20px 0px;
	top: 0px;
}

.testimonials-section .column-carousel.three-column .owl-dots {
	display: block !important;
}

.testimonials-section .column-carousel.three-column .owl-dot span {
	background: #909090;

}

.testimonials-section .column-carousel.three-column .owl-dot span:hover,
.testimonials-section .column-carousel.three-column .owl-dot.active span {
	background: #fb4848;

}

.testimonials-section.theme-two .column-carousel.three-column .owl-dot span {
	background: #fbf948;

}

.testimonials-section.theme-two .column-carousel.three-column .owl-dot span:hover,
.testimonials-section.theme-two .column-carousel.three-column .owl-dot.active span {
	background: #ffffff;

}


.contact-options {
	position: relative;
	padding: 0px;
	background-color: #f1f4f6;
	border-bottom: 3px solid #fb4848;
}

.contact-options .info-box {
	position: relative;
	float: right;
	padding: 7px 20px;
	background: #fb4848;
	color: #ffffff;
}

.contact-options .info-box li {
	display: inline-block;
	min-width: 200px;
	padding-right: 30px;
	font-size: 14px;
}

.contact-options .info-box li a {
	color: #ffffff;
}

.contact-options .info-box li a:hover {
	opacity: 0.80;
}

.contact-options .info-box li .fa {
	font-size: 16px;
	padding-right: 10px;
}

.info p {
	margin: 0;
}

.info img {
	width: 20px;
	height: 20px;
}

.info img:first-child {
	margin-right: 5px;
}

.clearfix p a {
	color: #36404B;
}

.team-section {
	position: relative;
	padding: 50px 0px 30px;
	background: #ffffff;
}

.column-carousel.four-column {
	margin-top: -15px;
}

.column-carousel.four-column .column-box {
	padding-top: 15px;
	padding-bottom: 15px;
}

.team-box {
	margin-bottom: 0px !important;
}

.team-box .social-links {
	position: absolute;
	right: 0px;
	bottom: 0px;
	padding-right: 42px;
	width: 100%;
}

.team-box .social-links .plus-btn {
	position: absolute;
	right: 0px;
	bottom: 0px;
	width: 42px;
	height: 42px;
	background: #fb4848 url(/templates/scenter/images/icons/icon-plus.png) center center no-repeat;
	cursor: pointer;
	z-index: 3;
}

.team-box .social-links .links {
	position: absolute;
	right: -220px;
	bottom: 0px;
	transition: all 1000ms ease;
	-webkit-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	z-index: 1;
}

.team-box .social-links:hover .links {
	right: 46px;
}

.team-box .social-links li {
	position: relative;
	display: inline-block;
	margin: 0px;
}

.team-box .social-links li a {
	position: relative;
	display: block;
	width: 42px;
	height: 42px;
	padding: 10px;
	text-align: center;
	font-size: 16px;
	line-height: 20px;
	color: #ffffff;
	background: #fb4848;
	transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
}

.team-box .social-links li a:hover {
	background: #36404b;
}

.team-box h3 {
	text-transform: capitalize !important;
	margin-bottom: 5px !important;
}

.team-box .occupation {
	font-size: 16px;
	color: #fb4848;
	text-transform: capitalize;
	margin-bottom: 5px;
}

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

.column-carousel .owl-controls {
	position: absolute;
	right: 0px;
	top: -60px;
}

.column-carousel.two-column .owl-controls {
	top: -75px;
}

.column-carousel .owl-controls .owl-next {
	position: absolute;
	right: 0px;
	top: -24px;
	width: 48px;
	height: 48px;
	text-indent: 100px;
	overflow: hidden;
	border: 1px solid #dddddd;
	margin: 0px !important;
	background: #ffffff url(/templates/scenter/images/icons/arrow-next.png) center center no-repeat !important;
	border-radius: 0px !important;
	-webkit-border-radius: 0px !important;
	-ms-border-radius: 0px !important;
	-o-border-radius: 0px !important;
	-moz-border-radius: 0px !important;
}

.column-carousel .owl-controls .owl-prev {
	position: absolute;
	right: 58px;
	top: -24px;
	width: 48px;
	height: 48px;
	text-indent: 100px;
	overflow: hidden;
	border: 1px solid #dddddd;
	margin: 0px !important;
	background: #ffffff url(/templates/scenter/images/icons/arrow-prev.png) center center no-repeat !important;
	border-radius: 0px !important;
	-webkit-border-radius: 0px !important;
	-ms-border-radius: 0px !important;
	-o-border-radius: 0px !important;
	-moz-border-radius: 0px !important;
}

.column-carousel .owl-controls .owl-next:hover,
.column-carousel .owl-controls .owl-prev:hover {
	border-color: #fb4848;
}


.blog-section {
	position: relative;
	padding: 50px 0px 20px;
	background: #ffffff;
}

.blog-section .column-box .inner-box {
	max-width: 580px !important;
}

.blog-section .column-box .inner-box {
	padding-left: 50%;
	min-height: 260px;
}

.blog-section .column-box .post-content {
	padding: 20px;
}

.blog-section .column-box .inner-box .image {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 50%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.blog-section .column-box .inner-box .image img {
	display: none;
}

.blog-section .column-box .post-title {
	text-transform: capitalize !important;
}

.blog-section .column-box .date {
	position: relative;
	margin-bottom: 10px;
	font-size: 14px;
	color: #fb4848;
}

.blog-section .column-box .text {
	position: relative;
	margin-bottom: 20px;
	font-size: 16px;
	color: #565656;
}

.blog-section .column-box .theme-btn {
	float: none;
	margin: 0px;
}


.sponsors {
	position: relative;
	text-align: center;
	background: #ffffff;
	padding: 22px 0px;
	border-top: 1px solid #d0d0d0;
}

.sponsors .auto-container {
	padding-left: 30px;
	padding-right: 30px;
}

.sponsors .slider {
	position: static;
}

.sponsors li img {
	position: relative;
	display: inline-block !important;
	width: auto !important;
	max-width: 100% !important;
	opacity: 0.80;
	transition: all 300ms ease-in;
	-webkit-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
}

.sponsors li img:hover {
	opacity: 1;
}

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

.sponsors .owl-controls {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 5;
	margin: 0px !important;
	opacity: 0.40;
}

.sponsors:hover .owl-controls {
	opacity: 1;
}

.sponsors .owl-controls .owl-prev {
	position: absolute;
	left: 20px;
	top: 50px;
	margin: 0px;
	width: 50px;
	height: 50px;
	border: 1px solid #3d3d3d;
	font-size: 0px;
	overflow: hidden;
	text-indent: 100px;
	background: url(/templates/scenter/images/icons/arrow-prev.png) center center no-repeat !important;
}

.sponsors .owl-controls .owl-next {
	position: absolute;
	right: 20px;
	top: 50px;
	margin: 0px;
	width: 50px;
	height: 50px;
	border: 1px solid #3d3d3d;
	font-size: 0px;
	overflow: hidden;
	text-indent: 100px;
	background: url(/templates/scenter/images/icons/arrow-next.png) center center no-repeat !important;
}


.main-footer {
	position: relative;
	background: #1e88e5;
}

.main-footer .footer-upper {
	position: relative;
	padding: 40px 0px 10px;
}

.main-footer .footer-upper .col-md-3 {
	position: relative;
	margin-bottom: 25px;
}

/* .main-footer .footer-upper .footer-widget{
	position:relative;
	max-width:600px;	
} */

.main-footer .footer-upper h3 {
	position: relative;
	font-size: 18px;
	margin-bottom: 25px;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 800;
	text-align: center;
}

.main-footer .footer-upper .text {
	position: relative;
	font-size: 14px;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 10px;
	color: #ffffff;
	line-height: 25px;
}

.main-footer .footer-upper .info {
	position: relative;
	font-size: 14px;
}

.main-footer .footer-upper .info li {
	position: relative;
	margin-bottom: 10px;
	line-height: 1.7em;
	color: #ffffff;
}

.main-footer .footer-upper .info li:nth-child(odd) {
	display: inline-flex;
}

.main-footer .footer-upper .info li strong {
	position: relative;
	padding-right: 10px;
	font-weight: 500;
	color: #ffffff;
}

.main-footer .footer-upper a {
	color: #ffffff;
	transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
}

.main-footer .footer-upper a:hover {
	color: #11c3f0 !important;
}

.main-footer .footer-upper .links {
	position: relative;
	font-size: 16px;
}

.main-footer .footer-upper .links li {
	position: relative;
	margin-bottom: 10px;
	line-height: 30px;
	overflow: hidden;
}

.main-footer .footer-upper .links li a {
	position: relative;
	display: block;
	color: #ffffff;
	font-size: 14px;
	transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
}

.main-footer .footer-upper .links li a:hover {
	color: #fb4848 !important;
}

.main-footer .footer-upper .links li a i {
	color: #FB4848;
	margin-right: 7px;
	font-size: 17px;
}

.main-footer .footer-upper .newsletter-widget .form {
	position: relative;
	padding-top: 15px;
	margin-bottom: 40px;
}

.main-footer .footer-upper .newsletter-widget .form-group {
	position: relative;
	display: block;
	margin: 0px;
}

.main-footer .footer-upper .newsletter-widget input,
.main-footer .footer-upper .newsletter-widget textarea {
	position: relative;
	display: block;
	width: 100%;
	line-height: 24px;
	padding: 8px 40px 8px 15px;
	color: #292929;
	font-size: 15px;
	background: #ffffff;
	border: 1px solid #ddd;
	transition: all .3s ease;
}

.main-footer .footer-upper .newsletter-widget input:focus,
.main-footer .footer-upper .newsletter-widget textarea:focus {
	border: 1px solid #FB4848;

}

.main-footer .footer-upper .newsletter-widget button {

	line-height: 24px;
	padding: 8px 5px;
	text-align: center;
	font-size: 14px;
	color: #ffffff;
	background: #fb4848;
	border: 1px solid #fb4848;
	float: right;
	padding: 5px 10px;
	transition: all .3s;
}

.main-footer .footer-upper .newsletter-widget button:hover {
	color: #fb4848;
}

.main-footer .footer-upper .newsletter-widget button:before {
	background: #fff;
}

.main-footer .footer-bottom {
	position: relative;
	padding: 5px 0px;
	font-size: 14px;
	line-height: 20px;
	background: #0067b2;
	color: #ffffff;
}

.main-footer .footer-bottom .copyright {
	padding: 12px 0px;
}

.main-footer .footer-bottom .copyright a {
	color: #fb4848;
	transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
}

.main-footer .footer-bottom .copyright a:hover {
	color: #11c3f0 !important;
}

.main-footer .footer-bottom .agreement {
	color: #fff;
	display: block;
	padding: 12px 0px;
	text-align: end;
}

.main-footer .social-links {
	position: relative;
	text-align: right;
	padding-bottom: 6px;
}

.main-footer .social-links a {
	position: relative;
	display: inline-block;
	width: 36px;
	height: 32px;
	text-align: center;
	background: #4a4a4a;
	color: #ffffff;
	font-size: 16px;
	line-height: 32px;
	margin: 9px 2px 0px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-moz-border-radius: 3px;
	transition: all 500ms ease-out;
	-webkit-transition: all 500ms ease-out;
	-ms-transition: all 500ms ease-out;
	-o-transition: all 500ms ease-out;
	-moz-transition: all 500ms ease-out;
}

.main-footer .social-links a:hover {
	background: #fb4848;
}


.scroll-to-top {
	position: fixed;
	bottom: 0px;
	right: 0px;
	width: 48px;
	height: 48px;
	color: #ffffff;
	background: #36404b url(/templates/scenter/images/icons/arrow-up.png) center center no-repeat;
	font-size: 20px;
	line-height: 48px;
	text-align: center;
	z-index: 100;
	cursor: pointer;
	display: none;
}

.scroll-to-top:hover {
	background-color: #fb4848;
	color: #ffffff;
}


.default-section {
	position: relative;
	width: 100%;
	padding: 50px 0px 30px;
	background: #ffffff;
}

.default-content {
	position: relative;
	margin-bottom: 40px;
}

.default-content h2 {
	font-size: 26px;
	font-weight: 400;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.default-content h3 {
	font-size: 22px;
	font-weight: 300;
	margin-bottom: 20px;
	color: #fb4848;
}

.default-content .text {
	position: relative;
	font-size: 16px;
	margin-bottom: 10px;
	color: #565656;
}

.default-section .column-box .text-center .theme-btn {
	margin: 0px !important;
	float: none !important;
}


.gallery-tabs {
	position: relative;
	width: 100%;
	padding: 0px 0px;
	background: #ffffff;
}

.gallery-tabs .tabs-two {
	position: static;
	min-height: 540px;
}

.gallery-tabs .tabs-two .buttons-side {
	position: relative;
	float: right !important;
	margin-bottom: 30px;
}

.gallery-tabs .tabs-two .tab-buttons {
	position: relative;
}

.gallery-tabs .tabs-two .tab-buttons li {
	position: relative;
	margin-bottom: 24px;
}

.gallery-tabs .tabs-two .tab-buttons .tab-btn {
	position: relative;
	display: block;
	border: 1px solid #cccccc;
	padding: 20px 20px 20px 90px;
	font-size: 14px;
	color: #292929;
	transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
}

.gallery-tabs .tabs-two .tab-buttons .tab-btn * {
	transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
}

.gallery-tabs .tabs-two .tab-buttons .tab-btn.active-btn,
.gallery-tabs .tabs-two .tab-buttons .tab-btn:hover {
	background: #36404b;
	color: #ffffff;
	border-color: #36404b;
}

.gallery-tabs .tabs-two .tab-buttons .tab-btn .icon {
	position: absolute;
	left: 20px;
	top: 28px;
	width: 70px;
	height: 70px;
	color: #fb4848;
	font-size: 42px;
}

.gallery-tabs .tabs-two .tab-buttons .tab-btn.active-btn .icon,
.gallery-tabs .tabs-two .tab-buttons .tab-btn:hover .icon {
	color: #ffffff;
}

.gallery-tabs .tabs-two .tab-buttons .tab-btn h4 {
	font-size: 16px;
	margin-bottom: 0px;
}

.gallery-tabs .tabs-two .tab-buttons .tab-btn p {
	font-size: 14px;
	color: #a7a7a7;
	margin-bottom: 0px;
}

.gallery-tabs .tabs-two .tab-buttons .tab-btn.active-btn p,
.gallery-tabs .tabs-two .tab-buttons .tab-btn:hover p {
	color: #ffffff;
}

.gallery-tabs .tabs-two .buttons-side {
	z-index: 2;
}

.gallery-tabs .tabs-two .tabs-content {
	position: absolute;
	left: 0px;
	top: 0px;
	padding: 0px 80px 0px 0px;
	height: 540px;
}

.gallery-tabs .tabs-two .tab {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 540px;
	padding-right: 80px;
	left: 20px;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	transition: all 500ms ease-out;
	-webkit-transition: all 500ms ease-out;
	-ms-transition: all 500ms ease-out;
	-o-transition: all 500ms ease-out;
	-moz-transition: all 500ms ease-out;
}

.gallery-tabs .tabs-two .tab.active-tab {
	left: 0px;
	opacity: 1;
	visibility: visible;
	z-index: 3;
}

.gallery-tabs .tabs-two .slide-item {
	position: relative;
	height: 530px;
	width: 100%;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}

.gallery-tabs .tabs-two .slide-item .lightbox-image {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 3;
	background: #fb4848;
	opacity: 0;
	transition: all 500ms ease-in;
	-webkit-transition: all 500ms ease-in;
	-ms-transition: all 500ms ease-in;
	-o-transition: all 500ms ease-in;
	-moz-transition: all 500ms ease-in;
}

.gallery-tabs .tabs-two .slide-item .lightbox-image:hover {
	opacity: 0.25;
}

.gallery-tabs .tabs-two .bx-controls {
	position: absolute;
	right: 92px !important;
	bottom: 62px !important;
	z-index: 5;
}

.gallery-tabs .tabs-two .bx-controls .bx-next {
	position: absolute;
	right: 0px;
	top: 0px;
	width: 42px;
	height: 42px;
	text-indent: 100px;
	overflow: hidden;
	border: 1px solid #292929;
	margin: 0px !important;
	background: url(/templates/scenter/images/icons/arrow-next.png) center center no-repeat !important;
	background-color: rgba(255, 255, 255, 0.75) !important;
	border-radius: 0px !important;
	-webkit-border-radius: 0px !important;
	-ms-border-radius: 0px !important;
	-o-border-radius: 0px !important;
	-moz-border-radius: 0px !important;
}

.gallery-tabs .tabs-two .bx-controls .bx-prev {
	position: absolute;
	right: 52px;
	top: 0px;
	width: 42px;
	height: 42px;
	text-indent: 100px;
	overflow: hidden;
	border: 1px solid #292929;
	margin: 0px !important;
	background: #ffffff url(/templates/scenter/images/icons/arrow-prev.png) center center no-repeat !important;
	background-color: rgba(255, 255, 255, 0.75) !important;
	border-radius: 0px !important;
	-webkit-border-radius: 0px !important;
	-ms-border-radius: 0px !important;
	-o-border-radius: 0px !important;
	-moz-border-radius: 0px !important;
}

.gallery-tabs .tabs-two .bx-controls .bx-next:hover,
.gallery-tabs .tabs-two .bx-controls .bx-prev:hover {
	border-color: #fb4848;
	background-color: rgba(255, 255, 255, 1) !important;
}

.services-section {
	position: relative;
	background: #f1f4f6;
	margin-left: 100px;
}

.services-section .post {
	position: relative;
	margin-bottom: 30px;
}

.services-section .post .post-title {
	position: relative;
	font-size: 18px;
	margin-bottom: 20px;
	font-weight: 600;
	padding: 15px 0px 0px 70px;
}

.services-section .post .icon {
	position: absolute;
	left: 0px;
	top: 8px;
	font-size: 50px;
	color: #fb4848;
	line-height: 32px;
	width: 70px;
}

.services-section.theme-two .post .icon {
	color: #36404b;
}

.services-section .post .inner {
	position: relative;
	max-width: 540px;
	margin: 0 auto;
}

.services-section .post .text {
	position: relative;
	font-size: 15px;
	color: #565656;
}

.price-plans {
	position: relative;
	padding: 10px 0px 10px;
}

.price-plans .table-column {
	position: relative;
	margin-bottom: 30px;
	padding: 0px 15px;
	text-align: center;
}

.table-inner_price {
	width: 20%;
}

.price-plans .table-inner {
	position: relative;
	border: 1px solid #d0d0d0;
	background: #ffffff;
	padding: 0px;
	width: 100%;
	margin: 0 auto;
	text-align: right;
}

.table-inner .list td {
	padding: 5px 20px;
}

.price-plans .table-column .table-header {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 10px 10px;
	letter-spacing: 2px;
	background: url(/templates/scenter/images/icons/price-table-header.png) right center no-repeat;
	background-color: #fbcc48;
	transition: all 700ms ease-in-out;
	-webkit-transition: all 700ms ease-in-out;
	-ms-transition: all 700ms ease-in-out;
	-o-transition: all 700ms ease-in-out;
	-moz-transition: all 700ms ease-in-out;
}

.price-plans .table-column .table-inner:hover .table-header {
	background-position: left center;
	background-color: #36404b;
}

.price-plans .table-column .table-header h3 {
	font-size: 18px;
	line-height: 1.8em;
	text-transform: uppercase;
	color: #ffffff;
}

.price-plans .price-column {
	position: relative;
	padding: 25px;
}

.price-plans .price .amount {
	position: relative;
	display: block;
	font-size: 70px;
	font-weight: 700;
	text-align: center;
	line-height: 1.2em;
	margin-bottom: 0px;
}

.price-plans .price .amount sup {
	font-size: 50px;
	padding-right: 5px;
}

.price-plans .price p {
	color: #8f8f8f;
	font-size: 14px;
	margin-bottom: 0px;
	text-transform: uppercase;
}

.price-plans .list {
	position: relative;
	padding: 0px 0px 30px;
	border-top: 1px dashed #d0d0d0;
}

.price-plans .list h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.price-plans .list li {
	position: relative;
	padding: 8px 0px;
	line-height: 30px;
	color: #7f7f7f;
	border-bottom: 1px dashed #d0d0d0;
}

.price-plans .recommended .table-inner .price p,
.price-plans .recommended .table-inner .list li,
.price-plans .table-inner:hover .price p,
.price-plans .table-inner:hover .list li,
.price-plans .recommended .table-inner .amount,
.price-plans .recommended .table-inner .list h3 {
	color: #36404b;
}

.price-plans .list li:before {
	font-family: 'FontAwesome';
	content: '\f00c';
	position: relative;
	display: inline-block;
	left: 0px;
	top: 0px;
	width: 25px;
	height: 20px;
	text-align: left;
	line-height: 30px;
	font-size: 16px;
	color: #fb4848;
}

.price-plans .recommended .list li:before,
.price-plans .table-inner:hover .list li:before {
	color: #36404b;
}

.price-plans .read-more {
	position: relative;
	display: inline-block;
	width: auto;
	font-size: 14px;
	text-transform: uppercase;
	line-height: 24px;
	padding: 7px 20px;
	margin-bottom: 30px;
	color: #ffffff;
	background: #fb4848;
	transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
}

.price-plans .read-more .fa {
	position: relative;
	padding-right: 15px;
	top: 0px;
	font-size: 18px;
}

.price-plans .read-more:before {
	background-color: #36404b;
}

.price-plans .recommended .read-more,
.price-plans .table-inner:hover .read-more {
	background: #36404b;
}


.vertical-gallery {
	position: relative;
	background: #ffffff;
	padding: 0px 0px;
}

.ms-tabs-vertical-template .ms-nav-next {
	position: absolute;
	display: block;
	right: 12px;
	bottom: 12px;
	margin: 0px !important;
	width: 42px;
	height: 42px;
	text-indent: 100px;
	overflow: hidden;
	border: 1px solid #292929;
	background: url(/templates/scenter/images/icons/arrow-next.png) center center no-repeat;
	background-color: rgba(255, 255, 255, 0.75) !important;
	border-radius: 0px !important;
	-webkit-border-radius: 0px !important;
	-ms-border-radius: 0px !important;
	-o-border-radius: 0px !important;
	-moz-border-radius: 0px !important;
	z-index: 5;
	cursor: pointer;
	opacity: 1 !important;
}

.ms-tabs-vertical-template .ms-nav-prev {
	position: absolute;
	display: block;
	right: 62px;
	bottom: 12px;
	margin: 0px !important;
	width: 42px;
	height: 42px;
	text-indent: 100px;
	overflow: hidden;
	border: 1px solid #292929;
	background: #ffffff url(/templates/scenter/images/icons/arrow-prev.png) center center no-repeat;
	background-color: rgba(255, 255, 255, 0.75) !important;
	border-radius: 0px !important;
	-webkit-border-radius: 0px !important;
	-ms-border-radius: 0px !important;
	-o-border-radius: 0px !important;
	-moz-border-radius: 0px !important;
	z-index: 5;
	cursor: pointer;
	opacity: 1 !important;
}

.ms-tabs-vertical-template .ms-nav-next:hover,
.ms-tabs-vertical-template .ms-nav-prev:hover {
	border-color: #fb4848;
	background-color: rgba(255, 255, 255, 1) !important;
}

.vertical-gallery .slide-desc {
	position: absolute;
	left: 0px;
	bottom: -20px;
	font-size: 14px;
	margin-bottom: 20px;
	background: #fb4848;
	color: #ffffff;
	padding: 20px 20px 10px;
	opacity: 1 !important;
}

.vertical-gallery .slide-desc .icon {
	position: absolute;
	left: 20px;
	top: 20px;
	font-size: 50px;
	color: #ffffff;
	line-height: 50px;
	width: 60px;
}

.vertical-gallery .slide-desc h4 {
	font-size: 16px;
	font-weight: 600;
}

.vertical-gallery .slide-desc p {
	font-size: 14px;
	margin-bottom: 0px;
}

.ms-vertical-template .ms-thumb-frame-selected {
	opacity: 0.60 !important;
}


.features-section {
	position: relative;
	padding: 40px 0px 30px;
	background: #ffffff;
}

.features-section .column-box {
	margin-bottom: 0px;
}


.page-banner {
	position: relative;
	padding: 15px 0px 5px;
	background-color: #ffffff;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.page-banner .page-title {
	position: relative;
	text-align: center;
}

.page-banner .page-title h1 {
	position: relative;
	display: inline-block;
	padding: 5px 15px;
	font-size: 40px;
	font-weight: 300;
	color: #fb4848;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.80);
}

.page-banner .bread-crumb {
	position: relative;
	line-height: 24px;
	padding-bottom: 10px;
}

.page-banner .bread-crumb a,
.page-banner .bread-crumb span {
	position: relative;
	display: inline-block;
	/* margin: 0px 5px 0px 0px; */
	color: #36404b;
	font-size: 14px;
}

.page-banner .bread-crumb a {
	margin: 0;
}

.page-banner .bread-crumb a:hover {
	color: #fb4848;
}

.page-banner .bread-crumb a:hover span {
	color: #fb4848;
}

.page-banner .bread-crumb a:after{
	font-family: 'FontAwesome';
	content:'\f105';
	position:relative;
	display:inline-block;
	left:0px;
	top:0px;
	width:24px;
	height:24px;
	text-align:center;
	line-height:24px;
	font-size:16px;	
}


.filter-section {
	position: relative;
	background: #ffffff;
	padding: 50px 0px 20px;
}

.filter-section .sec-title {
	margin: 10px 0px 50px;
}

.filter-section .filter-tabs {
	float: right;
}

.filter-section .filter-tabs li {
	position: relative;
	float: left;
	margin: 0px 5px 10px 0px;
	padding: 4px 20px;
	font-size: 15px;
	text-transform: uppercase;
	color: #36404b;
	cursor: pointer;
	background: #ffffff;
	border: 1px solid #dddddd;
}

.filter-section .filter-tabs li:hover,
.filter-section .filter-tabs li.active {
	background: #36404b;
	color: #ffffff;
	border-color: #36404b;
}

.filter-section .filter-list {
	position: relative;
}

.filter-section .filter-list .column-box {
	position: relative;
	display: none;
	transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	margin-bottom: 50px !important;
}

/*.pagination {
	width: 100%;
}

 .pagination a,
.pagination span {
	padding: 10px 20px;
	font-size: 15px;
	color: #292929;
	border: none !important;
	display: inline-block;
	background: #f1f1f1;
} */
/* 
.pagination span {
	background: #fb4848;
	color: #ffffff;
} */

/* .pagination a:hover {
	background: #fb4848;
	color: #ffffff;
} */

.sidebar-page {
	position: relative;
	padding: 20px 0px;
}

.sidebar-page .left-content {
	position: relative;
}

.sidebar-page .side-bar {
	position: relative;
}

.sidebar-page .post {
	position: relative;
	margin-bottom: 45px;
}

.sidebar-page .post .post-image {
	position: relative;
	display: block;
	overflow: hidden;
	margin-bottom: 30px;
	height: 0;
	padding-bottom: 62%;
}

.sidebar-page .post .post-image img {
	position: relative;
	width: 100%;
	min-height: 160px;
	transition: all 0.7s ease;
	-moz-transition: all 0.7s ease;
	-webkit-transition: all 0.7s ease;
	-ms-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
}

.sidebar-page .post .post-image:hover img,
.sidebar-page .post-detail .post-image img {
	transform: scale(1.05, 1.05);
	-webkit-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	-o-transform: scale(1.05, 1.05);
	-moz-transform: scale(1.05, 1.05);
}

.sidebar-page .post .overlay {
	position: absolute;
	left: 0px;
	top: 0px;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.sidebar-page .post .overlay .icon {
	position: absolute;
	right: -52px;
	bottom: 0px;
	display: block;
	text-align: center;
	width: 42px;
	height: 42px;
	z-index: 3;
	opacity: 0;
	font-size: 18px;
	line-height: 40px;
	color: #ffffff;
	background: #fb4848;
	border: 1px solid #ffffff;
	transition: all 0.7s ease;
	-moz-transition: all 0.7s ease;
	-webkit-transition: all 0.7s ease;
	-ms-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	border-radius: 5px 0px 0px 0px;
	-webkit-border-radius: 5px 0px 0px 0px;
	-ms-border-radius: 5px 0px 0px 0px;
	-moz-border-radius: 5px 0px 0px 0px;
	-o-border-radius: 5px 0px 0px 0px;
}

.sidebar-page .post:hover .post-image .overlay .icon {
	right: 0px;
	opacity: 1;
}

.sidebar-page .post .caption {
	position: absolute;
	left: -90px;
	top: 0px;
	width: 90px;
	color: #ffffff;
	text-align: center;
	z-index: 5;
	transition: all 0.7s ease;
	-moz-transition: all 0.7s ease;
	-webkit-transition: all 0.7s ease;
	-ms-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
}

.sidebar-page .post:hover .caption,
.sidebar-page .post-detail .caption {
	left: 0px;
}

.sidebar-page .post .caption .date {
	position: relative;
	background: #fb4848;
	padding: 20px 0px 10px;
	font-size: 15px;
	text-transform: uppercase;
}

.sidebar-page .post .caption .day {
	font-size: 38px;
	display: block;
	margin-bottom: 10px;
	color: #ffffff;
}

.sidebar-page .post .caption .comments {
	padding: 10px 0px;
	background: #36404b;
	font-size: 14px;
}

.sidebar-page .post .caption .comments .fa {
	font-size: 18px;
}

.sidebar-page .post .post-title {
	font-size: 24px;
	font-weight: 600;
	margin: 0px 0px 20px;
	height: 33px;
	overflow: hidden;
}

.sidebar-page .post .post-title a {
	color: #292929;
}

.sidebar-page .post .post-title a:hover {
	color: #fb4848;
}

.sidebar-page .post .content-box {
	padding: 25px 30px;
	border: 1px solid #cccccc;
	overflow: hidden;
}

.content-box img {
	width: 100%;
}

.sidebar-page .post .post-info {
	position: relative;
	font-size: 14px;
	margin-bottom: 10px;
}

.sidebar-page .post .post-info a {
	color: #fb4848;
}

.sidebar-page .post .post-text {
	font-size: 16px;
	color: #565656;
	margin-bottom: 15px;
	line-height: 2em;
}

.sidebar-page .post-detail h2 {
	font-size: 30px;
	margin: 0px 0px 30px;
}

.sidebar-page .post-detail .text {
	margin: 30px 0px;
}

.sidebar-page .post-detail {
	font-family: 'Roboto', 'Open Sans', sans-serif;
	font-size: 15px;
}

.sidebar-page blockquote {
	font-size: 15px;
	padding-top: 0px;
	padding-bottom: 0px;
	border-left-color: #fb4848;
}

.sidebar-page .blog-detail a,
.sidebar-page blockquote a {
	color: #fb4848;
}

.sidebar-page .blog-detail p {
	margin-bottom: 24px;
}

.sidebar-page .social-links {
	position: relative;
}

.sidebar-page .social-links a {
	position: relative;
	display: inline-block;
	width: 36px;
	height: 32px;
	text-align: center;
	background: #f1f1f1;
	color: #bcbcbc;
	font-size: 16px;
	line-height: 32px;
	margin: 9px 2px 0px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-moz-border-radius: 3px;
	transition: all 500ms ease-out;
	-webkit-transition: all 500ms ease-out;
	-ms-transition: all 500ms ease-out;
	-o-transition: all 500ms ease-out;
	-moz-transition: all 500ms ease-out;
}

.sidebar-page .social-links a:hover {
	background: #fb4848;
	color: #ffffff;
}

.sidebar-page .social-links strong {
	font-size: 16px;
	font-weight: 600;
	line-height: 36px;
	text-transform: capitalize;
	padding-right: 40px;
}

.sidebar-page .about-author {
	position: relative;
	padding: 30px;
	border: 1px solid #dddddd;
	margin-bottom: 40px;
}

.sidebar-page .about-author h3 {
	margin-bottom: 30px;
	font-size: 20px;
}

.sidebar-page .about-author .author-info {
	margin-bottom: 20px;
}

.sidebar-page .about-author .author-desc {
	position: relative;
	padding: 10px 10px 10px 100px;
}

.sidebar-page .about-author .author-thumb {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 84px;
	height: 84px;
}

.sidebar-page .about-author .author-thumb img {
	width: 100%;
	display: block;
}


.side-bar .widget {
	position: relative;
	margin-bottom: 50px;
}

.side-bar .search-form input[type="search"],
.side-bar .search-form input[type="text"] {
	position: relative;
	width: 100%;
	line-height: 24px;
	padding: 8px 48px 8px 15px;
	border: 1px solid #dddddd;
	background: #ffffff;
	color: #2d2d2d;
	height: 42px;
	font-size: 14px;
	color: #292929;
}

.side-bar .search-form input[type="search"]:focus,
.side-bar .search-form input[type="text"]:focus {
	border-color: #fb4848;
}

.side-bar .search-form .form-group {
	position: relative;
}

.side-bar .search-form button {
	position: absolute;
	right: 1px;
	top: 1px;
	line-height: 24px;
	display: block;
	width: 44px;
	height: 40px;
	padding: 8px 10px;
	text-align: center;
	font-size: 16px;
	color: #ffffff;
	background: #36404b;
}

.side-bar .search-form button:hover {
	background: #fb4848;
}

.side-bar .sec-title {
	margin-bottom: 30px;
}


.side-bar .tags a {
	position: relative;
	display: inline-block;
	margin: 0px 8px 10px 0px;
	line-height: 20px;
	padding: 5px 20px;
	font-size: 14px;
	background: #bcbcbc;
	color: #ffffff;
	transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
}

.side-bar .tags a:hover {
	color: #ffffff;
	background: #fb4848;
}

.side-bar .latest-updates .update-box {
	position: relative;
	padding: 20px 20px;
	border: 1px solid #dddddd;
	font-size: 14px;
	line-height: 1.8em;
	color: #565656;
}

.side-bar .latest-updates h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #292929;
}

.side-bar .latest-comments .comment {
	position: relative;
	margin-bottom: 20px;
}

.side-bar .latest-comments .comment-info {
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 10px;
	color: #292929;
}

.side-bar .latest-comments .comment-info a {
	color: #fb4848;
}

.side-bar .latest-comments .comment .comm-box {
	position: relative;
	padding: 20px 20px 10px;
	border: 1px solid #dddddd;
	font-size: 15px;
	line-height: 2em;
	color: #565656;
}

.side-bar .latest-comments .comment .comm-box p a {
	position: relative;
	color: #565656;
}

.side-bar .latest-comments .comment .comm-box p a:hover {
	color: #fb4848;
}

.side-bar .latest-comments .comment .read-more {
	position: relative;
	display: inline-block;
	width: 30px;
	height: 20px;
	background: url(/templates/scenter/images/icons/arrow-next.png) center right no-repeat;
}

.side-bar .latest-posts .post {
	position: relative;
	font-size: 15px;
	margin-bottom: 40px;
	min-height: 70px;
	padding: 0px 0px 0px 90px;
}

.side-bar .latest-posts .post .post-thumb {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 70px;
	height: 70px;
}

.side-bar .latest-posts .post .post-thumb img {
	width: 100%;
	display: block;
}

.side-bar .latest-posts .post h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #292929;
}

.side-bar .latest-posts .post a {
	color: #fb4848;
}

.side-bar .latest-posts .post h4 a {
	color: #292929;
}

.side-bar .latest-posts .post .fa {
	font-size: 18px;
}

.side-bar .cont-info .cont-box {
	position: relative;
	padding: 20px 20px;
	border: 1px solid #dddddd;
	font-size: 14px;
	line-height: 1.8em;
	color: #565656;
}

.side-bar .cont-info .cont-box .text {
	position: relative;
	font-size: 15px;
	margin-bottom: 16px;
	color: #565656;
}

.side-bar .cont-info .cont-box .info {
	position: relative;
	font-size: 16px;
}

.side-bar .cont-info .cont-box .info li {
	position: relative;
	margin-bottom: 5px;
	line-height: 1.7em;
	color: #565656;
	font-size: 15px;
}

.side-bar .cont-info .cont-box .info li strong {
	position: relative;
	padding-right: 8px;
	font-weight: 500;
	color: #292929;
}

.side-bar .cont-info .cont-box .info li a {
	color: #fb4848;
	transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
}

.side-bar .cont-info .cont-box .info li a:hover {
	color: #11c3f0 !important;
}

.contact-form {
	position: relative;
}

.contact-form .sec-title {
	margin-bottom: 30px;
}

.contact-form .msg-text {
	margin-bottom: 40px;
	color: #565656;
}

.contact-form .form-group {
	position: relative;
	display: block;
	padding: 0px 0px;
	margin-bottom: 10.2px;
}

.contact-form .form-group .form-label {
	display: block;
	margin-bottom: 12px;
	font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="password"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="number"],
.contact-form input[type="file"],
.contact-form input[type="url"],
.contact-form select,
.contact-form textarea {
	position: relative;
	display: block;
	width: 100%;
	line-height: 24px;
	padding: 12px 20px;
	font-size: 14px;
	border: 1px solid #dddddd;
	background: #ffffff;
	color: #a9a9a9;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="password"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="number"]:focus,
.contact-form input[type="file"]:focus,
.contact-form input[type="url"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: #292929;
}

.contact-form input.error,
.contact-form textarea.error {
	border-color: #ff0000 !important;
	background: rgba(252, 90, 27, 0.05);
}

.contact-form label.error {
	display: none !important;
}

.contact-form textarea {
	height: 272px;
	resize: none;
	margin-bottom: 20px;
}

.contact-form button:before {
	background: #fb4848;
}

.map-location {
	position: relative;
	width: 100%;
	height: 500px;
}


.c-captcha {
	width: 39.5%;
	float: left;
}

input#sec_code {
	width: 51%;
	float: right;
	margin-top: 30px;
}

.c-captcha a {
	float: left;
}

div#vk_groups {
	margin: -13px;
}

#loading-layer {
	display: block !important;
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.9);
	z-index: 9999;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	text-indent: -9999px;
	overflow: hidden;
	white-space: nowrap;
}

#loading-layer:before,
#loading-layer:after,
.mfp-preloader:before,
.mfp-preloader:after {
	content: "";
	border-radius: 50%;
	background-color: #fb4848;
	position: absolute;
	left: 50%;
	top: 50%;
}

#loading-layer:before,
.mfp-preloader:before {
	width: 100px;
	height: 100px;
	margin: -50px 0 0 -50px;
}

#loading-layer:after,
.mfp-preloader:after {
	width: 40px;
	height: 40px;
	background-color: #36404b;
	margin: -20px 0 0 -20px;
}

#loading-layer:before,
.mfp-preloader:before {
	-webkit-animation: load1 1s infinite ease;
	animation: load1 1s infinite ease;
}

#loading-layer:after,
.mfp-preloader:after {
	-webkit-animation: load2 1s infinite -0.32s ease;
	animation: load2 1s infinite -0.32s ease;
}

@-webkit-keyframes load1 {

	0%,
	80%,
	100% {
		-webkit-transform: scale(1, 1);
	}

	40% {
		-webkit-transform: scale(.6, .6);
	}
}

@keyframes load1 {

	0%,
	80%,
	100% {
		transform: scale(1, 1);
	}

	40% {
		transform: scale(.6, .6);
	}
}

@-webkit-keyframes load2 {

	0%,
	80%,
	100% {
		-webkit-transform: scale(1, 1);
	}

	40% {
		-webkit-transform: scale(.5, .5);
	}
}

@keyframes load2 {

	0%,
	80%,
	100% {
		transform: scale(1, 1);
	}

	40% {
		transform: scale(.5, .5);
	}
}


.highslide-wrapper,
.highslide-outline {
	background: #fff
}

.highslide-image {
	border: 2px solid #fff
}

.highslide-active-anchor {
	visibility: hidden
}

.highslide-active-anchor img {
	visibility: hidden
}

.highslide-dimming {
	background-color: black
}

.highslide-html {
	background-color: white
}

.highslide-loading {
	display: block;
	color: white;
	font-size: 9px;
	font-weight: bold;
	text-decoration: none;
	padding: 3px;
	border: 1px solid white;
	background-color: black
}

a.highslide-full-expand {
	background: url(/templates/scenter/dleimages/fullexpand.gif) no-repeat;
	display: block;
	margin: 0 10px 10px 0;
	width: 34px;
	height: 34px
}

.highslide-display-block {
	display: block
}

.highslide-display-none {
	display: none
}

.highslide-caption {
	display: none;
	padding: 5px;
	background: white
}

.highslide-controls {
	width: 195px;
	height: 40px;
	background: url(/engine/classes/highslide/graphics/controlbar-black-border.gif) no-repeat 0 -90px;
	margin-right: 15px;
	margin-bottom: 10px;
	margin-top: 10px
}

.highslide-controls ul {
	position: relative;
	left: 15px;
	height: 40px;
	list-style: none;
	margin: 0;
	padding: 0;
	background: url(/engine/classes/highslide/graphics/controlbar-black-border.gif) no-repeat 100% -90px
}

.highslide-controls li {
	float: left;
	padding: 5px 0;
}

.highslide-controls a {
	background: url(/engine/classes/highslide/graphics/controlbar-black-border.gif);
	display: block;
	float: left;
	height: 30px;
	width: 30px;
	border: 0 none !important;
}

.highslide-controls a.disabled {
	cursor: default
}

.highslide-controls a span {
	display: none
}

.highslide-controls .highslide-previous a {
	background-position: 0 0
}

.highslide-controls .highslide-previous a:hover {
	background-position: 0 -30px
}

.highslide-controls .highslide-previous a.disabled {
	background-position: 0 -60px !important
}

.highslide-controls .highslide-play a {
	background-position: -30px 0
}

.highslide-controls .highslide-play a:hover {
	background-position: -30px -30px
}

.highslide-controls .highslide-play a.disabled {
	background-position: -30px -60px !important
}

.highslide-controls .highslide-pause a {
	background-position: -60px 0
}

.highslide-controls .highslide-pause a:hover {
	background-position: -60px -30px
}

.highslide-controls .highslide-next a {
	background-position: -90px 0
}

.highslide-controls .highslide-next a:hover {
	background-position: -90px -30px
}

.highslide-controls .highslide-next a.disabled {
	background-position: -90px -60px !important
}

.highslide-controls .highslide-move a {
	background-position: -120px 0
}

.highslide-controls .highslide-move a:hover {
	background-position: -120px -30px
}

.highslide-controls .highslide-full-expand a {
	background-position: -150px 0
}

.highslide-controls .highslide-full-expand a:hover {
	background-position: -150px -30px
}

.highslide-controls .highslide-full-expand a.disabled {
	background-position: -150px -60px !important
}

.highslide-controls .highslide-close a {
	background-position: -180px 0
}

.highslide-controls .highslide-close a:hover {
	background-position: -180px -30px
}

.ui-widget-overlay {
	background: #000;
	opacity: 0.5;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	position: fixed;
}

.ui-helper-clearfix:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden
}

.ui-helper-clearfix {
	display: inline-block
}

* html .ui-helper-clearfix {
	height: 1%
}

.ui-helper-clearfix {
	display: block
}

.ui-dialog {
	text-align: left;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 370px;
	border-radius: 2px;
	box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.3);
	border: 1px solid #e6e6e6;
	border-color: rgba(0, 0, 0, 0.1);
	background-color: #f7f7f7;
	background-clip: padding-box;
}

.ui-dialog-titlebar {
	padding: 20px 20px;
	position: relative;
}

.ui-dialog-title {
	float: left;
	font-weight: bold;
	font-size: 1.15em;
}

.ui-dialog-titlebar-close {
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -16px;
	height: 32px;
	width: 32px;
	border: 0 none !important;
}

.ui-dialog-titlebar-close .ui-icon {
	display: block;
	margin: 10px auto 0 auto;
	width: 12px;
	height: 12px;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYBAMAAAASWSDLAAAAG1BMVEUAAAA1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTW7eCkWAAAACHRSTlMA8DiyCsELwNb3saQAAABlSURBVBjTY2AxYoACZQcG10YFCJtJooTBokMIwlHsaAZioBRYAigKJoAAJAghoRIQCiYEoSEiUCmIBFQKLAGTAkvApCASCA6GMoQBGEYjLEV1DopDUbyA4jlUb6ciAiSMgQ0pqAB4linXHtbaoQAAAABJRU5ErkJggg==);
	-webkit-background-size: 12px auto;
	background-size: 12px auto;
	opacity: .5;
}

.ui-button {
	float: right;
	border: 0 none;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	height: 36px;
	border-radius: 18px;
	line-height: 22px;
	outline: none;
	background-color: #3394e6;
	color: #fff;
	border: 0 none;
	padding: 7px 22px;
	text-decoration: none !important;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all ease .1s;
	transition: all ease .1s;
}

.ui-dialog-titlebar-close:hover .ui-icon {
	opacity: 1;
}

.ui-icon {
	overflow: hidden;
	text-indent: -9999px;
}

.ui-dialog label {
	color: #575757;
}

.ui-dialog-content {
	padding: 20px;
	border: 1px solid #fff;
	overflow: auto;
	position: relative;
	zoom: 1;
}

.loginbox.ui-dialog,
.loginbox .ui-dialog-content {
	overflow: visible !important;
}

.ui-dialog .ui-dialog-buttonpane {
	padding: 20px;
	text-align: center;
}

.ui-dialog .ui-resizable-se {
	bottom: 3px;
	height: 14px;
	right: 3px;
	width: 14px;
}

.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}

.ui-state-error {
	background: #fef1ec 50% 50% repeat-x !important;
	border: 1px solid #cd0a0a;
	color: #cd0a0a;
}

.ui-button {
	margin: 0 3px;
}

.ui-helper-hidden-accessible {
	display: none;
}

.quote,
blockquote {
	padding: 1% 4%;
	margin: 1em 0;
	border-left: 2px solid #fb4848;
	font-style: italic;
}

.items div {
	position: relative;
	width: 280px;
	background: #fff;
	height: 300px;
	box-sizing: border-box;
	border: solid 1px #e7e7e7;
	border-color: #e7e7e7;
	padding: 35px 22px 30px;
	text-align: center;
	border-radius: 0; /* Убрали скругления */
	box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 4px 0px;
	display: block;
	margin: 35px auto 30px auto; /* Уменьшили нижний отступ */
}

.items div:hover {
	box-shadow: 0 8px 25px rgba(48, 48, 48, 0.15);
}

.items div .btn-additional {
	position: absolute;
	bottom: 0; /* Кнопка не выходит за карточку */
	left: 0;
	right: 0;
	color: #fff;
	margin: 0;
	width: 100%; /* Кнопка на всю ширину */
	text-decoration: none;
	background: #36404b;
	border-radius: 0; /* Убрали скругления */
	padding: 10px 0; /* Добавил отступы сверху и снизу */
}

.items div .btn-additional:hover {
	border-color: #1C67AE;
	background-color: #1E88E5;
	color: #fff;
}

.service-doing {
	background: #fff;
	padding: 10px;
	box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 4px 0px;
}

.service-doing__inner {
	display: inline-flex;
	align-items: center;
}

.service-doing__icon {
	margin-right: 15px;
}

.product-thumb {
	margin-bottom: 20px;
	border-radius: 8px;
	box-shadow: rgb(0 0 0 / 4%) 0px 2px 4px 0px;
	min-height: 497px;
}

body {
	font-family: 'Open Sans', sans-serif;
}


.face {
	background:
		/* linear-gradient(rgba(0, 0, 0, 0.15),
			rgba(0, 0, 0, 0.15)), */
		url(/templates/scenter/images/face-bg.jpg);
	background-size: cover;
	background-position: center;
	min-height: 600px;
	display: flex;
	align-items: center;
}


.face__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 550px;
	padding-top: 72px;
	padding-bottom: 88px;
}

.face__content-title {
	font-family: 'Roboto', sans-serif;
	color: #FFF;
	font-size: 40px;
	font-weight: 400;
	line-height: 65.37px;
	text-align: left;
	margin-bottom: 43px;
}

.face__list-wrapper {
	margin-bottom: 57px;
	color: #FFF;
}

.face__list{
	color: #FFF;
}

.face__list-title {
	font-family: 'Roboto', sans-serif;
	color: #FFF;
	font-size: 20px;
	font-weight: 500;
	line-height: 32.68px;
	text-align: left;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
}

.face__list-item {
	font-family: 'Roboto', sans-serif;
	font-size: 20px;
	font-weight: 300;
	line-height: 32.68px;
	text-align: left;
	text-underline-position: from-font;
	text-decoration-skip-ink: none
}



.face__content-text {
	text-align: center;
	padding-left: 50px;
	color: #FFF648;
	font-size: 23px;
	margin-top: 40px;
}

.face__content-textBottom {
	text-align: center;
	color: #FFF;
	font-size: 23px;
	margin-top: 20px;
	padding-right: 25px;
}

.face__button {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.button-face {
	max-height: 60px;
	background-color: #FFF648;
	color: #000;
	border: none;
}

.button-face:hover {
	max-height: 60px;
	background-color: #FFF648;
	color: #000;
	border: none;
}

.button-face:focus {
	max-height: 60px;
	background-color: #FFF648;
	color: #000;
	border: none;
}

.face__button-icon {
	max-height: 60px;
}

.face_advantages {
	padding-top: 25px;
	display: flex;
	gap: 40px;
	width: 100%;
}

.face_advantages p {
	color: #FFF;
	margin: 0;
}

.face_advantages-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.face_advantages-text {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.face_advantages-title {
	font-family: 'Open Sans', sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 36px;
	color: #1E88E5;
}

.face_advantages-item:first-child,
.face_advantages-item:last-child {
	padding-top: 10px;
}

.works__container {
	width: 70%;
	margin: 0 auto;
	padding-bottom: 25px;
}

.works__container-title {
	font-family: 'Open Sans', sans-serif;
	font-size: 29px;
	font-weight: 600;
	line-height: 40px;
	text-align: left;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	color: #36414A;
}

.works__container-wrapper {
	display: flex;
	align-items: flex-end;
	margin-bottom: 20px;
	width: 100%;
}

.works__container-wrapper svg {
	flex-grow: 1;
	margin-left: 15px;
	margin-bottom: 10px;
}

.works__container-wrapper h3,
.works__container-wrapper h2 {
	margin-bottom: 0;
	white-space: nowrap;
}

.needHelpBlock {
	width: 70%;
	margin: 0 auto;
	padding-bottom: 25px;
}

.items div {
	width: 100%;
}


.service__container {
	display: flex;
	justify-content: space-between;
}



.service__form {
	padding: 25px 30px;
	border: 1px solid #ccc;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 53.4px;
	position: sticky;
	top: 0;

}

.btn-red {
	background-color: #fb4848;
}

.header__link-phone a {
	color: red !important;
}

#banner-discount-desktop {
    margin-bottom: 2rem;
    width: 100%;
    display: block;
}

#banner-discount-mobile {
    display: none;
    margin-bottom: 2rem;
    width: 100%;
}

.banner-background {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hiddenBanner {
	display: none !important;
}



.auto-container {
	min-width: 70%;
	max-width: 1750px;
	width: 100%;
	padding-left: 75px;
	padding-right: 75px;
}

.header-top .row {
	height: 100%;
}

.header-top-infos {
	height: 100%;
}

.header-top-infos .info-text {
	font-size: 14px;
	line-height: 1.5;
}

.header-top-infos .phone-block {
	padding-right: 27.5px;
}

.header-top-infos .time-block {
	padding-left: 27.5px;
}

.header-top-infos .icon {
	filter: invert(27%) sepia(99%) saturate(1699%) hue-rotate(211deg) brightness(97%) contrast(96%);
	margin-right: 10px;
	width: 20px;
	height: 20px;
}

.header-top-infos .contact-links {
	margin-top: 5px;
}

.header-top-infos .contact-links img {
	margin-right: 5px;
}

.header-top-infos p {
	margin-bottom: 5px;
}

.header-top-infos a {
	color: #292929;
	text-decoration: none;
}

.header-top-infos a:hover {
	color: #0056b3;
}

.mr-auto {
	margin-right: auto;
}

.address-text {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.sec-title h1,
.sec-title h2,
.sec-title h3,
.sec-title h4 {
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
}

.main-menu .navigation>li>a,
.main-menu .navigation>li>ul>li>a {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}

.face {
	font-family: 'Open Sans', sans-serif;
}

.header-button {
	display: inline-block;
	color: rgb(0, 0, 0);
	text-decoration: none;
	border-radius: 5px;
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 500;
	transition: background-color 0.3s ease;
}

.header-button:hover {
	color: #1565C0;
	text-decoration: none;
}

.phone-numbers a {
	color: #333;
	text-decoration: none;
	font-family: 'Open Sans', sans-serif;
	font-weight: 500;
	font-size: 16px;
	transition: color 0.3s ease;
}

.phone-numbers a:hover {
	color: #1E88E5;
}

.header-top {
	background-color: white;
	padding: 15px 0;
}

.logo img {
	max-height: 60px;
	width: auto;
}

.contact-info {
	text-align: right;
}

.phone-title {
	font-weight: 600;
	margin-bottom: 5px;
}

.phone-numbers a {
	color: #000;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.4;
}

.phone-numbers a:hover {
	color: #1E88E5;
}

.working-hours {
	text-align: right;
}

.hours-title {
	font-weight: 600;
	margin-bottom: 5px;
}

.hours-content {
	font-size: 14px;
	line-height: 1.4;
}

.social-links {
	display: flex;
	align-items: center;
	gap: 10px;
}

.social-links img {
	transition: opacity 0.3s;
}

.social-links img:hover {
	opacity: 0.8;
}

/* Menu overrides to ensure correct colors */
.main-menu.main-navigation,
.main-menu-navbar,
.main-menu-content,
.main-menu-nav,
.main-menu-nav .nav-item {
    background-color: #1C67AE !important;
}

.main-menu-link {
    color: white !important;
}

.main-menu-link:hover,
.main-menu-link:focus {
    color: white !important;
    background-color: #1E88E5 !important;
}

.why__content-title {
	font-family: 'Open Sans', sans-serif;
	color: #36414A;
	font-size: 29px;
	font-weight: 600;
	line-height: 39.49px;
	text-align: left;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	margin-bottom: 70px;
}

.why__content-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 40px;
	flex-direction: column;
}

.why__content-item {
	width: calc(50% - 15px);
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid #e0e0e0;
	border-radius: 0;
	padding: 20px;
}

.why__content-item .d-flex {
	margin-bottom: 15px;
}

.why__item-img {
	height: 33px;
	margin-right: 10px;
	margin-bottom: 0;
}

.why__item-title {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 19.07px;
	text-align: left;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	margin-bottom: 0;
}

.why__item-text {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 19.07px;
	text-align: left;
	flex-grow: 1;
}

/* Позиционирование виджета Bitrix24 слева */
.b24-widget-button-wrapper.b24-widget-button-position-bottom-right {
    right: auto !important;
    left: 30px !important;
}

.b24-widget-button-popup {
    left: 100px !important;
    right: auto !important;
}

.b24-widget-button-popup-triangle {
    left: 25px !important;
    right: auto !important;
    transform: rotate(180deg);
}

.b24-widget-button-social-tooltip {
    left: 100px !important;
    right: auto !important;
}

/* Стили для пульсирующей кнопки Viber */
.viber-pulse-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.viber-pulse-button a {
    position: relative;
    display: block;
    width: 125px;
    height: 125px;
    text-align: center;
    line-height: 125px;
}

.viber-pulse-button .pulse {
    position: absolute;
    border: 1px solid #25D366;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse 2s infinite;
    top: 0;
    left: 0;
}

.viber-pulse-button img {
    vertical-align: middle;
    border-radius: 50%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.service-title {
	color: #36414A;
	font-size: 16px;
	font-weight: 400;
	line-height: 21px;
	text-align: center;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
}

.newspage__content-title {
    font-family: 'Open Sans', sans-serif;
    color: #36414A;
    font-size: 29px;
    font-weight: 600;
    line-height: 39.49px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

/* Оставляем только необходимые стили, которых нет в Bootstrap */
.dark-block {
	border: 1px solid #2f4050;
	min-height: 300px;
	padding: 30px;
	color: white;
	width: 100%;
}

.row:first-of-type .dark-block,
.row:last-of-type .dark-block {
	border-radius: 30px 30px 30px 30px;
}

.row:nth-of-type(2) .dark-block {
	border-radius: 0 30px 0 30px;
}

.attention-content {
	border-radius: 30px 0 30px 0;
}

.benefits-list {
	list-style: none;
	padding-left: 20px;
}

.benefits-list li {
	position: relative;
	margin-bottom: 10px;
}

.benefits-list li:before {
	content: "•";
	position: absolute;
	left: -15px;
	color: #1e5799;
}

.attention-content h3 {
	color: #4CAF50;
}

.phone-number {
	color: #1e5799;
	font-size: 24px;
	text-decoration: none;
	font-weight: bold;
}

.projects-container #dle-content {
	display: flex;
}

#dle-content {
    /* display: flex; */
    flex-wrap: wrap;
	max-width: 1200px;
    margin: 0 auto;
}

.card__shop {
	max-width: calc(100% - 20px / 3);
}

#dle-content .col-3 {
    flex: 0 0 25%;
    padding: 10px;
}

#dle-content .card {
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

#dle-content .card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#dle-content .card-img-container {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

#dle-content .card-img-top {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 0;
    margin: 0;
}

#dle-content .card-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    max-width: 224px;
    width: 100%;
	margin: 0 auto;
}

#dle-content .card__title-saller {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    max-width: 224px;
    width: 100%;
}

#dle-content .card-text {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

#dle-content .price-block {
    margin-bottom: 15px;
}

#dle-content .price {
    color: #1e5799;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 0;
}

#dle-content .btn-primary {
    background-color: #2c3e50;
    border-color: #2c3e50;
    color: white;
    text-transform: uppercase;
    font-size: 12px;
    padding: 8px 15px;
    border-radius: 0;
    width: 100%;
}

#dle-content .btn-primary:hover {
    background-color: #1e5799;
    border-color: #1e5799;
}


.btn-face {
    background-color: #fff;
    color: #36414A;
    text-transform: uppercase;
    font-size: 16px;
	font-weight: 500;
    padding: 22px 39px;
	border-radius: 90px;
	max-width: 256px;
	width: 100%;
	text-align: center;
}

.list__item {
	padding: 53px 43px;
	border: 1px solid #CBCBCB;
}

.tab__wraper {
	padding: 40px 70px;
}

.items {
	display: flex;
	flex-direction: column;
	max-height: 320px;
	height: 100%;
	padding: 15px;
}
.items a.image {
	display: flex; 
	justify-content: center;
	align-items: center;
	margin-bottom: 15px;
	max-height: 140px !important; /* Фиксированная высота для изображения */
	height: 100%;
	max-width: 190px !important;
	width: 100%;
	text-decoration: none;
}

.items a.image img {
	max-width: 100%;
	max-height: 100%;
}

.items div.warranty {
	display: flex;
	align-items: center;
	flex-direction: column;
	background: #fff;
	padding: 15px;
	box-sizing: border-box;
	margin: 0;
}

.items div.warranty .btn-additional {
	margin-top: auto; /* Кнопка всегда будет внизу карточки */
}

/* Добавьте эти стили в конец файла */

.check-icon {
	display: inline-block;
	position: relative;
	width: 16px;
	height: 16px;
	margin-right: 0.5rem;
}

.check-icon::before {
	content: '';
	position: absolute;
	width: 10px;
	height: 5px;
	border-left: 2px solid #dc3545;
	border-bottom: 2px solid #dc3545;
	transform: rotate(-45deg);
	top: 4px;
	left: 3px;
}

.check-icon {
	display: inline-block;
	position: relative;
	width: 16px;
	height: 16px;
	margin-right: 0.5rem;
}

.check-icon::before {
	content: '';
	position: absolute;
	width: 10px;
	height: 5px;
	border-left: 2px solid #dc3545;
	border-bottom: 2px solid #dc3545;
	transform: rotate(-45deg);
	top: 4px;
	left: 3px;
}

.container {
	width: 1200px !important;
	max-width: none !important;
	margin: 0 auto;
}

.main-row {
	display: flex;
	flex-direction: row;
}

.image-column {
	width: 500px;
}

.text-column {
	width: 700px;
	padding: 30px;
}

.price-header {
	background-color: #2170b0;
	color: white;
	padding: 10px;
	text-align: center;
	font-weight: bold;
}

.order-button {
	background-color: #4d5b68;
	color: white;
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
}

.highlight {
	color: #dc3545;
	font-weight: bold;
}

.contact-icon {
	color: #2170b0;
	font-size: 20px;
	margin-right: 10px;
}

/* Стили для прикрепления футера к низу страницы */
html, body {
    height: 100%;
    margin: 0;
}

.page-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.main-footer {
    margin-top: auto;
}

/* Стили для страницы товара */
.product-card h1, 
.product-card h2, 
.product-card h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32.68px;
    color: #2C3E50;
}

.product-card h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32.68px;
    color: #1C67AE;
}

.product-card .card-body {
    padding: 98px 148px;
}

.product-description p {
    text-align: start !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Импорт файла с адаптивными стилями */
/* ���������� ������ mediastyles.css ������ */

.check-mark {
	color: #dc3545;
	margin-right: 8px;
}

.bg-red {
	background-color: #d91f26;
	overflow: hidden;
	position: relative;
}

.laptop-img-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.laptop-img-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.status-btn {
	background-color: #343a40;
	color: white;
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	transition: background-color 0.3s;
}

.status-btn:hover {
	background-color: #495057;
}

.price-title {
	font-weight: bold;
	margin-top: 30px;
	margin-bottom: 20px;
}

.contact-section {
	background-color: #f8f9fa;
	padding: 20px;
	margin-top: 30px;
	border-radius: 4px;
}

.contact-title {
	color: #6c757d;
	margin-bottom: 15px;
}

.contact-icon {
	color: #007bff;
	margin-right: 10px;
}

.bg-light-gray {
	background-color: #f5f5f5;
	overflow: hidden;
	position: relative;
}

.pc-img-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pc-img-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.status-btn {
	background-color: #343a40;
	color: white;
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	transition: background-color 0.3s;
}

.status-btn:hover {
	background-color: #495057;
}

.price-title {
	font-weight: bold;
	margin-top: 30px;
	margin-bottom: 20px;
}

.contact-section {
	background-color: #f8f9fa;
	padding: 20px;
	margin-top: 30px;
	border-radius: 4px;
}

.contact-title {
	color: #6c757d;
	margin-bottom: 15px;
}

.contact-icon {
	color: #007bff;
	margin-right: 10px;
}

.additional-info {
	margin-top: 20px;
	margin-bottom: 20px;
}

body {
	font-family: Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

.check-mark {
	color: #dc3545;
	margin-right: 8px;
}

.bg-light-gray {
	background-color: #f5f5f5;
	overflow: hidden;
	position: relative;
}

.bank-img-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.bank-img-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.status-btn {
	background-color: #343a40;
	color: white;
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	transition: background-color 0.3s;
	display: inline-block;
	text-decoration: none;
}

.status-btn:hover {
	background-color: #495057;
	color: white;
	text-decoration: none;
}

.price-title {
	font-weight: bold;
	margin-top: 30px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.contact-section {
	background-color: #f8f9fa;
	padding: 20px;
	margin-top: 30px;
	border-radius: 4px;
}

.contact-title {
	color: #6c757d;
	margin-bottom: 15px;
}

.additional-info {
	margin-top: 20px;
	margin-bottom: 20px;
}

.service-block {
	margin-bottom: 30px;
}

.service-title {
	font-weight: bold;
	margin-bottom: 15px;
}

.service-desc {
	margin-bottom: 20px;
}

.pic {
	margin-right: 10px;
}

.contact-icon {
	color: #007bff;
	margin-right: 10px;
}

.more-link {
	display: inline-block;
	color: #007bff;
	text-decoration: none;
	font-weight: bold;
	margin-top: 10px;
}

.more-link:after {
	content: " →";
}

.more-link:hover {
	text-decoration: underline;
	color: #0056b3;
}

.highlighted-block {
	background-color: #e9f0f8;
	padding: 20px;
	margin-bottom: 30px;
}

.highlighted-block .service-title {
	margin-top: 0;
}

.text-link {
	display: inline-block;
	color: #007bff;
	text-decoration: none;
	font-weight: bold;
	margin-top: 10px;
	text-transform: uppercase;
}

.text-link:after {
	content: " →";
}

.text-link:hover {
	color: #0056b3;
	text-decoration: none;
}
:root {
	--primary-color: #dc3545;
	--secondary-color: #6c757d;
	--light-bg: #f8f9fa;
}

body {
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
	line-height: 1.6;
	color: #333;
}

.hero-section {
	background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://remont.cek.ru/uploads/fotos/remontkatrdzha.png');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 100px 0;
	margin-bottom: 3rem;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.hero-subtitle {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

.cta-button {
	background-color: var(--primary-color);
	color: white;
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.cta-button:hover {
	background-color: #c82333;
	color: white;
	transform: translateY(-2px);
}

.features-section {
	padding: 4rem 0;
	background-color: var(--light-bg);
}

.feature-card {
	text-align: center;
	padding: 2rem;
	margin-bottom: 2rem;
}

.feature-icon {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.price-section {
	padding: 4rem 0;
}

.price-table {
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	border-radius: 10px;
	overflow: hidden;
}

.price-table th {
	background-color: var(--light-bg);
	font-weight: 600;
}

.brand-header {
	background-color: var(--light-bg);
	font-weight: 700;
}

.brand-header td {
	padding: 1rem;
}

.price-table td {
	vertical-align: middle;
	padding: 1rem;
}

.price-range {
	font-weight: 600;
	color: var(--primary-color);
}

.contact-section {
	background-color: var(--light-bg);
	padding: 4rem 0;
	text-align: center;
}

.contact-info {
	margin-top: 2rem;
}

.contact-item {
	margin: 1rem 0;
}

.contact-icon {
	font-size: 1.5rem;
	color: var(--primary-color);
	margin-right: 0.5rem;
}

.check-icon {
	display: inline-block;
	position: relative;
	width: 16px;
	height: 16px;
	margin-right: 0.5rem;
}

.check-icon::before {
	content: '';
	position: absolute;
	width: 10px;
	height: 5px;
	border-left: 2px solid #dc3545;
	border-bottom: 2px solid #dc3545;
	transform: rotate(-45deg);
	top: 4px;
	left: 3px;
}

.container {
	width: 1200px !important;
	max-width: none !important;
	margin: 0 auto;
}

.main-row {
	display: flex;
	flex-direction: row;
}

.image-column {
	width: 500px;
}

.text-column {
	width: 700px;
	padding: 30px;
}

.order-button {
	background-color: #4d5b68;
	color: white;
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
}

.highlight {
	color: #dc3545;
	font-weight: bold;
}

.pic {
	margin-right: 10px;
}

.check-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

/* Стили для фильтра проектов */
.filter-tabs .filter {
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tabs .filter.active {
    color: #007bff;
    font-weight: bold;
}

.projects-container .card__shop {
    margin-bottom: 30px;
    padding: 10px;
}

@media (min-width: 576px) {
.projects-container .card__shop {
    margin-bottom: 0;
	}
}

.card .card-img-container {
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card .card-img-container img {
    max-height: 100%;
    object-fit: contain;
}

