/*main*/
@media all {
	.main-container {}

	.w {
		width: 1310px;
		padding: 0 30px;
		max-width: 100%;
		margin: auto;
	}

	img {
		max-width: 100%;
	}

	body._overflow {
		overflow: hidden;
	}

	.img-placeholder {
		background-color: #f3f1ec;
		position: relative;
	}

	.img-placeholder:before {
		content: "\e914";
		font-family: 'icomoon';
		position: absolute;
		top: 50%;
		left: 0;
		right: 0;
		text-align: center;
		font-size: 60px;
		color: #adadad;
		display: block;
		z-index: 1;
		line-height: 0;
	}

	.img-placeholder>span {
		z-index: 1;
		position: relative;
	}

	::-webkit-scrollbar {
		width: 10px;
		height: 10px
	}

	::-webkit-scrollbar-thumb {
		background-color: rgba(50, 50, 50, .25);
		border: 2px solid transparent;
		border-radius: 10px;
		background-clip: padding-box
	}

	::-webkit-scrollbar-track {
		background-color: rgba(50, 50, 50, .05)
	}

	::-webkit-scrollbar-thumb:hover {
		background-color: rgba(50, 50, 50, .5)
	}

}

@media (max-width: 767px) {
	.w {
		padding: 0 15px;
	}
}

/* header */
@media all {
	.h-row {
		display: flex;
		justify-content: space-between;
		padding: 34px 0 27px;
	}

	.h-left {}

	.h-logo {
		display: flex;
		align-items: center;
		text-decoration: none;
		color: #333;
	}

	.h-logo:hover {
		color: #333;
	}

	.h-logo__image-container {
		margin: -16px 0;
		height: 85px;
		max-width: 300px;
		display: flex;
		align-items: center;
	}

	.h-logo__image {
		max-height: 100%;
		max-width: 100%;
	}

	.h-logo._with-text .h-logo__image-container {
		width: 68px;
	}

	.h-logo__text {
		margin-left: 10px;
		display: none;
		flex-direction: column;
	}

	.h-logo._with-text .h-logo__text {
		display: flex;
	}

	.h-logo__text-1 {
		font-size: 30px;
		line-height: 1.1;
	}

	.h-logo__description {
		font-size: 13px;
		color: #777474;
	}

	.main-overlay {
		content: "";
		display: block;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		position: absolute;
		background-color: transparent;
		z-index: 6;
		pointer-events: none;
		transition: .3s ease;
	}

	.main-overlay._active {
		background-color: rgba(0, 0, 0, .6);
		pointer-events: all;
	}

	.mobile-sidebar {
		max-width: 90%;
		top: 0;
		position: fixed;
		right: 0;
		z-index: 996;
		overflow: hidden;
		pointer-events: none;
	}

	.mobile-sidebar._active {
		pointer-events: all;
	}

	.mobile-sidebar__inner {
		background-color: #fff;
		width: 290px;
		max-width: 100%;
		height: 100vh;
		overflow: auto;
		transform: translate(100%, 0);
		transition: .3s ease;
	}

	.mobile-sidebar._active .mobile-sidebar__inner {
		transform: translate(0, 0);
	}
}

@media (max-width: 1023px) {
	.h-row {
		padding: 25px 0;
	}

	.h-logo__image-container {
		height: 75px;
		margin: -14px 0;
	}
}

@media (max-width: 767px) {
	.h-left {}

	.h-logo__text-1 {
		font-size: 25px;
	}

	.h-logo__description {
		font-size: 11px;
	}
}

@media (max-width: 479px) {
	.h-row {
		flex-direction: column;
		align-items: center;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.h-logo__image-container {
		height: 65px;
		margin: 0;
	}

	.h-left {
		margin-bottom: 10px;
	}
}

/* menu */
@media all {
	.main-menu-line {
		background-color: #32343a;
		position: relative;
		z-index: 5;
	}

	.main-menu-line__row {
		display: flex;
		justify-content: space-between;
		position: relative;
	}
}

@media (max-width: 1024px) {
	.main-menu-line__row {
		display: none;
	}

	.h {
		border-bottom: 5px solid #32343a;
	}
}

/* footer */
@media all {
	.f {
		background-color: #333333;
		overflow: hidden;
	}

	.f-t {
		padding-top: 60px;
		padding-bottom: 50px;
	}

	.f-b {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 15px 0;
		border-top: 1px solid #504e49;
		color: #9a9a9a;
		font-size: 13px;
	}

	.f-b a {
		color: #9a9a9a;
		text-decoration: none;
	}

	.f-b a:hover {
		text-decoration: underline;
		color: #fff;
	}

	.f-b a.f-agreement-link {
		text-decoration: underline;
	}

	.f-b a.f-agreement-link:hover {
		color: #fff;
	}

	.f-t__title {
		font-size: 16px;
		font-weight: 600;
		color: #fff;
		text-decoration: none;
		margin-bottom: 14px;
		display: block;
		white-space: nowrap;
	}
}

@media (max-width: 767px) {
	.f-t {
		padding-top: 20px;
		padding-bottom: 40px;
	}

	.f-t__col-contact {
		margin-top: 10px;
	}

	.f-b {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.f-b__developer {
		margin-top: 16px;
	}
}


/* breadcrumbs */
@media all {
	.breadcrumbs {
		background-color: #f5f5f5;
	}

	.breadcrumbs-slider {
		z-index: 1;
		position: relative;
		overflow: hidden;
	}

	.breadcrumbs-slider:after,
	.breadcrumbs-slider:before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 2;
		-webkit-box-shadow: 0 0 8px 10px #f5f5f5;
		-moz-box-shadow: 0 0 8px 10px #f5f5f5;
		box-shadow: 0 0 8px 10px #f5f5f5;
	}

	.breadcrumbs-slider:before {
		left: 0;
		right: auto;
	}

	.breadcrumbs-slider .swiper-container {
		padding: 0 10px;
	}

	ul.breadcrumbs {
		position: relative;
		white-space: nowrap;
		list-style: none;
		padding: 0;
	}

	ul.breadcrumbs li {
		display: inline-block;
		width: auto;
	}

	ul.breadcrumbs li:after {
		content: ' - ';
		vertical-align: middle;
		margin: 0 10px;
		color: #a09f9f;
	}

	ul.breadcrumbs li>a,
	ul.breadcrumbs li>span {
		display: inline-block;
		vertical-align: middle;
		padding: 10px 0;
		font-weight: 600;
		color: #a09f9f;
		white-space: nowrap;
		font-size: 13px;
	}

	ul.breadcrumbs li>span {
		color: #666666;
	}

	ul.breadcrumbs li:last-child:after {
		display: none;
	}
}

/* content and sidebar */
@media all {
	.content-wrapper {
		display: flex;
		padding: 46px 0 60px;
	}

	.content-wrapper._no-layout {
		padding-bottom: 0;
	}

	.content-wrapper._no-layout {
		padding-top: 80px;
	}

	.content {
		flex: 1 1 auto;
		max-width: 100%;
	}

	.content-wrapper._with-sidebar .content {
		width: calc(100% - 320px);
	}

	.content-wrapper:not(._with-sidebar) h1.content-title {
		margin-bottom: 1em;
	}

	.sidebar {
		width: 290px;
		margin-right: 30px;
		flex-shrink: 0;
	}

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

	.sidebar-block__title {
		font-size: 18px;
		font-weight: 600;
		padding: 20px 18px;
		color: #000;
	}

	.sidebar-body {}
}

@media (max-width: 768px) {
	.sidebar {
		display: none;
	}

	.content-wrapper {
		padding: 25px 0 50px;
	}

	.content-wrapper._no-layout {
		padding-top: 25px;
	}

	.content-wrapper._with-sidebar .content {
		width: 100%;
	}
}

/*callout*/
@media all {
	.callout {
		padding: 40px 0;
	}

	.callout.callout--line {
		padding: 20px 0;
	}

	.btn {
		width: auto;
		white-space: nowrap;

	}

	.callout.callout--line .btn {
		width: auto;
		background: #fff;
	}

	.callout.callout--line.theme--bg-color .btn.btn-more {
		color: #3598dc;
		padding: 0 25px;
	}

	.callout.callout--line .callout-row {
		justify-content: center;
	}


	.callout-row {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.callout-left {}

	.callout-title {
		font-size: 30px;
		font-weight: 700;
		line-height: 1.1;
	}

	.callout-description {
		font-size: 15px;
		font-weight: 600;
		margin-top: 10px;
	}

	.callout-right {
		display: flex;
		align-items: center;
	}

	.callout-right-phone {
		margin-right: 30px;
		font-weight: 700;
		font-size: 25px;
		text-decoration: none;
		color: inherit;
	}

	.callout--template-2 .callout-title {
		font-size: 25px;
	}
}

@media (max-width: 1023px) {

	.callout.callout--line .callout-center,
	.callout.callout--line.theme--bg-color .btn.btn-more {
		width: 100%;
	}
}

@media (max-width: 1023px) {
	.callout-row {
		flex-direction: column;
	}

	.callout-left {
		text-align: center;
	}

	.callout-right {
		margin-top: 20px;
		text-align: center;
	}
}

@media (max-width: 767px) {

	.callout-title,
	.callout--template-2 .callout-title {
		font-size: 22px;
		line-height: 1.4;
		padding: 0 10px;
	}

	.callout-description {
		font-size: 14px;
	}

	.callout-right {
		flex-direction: column;
	}

	.callout-right-phone {
		margin-right: 0;
		margin-bottom: 15px;
	}
}

@media (max-width: 479px) {}

/*pages*/
@media all {
	.show-more-container {
		margin-top: 30px;
	}

	.btn-with-description {
		display: flex;
		margin: 18px -8px;
		align-items: center;
		flex-wrap: wrap;
	}

	.btn-with-description .btn,
	.btn-with-description .btn-description {
		margin: 8px;
	}

	.btn-with-description .btn-description {
		align-items: center;
		font-size: 13px;
		color: #666666;
	}

	.action-label {
		position: absolute;
		top: 0;
		left: 0;
		height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0 20px;
		font-size: 13px;
		text-transform: uppercase;
		font-weight: 600;
		color: #333;
	}
}

/*map*/
@media all {
	.citrus-objects-map h3 {
		font-size: 15px;
	}
}

/*img-shadow*/
@media all {
	.img-shadow {
		display: inline-block;
		padding-left: 25px;
		padding-top: 25px;
	}

	.img-shadow img {
		box-shadow: -25px -25px 0 0 currentColor;
	}
}

@media (max-width: 767px) {
	.img-shadow img {
		box-shadow: -20px -20px 0 0 currentColor;
	}
}

@media (max-width: 479px) {
	.img-shadow img {
		box-shadow: -15px -15px 0 0 currentColor;
	}
}

/*catalog*/
@media all {
	.product-old-price {
		font-size: smaller;
		color: #999999;
		display: inline-block;
		padding: 0 5px;
		position: relative;
		text-decoration: none;
	}

	.product-old-price:before {
		content: '';
		position: absolute;
		top: .75em;
		left: 0;
		right: 0;
		height: 1px;
		background-color: currentColor;
		margin: auto;
	}

	.product-cat {
		margin-bottom: 20px;
	}
}

/*section*/
@media all {
	.section {
		position: relative;
	}

	.section._with-padding {
		padding: 88px 0 100px;
	}

	.section-header._center {
		text-align: center;
	}

	.section-header h1,
	.section-header .h1 {
		margin-top: 0;
	}

	.section.section-color-gray {
		background-color: #f5f5f5;
	}

	.section.section-color-gray._white-fon {
		background-color: #fff;
	}

	.section-footer {
		margin-top: 48px;
		text-align: center;
	}

	.videowrap {
		max-width: 930px;
		margin: 0 auto;
		max-height: 460px;
		overflow: hidden;
		/* background-image: url(/upload/images/main-video/main-video2.jpg); */
		background-color: transparent;
		background-size: cover;
		background-position: center;
		cursor: pointer;
	}

	.videowrap img {
		height: auto;
		width: 100%;
		opacity: 0;
	}

	.videowrap iframe {
		width: 100%;
		height: 413px;
	}

	.videowrap ._none {
		display: none;
	}
}

@media (max-width: 1023px) {
	.section-header {
		text-align: center;
	}

	.section._with-padding {
		padding: 75px 0 85px;
	}
}

@media (max-width: 767px) {
	.section._with-padding {
		padding: 45px 0;
	}

	.section-footer {
		margin-top: 40px;
	}
}

.detail_text p {
	text-align: justify;
}

.detail_text img {
	padding: 10px;
}