v, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
ul, li {
	float: left;
	display: inline;
}
h1, h2, h3, h4, h5 {
	font-weight: normal;
}
i, em {
	font-style: normal;
}
button, select {
	border: none;
	margin: 0;
	padding: 0;
	background: transparent;
}
figure {
	margin: 0;
	padding: 0;
}
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
/*	Finish RESET	*/

html::-webkit-scrollbar {
	width: 10px;
}
html::-webkit-scrollbar-track {
	background: #666;
}
html::-webkit-scrollbar-thumb {
	background-color: #FFF;
	border: 3px solid #666;
}
html {
	scrollbar-color: #FFF #666;
	scrollbar-width: thin;
}
body {
	margin: 0;
	color: #333;
	font-size: 16px;
	font-family: Urbanist, Arial;
	letter-spacing: 0.5px;
	line-height: 20px;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
*::-moz-selection {
	background: rgba(0, 0, 0, 0.1);
}
*::selection {
	background: rgba(0, 0, 0, 0.1);
}
a {
	color: #930E0F;
	text-decoration: none;
}
a:hover {
	color: #800E12;
	text-decoration: none;
}
:root {
	--input-background-color: #FFF;
	--input-border-color: #bfbfbf;
	--input-border-color-inline: #FFF;
	--input-border-color-checked: #00A678;
	--input-background-color-checked: #800E12;
	--input-border-color-inline-checked: #800E12;
	--input-border-color-disabled: #bfbfbf;
	--input-background-color-disabled: #efefef;
	--input-border-color-inline-disabled: #bfbfbf;
	--input-border-color-hover: #800E12;
	--input-background-color-hover: #FFF;
	--input-border-color-inline-hover: #bfbfbf;
	--input-border-color-focus: #00A678;
}
/* Reset Css */

input, select, textarea, input[type='checkbox'], input[type='radio'] {
	border: none;
	position: relative;
	-webkit-appearance: none;
	margin: 0px;
	padding: 0px;
}
input:focus, select:focus, textarea:focus, input[type='checkbox']:focus, input[type='radio']:focus {
	outline: 0;
}
input[type='submit'], button {
	border: none;
	position: relative;
	-webkit-appearance: none;
	margin: 0px;
	padding: 0px;
	outline: 0;
}
/* Customization checkbox & radio */

input[type='checkbox'], input[type='radio'] {
	width: 18px;
	height: 18px;
	line-height: 18px;
	min-width: 1px !important;
	margin: 1px 10px -1px 0;
	padding: 0;
}
input[type='checkbox']::before, input[type='radio']::before {
	display: block;
	position: absolute;
	content: "";
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	background-color: var(--input-background-color);
	transition: background-color 500ms, border-color 500ms;
}
input[type='checkbox']::after, input[type='radio']::after {
	display: block;
	position: absolute;
	content: "";
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: background-color 500ms, border-color 250ms;
}
/* Customization checbox */

input[type='checkbox']::before {
	border-radius: 4px;
	border: solid 1px;
	border-color: var(--input-border-color);
}
input[type='checkbox']::after {
	border: solid;
	border-color: var(--input-border-color-inline);
	border-width: 0 2px 2px 0;
	width: 5px;
	height: 10px;
	left: 7px;
	bottom: 5px;
}
input[type='checkbox']:not(:checked)::before {
	border-color: var(--input-border-color);
}
input[type='checkbox']:not(:checked)::after {
	border-color: var(--input-border-color-inline);
}
input[type='checkbox']:checked:not(:disabled)::before {
	border-color: var(--input-border-color-checked);
	background-color: var(--input-background-color-checked);
}
input[type='checkbox']:read-only::before, input[type='checkbox']:-moz-read-only::before {
	border-color: var(--input-border-color-inline-checked);
}
input[type='checkbox']:disabled::before {
	border-color: var(--input-border-color-disabled);
	background-color: var(--input-background-color-disabled);
}
input[type='checkbox']:disabled::after {
	border-color: var(--input-border-color-inline-disabled);
}
input[type='checkbox']:checked:not(:disabled):focus::before, input[type='checkbox']:not(:checked):not(:disabled):focus::before {
	border-color: var(--input-border-color-hover);
}
input[type='checkbox']:not(:checked):not(:disabled):hover::before {
	border-color: var(--input-border-color-hover);
	background-color: var(--input-background-color-hover);
}
input[type='checkbox']:not(:checked):not(:disabled):hover:not(:checked)::after {
	border-color: var(--input-border-color-inline-hover);
}
/* Customization radio */

input[type='radio']::before {
	border-radius: 50%;
	border: solid 1px;
}
input[type='radio']::after {
	border: solid;
	border-color: var(--input-border-color-inline-checked);
	border-width: 5px;
	border-radius: 50%;
	width: 0px;
	height: 0px;
	left: 4px;
	bottom: 4px;
}
input[type='radio']:not(:checked)::before {
	border-color: var(--input-border-color);
}
input[type='radio']:not(:checked)::after {
	border-color: var(--input-border-color-inline);
}
input[type='radio']:checked:not(:disabled)::before {
	border-color: var(--input-border-color-checked);
	background-color: var(--input-background-color);
}
input[type='radio']:read-only::before, input[type='checkbox']:-moz-read-only::before {
	border-color: var(--input-border-color-inline-checked);
}
input[type='radio']:disabled::before {}
input[type='radio']:disabled::after {
	border-color: var(--input-border-color-inline-disabled);
}
input[type='radio']:checked:not(:disabled):focus::before, input[type='radio']:not(:checked):not(:disabled):focus::before {
	border-color: var(--input-border-color-hover);
}
input[type='radio']:not(:checked):not(:disabled):hover::before {
	border-color: var(--input-border-color-hover);
	background-color: var(--input-background-color);
}
input[type='radio']:not(:checked):not(:disabled):hover:not(:checked)::after {
	border-color: var(--input-border-color-inline-hover);
}
input, textarea, select {
	float: left;
	font-size: 16px;
	font-family: Urbanist, Arial;
	letter-spacing: 0.5px;
	border-radius: 0;
	border: 0;
}
button {
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	border-radius: 0;
	font-family: Urbanist, Arial;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 1px;
}
.input {
	width: 100%;
	height: 50px;
	padding: 0 16px;
	border: 0;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
	transition: ease 0.3s;
	background-color: transparent;
	border-radius: 0;
}
.select {
	background: url(../images/arrow-select.png) no-repeat right center;
	background-size: auto 5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.input:focus, .select:focus {
	border-bottom-color: #800E12;
}
textarea.input {
	padding-top: 13px !important;
	padding-bottom: 13px !important;
}
.button {
	float: none;
	height: 50px;
	display: inline-block;
	padding: 0 45px 0 30px;
	cursor: pointer;
	position: relative;
	color: #FFF;
	background-color: #800E12;
	transition: all 0.25s;
	border-radius: 25px;
	overflow: hidden;
}
.button:hover {
	background-color: #800E12;
}
.button::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: -40%;
	left: 50%;
	background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.0), #FFF);
	transform: skew(-40deg);
	opacity: 0.1;
	transition: all 0.25s;
}
.button:hover::before {
	left: 30%;
	opacity: 0.15;
}
.button::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	width: 20px;
	background: url(../images/arrow-white-right.png) no-repeat right center / 20px 14px;
	transition: all 0.25s;
}
.button:hover::after {
	right: 10px;
}
a.button {
	color: #FFF;
	font-weight: 600;
	font-size: 14px;
	line-height: 50px;
}
.bsr-wrap {
	float: left;
	width: 100%;
	padding-top: 90px;
	position: relative;
}
.outer {
	margin: 0 auto;
	width: 100%;
	max-width: 1720px;
	min-height: 10px;
	position: relative;
}
.wrap, .wrap-slim {
	margin: 0 auto;
	width: 1320px;
	min-height: 10px;
	position: relative;
}
.wrap-right {
	float: right;
}
.wrap-left {
	float: left;
}
.wrap-slim {
	width: 100%;
	max-width: 920px;
}
.tac {
	text-align: center;
}
.fl {
	float: left !important;
}
.fr {
	float: right !important;
}
.fn {
	float: none !important;
}
.w100 {
	float: left;
	width: 100% !important;
}
.w50 {
	float: left;
	width: 50%;
}
.w25 {
	float: left;
	width: 25%;
}
.mt30 {
	margin-top: 30px;
}
.mt20 {
	margin-top: 20px;
}
.mb20 {
	margin-bottom: 20px;
}
/*	Start TOP	*/

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 8000;
	background-color: #fff;
	transition: all 0.7s;
}
.nav-up, .nav-down {
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(12px);
}
.header-in {
	display: flex;
	position: relative;
}
.nav-icon, .sidebar-icon {
	display: none;
}
#logo {
	float: left;
	position: relative;
	margin-top: 15px;
}
#logo a {
	float: left;
}
#logo img {
	float: left;
	height: 60px;
	transition: all 0.7s;
}
#logo img:hover {
	opacity: 0.7;
}
.header-right {
	float: right;
	margin-left: auto;
	margin-top: 20px;
	position: relative;
}
.header-phone-wrap {
	float: right;
	position: relative;
	z-index: 100;
	color: #800E12;
    font-size: 20px;
    font-weight: 800;
	line-height: 50px;
}
.header-phone-wrap a{
	color: #000;
}

.search-icon {
	float: right;
	width: 50px;
	height: 50px;
	margin-left: 20px;
	position: relative;
	cursor: pointer;
	text-indent: -9999px;
	transition: all 0.3s;
	z-index: 100;
	background: url(../images/icon-search.png) no-repeat center / 20px;
	border-radius: 6px;
}
.search-icon-close {
	background-color: #930E0F;
	background-image: url(../images/icon-close.png);
	background-size: 16px;
}
.header-search {
	position: absolute;
	top: 80px;
	right: 0;
	width: 100%;
	max-width: 400px;
	z-index: 1100;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	display: none;
}
.header-search .input {
	padding: 0 60px 0 20px;
	border: 0;
	background-color: #FFF;
}
.header-search button {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 50px;
	background: rgba(0, 0, 0, 0.05) url(../images/icon-search.png) no-repeat center / 20px;
	text-indent: -9999px;
}
.header-search button:hover {
	background: #800E12 url(../images/icon-search-2.png) no-repeat center / 20px;
}
#nav {
	float: left;
	height: 90px;
	position: relative;
	z-index: 200;
	flex: 1;
	text-align: center;
}
#nav ul {
	float: none;
	display: inline-block;
	text-align: left;
}
#nav li {
	position: relative;
	margin-right: 60px;
}
#nav li a{
	color:#000;
}
#nav li:hover {
	z-index: 10;
}
#nav li:last-child {
	margin-right: 0;
}
#nav li>a {
	float: left;
	position: relative;
	font-weight: 600;
	line-height: 90px;
	transition: all 0.3s;
	z-index: 10;
}
#nav li:hover>a, #nav li>a.active {
	color: #930E0F;
}
#nav li>a.active::after {
	content: "";
	position: absolute;
	top: 0;
	left:0;
	width:100%;
	height: 5px;
	box-shadow: inset 0 2px 0 #930E0F;
    color: #930E0F;
}
#nav>ul li span {
	display: none;
	position: absolute;
	top: 75px;
	left: -20px;
	width: 320px;
	padding: 15px;
	background-color: #FFF;
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	z-index: 20;
}
#nav>ul li.nav-collection span {
	width: 400px;
}
#nav li span::before {
	content: "";
	border-bottom: 3px solid transparent;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	height: 0;
	position: absolute;
	width: 0;
	left: 35px;
	top: -3px;
	border-bottom-color: #FFF;
}
#nav>ul li span a {
	float: left;
	width: 100%;
	padding: 10px 15px;
	position: relative;
	font-weight: 500;
	transition: all 0.4s;
	border-radius: 8px;
	display: flex;
	align-items: center;
}
#nav>ul li span a::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 5px;
	width: 10px;
	background: url(../images/arrow-right.png) no-repeat right center / 100% auto;
	opacity: 0.3;
	transition: all 0.3s;
}
#nav>ul li span a:hover::after {
	right: 10px;
	opacity: 1;
}
#nav>ul li span a img {
	float: left;
	width: 60px;
	height: 60px;
	margin-right: 20px;
}
/*	Finish TOP	*/

.connect-whatsapp {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
}
.connect-whatsapp a {
	float: right;
	width: 48px;
	height: 48px;
	border: 2px solid #FFF;
	background-color: #27C34B;
	border-radius: 50%;
	position: relative;
	text-indent: -9999px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.connect-whatsapp a:hover {
	background: linear-gradient(45deg, #00C451, #047737 100%);
}
.connect-whatsapp a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: url(../images/icon-whatsapp-2.png) no-repeat center / 50px;
}
/*	Finish HERO VIDEO	*/

.controls {
	height: 100%;
}
.slick-prev, .slick-next {
	position: absolute;
	top: 50%;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	text-indent: -9999px;
	cursor: pointer;
	z-index: 1000;
	transition: all 0.2s ease;
	background: #FFF url(../images/arrow-left.png) no-repeat center / 20px 14px;
	border-radius: 50%;
}
.slick-prev {
	left: 0;
}
.slick-next {
	right: 0;
	background-image: url(../images/arrow-right.png);
}
.slick-prev:hover, .slick-next:hover {
	background-color: #800E12 !important;
}
.slick-prev:hover {
	background-image: url(../images/arrow-white-left.png);
}
.slick-next:hover {
	background-image: url(../images/arrow-white-right.png);
}
ul.slick-dots {
	position: absolute;
	text-align: center;
	right: 0;
	left: 0;
	bottom: 0;
	padding: 30px 0 20px 0;
	z-index: 1000;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.2));
}
ul.slick-dots li {
	float: none;
	margin: 0 5px;
	position: relative;
	display: inline-block;
	transition: all 0.3s;
	z-index: 10;
}
ul.slick-dots li button {
	float: left;
	width: 30px;
	height: 23px;
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
	text-indent: -9999px;
	opacity: 0.3;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}
ul.slick-dots li button:hover {
	opacity: 0.7;
}
ul.slick-dots li.slick-active button {
	opacity: 1 !important;
}
ul.slick-dots li button::before {
	content: "";
	float: left;
	width: 100%;
	height: 100%;
	background-color: #FFF;
}

.slider-hero-out {
	float: left;
	width: 100%;
	position: relative;
	z-index: 700;
}
.slider-hero-wrap {
	float: left;
	width: 100%;
	position: relative;
	z-index: 800;
	background-color: #800E12;
}
.slider-hero-wrap .wrap {
	position: static;
}
.slider-hero-wrap::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../images/bg-slider.jpg) no-repeat center / cover;
	z-index: 20;
	opacity: 0.75;
}
.slider-hero-video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.slider-hero {
	float: left;
	width: 100%;
	position: relative;
	z-index: 100;
	overflow: hidden;
}
.slider-hero .slick-list {
	overflow: hidden;
}
.slider-hero-item {
	float: left;
	width: 100%;
	position: relative;
	overflow: hidden;
}
.item-zoom {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 3s;
	transform-origin: center;
	transform: scale(1.5);
}
.slick-current .item-zoom {
	transform: scale(1);
}
.slider-hero-title {
	float: left;
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	color: #FFF;
}
.slider-hero-title .wrap {
	display: flex;
	align-items: center;
}
.slider-hero-title-in {
	float: left;
	width: calc(50% - 60px);
}
.slider-hero-title section {
	float: left;
	width: 100%;
	position: relative;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	opacity: 0.7;
}
.slider-hero-title strong {
	float: left;
	width: 100%;
	margin: 24px 0 31px 0;
	position: relative;
	font-size: 60px;
	font-weight: 800;
	line-height: 70px;
	letter-spacing: -1px;
}
.slider-hero-picture {
	float: right;
	width: 50%;
	padding-left: 20px;
	margin: 0 0 0 auto;
}
.slider-hero-picture img {
	float: right;
	max-width: 100%;
	max-height: 680px;
}
.slider-hero ul.slick-dots {}
.vertical-out {
	width: 100%;
	height: 100%;
	display: table;
}
.vertical-in {
	width: 100%;
	display: table-cell;
	vertical-align: middle;
}
.showcase-out {
	float: left;
	width: 100%;
	margin-top: 20px;
	position: relative;
	overflow: hidden;
}
.showcase-wrap {
	float: left;
	width: 100%;
	position: relative;
}
.slider-showcase {
	float: left;
	width: 160%;
	position: relative;
	overflow: hidden;
}
.slider-showcase .slick-list {
	overflow: hidden;
}
.slider-showcase-item {
	float: left;
	width: 100%;
	padding-right: 20px;
	position: relative;
}
.slider-showcase-item section {
	float: left;
	width: 100%;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.slider-showcase-item img {
	float: left;
	width: 100%;
}
.slider-showcase .slick-prev, .slider-showcase .slick-next {
	top: auto;
	bottom: 0;
}
.slider-showcase .slick-next {
	left: 52px;
}
.slider-wide {
	float: left;
	width: 100%;
	position: relative;
	overflow: hidden;
}
.slider-wide div {
	float: left;
	width: 100%;
	position: relative;
}
.slider-wide div a, .slider-full div img {
	float: left;
	width: 100%;
}
.slider-wide div a {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.hero-bar {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
	z-index: 800;
}
.hero-bar .outer {
	height: 100%;
}
.hero-social {
	float: left;
	background-color: #FFF;
	z-index: 1010;
}
.hero-social li a {
	float: left;
	transition: all 0.25s;
}
.hero-social li a:hover {
	background-color: #1892AC;
}
.hero-social li a img {
	float: left;
	height: 60px;
	padding: 5px;
}
.scroll-down {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 50%;
	height: 60px;
	z-index: 10;
	color: #FFF;
	background-color: #000;
	cursor: pointer;
}
.scroll-down::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 40px;
	width: 2px;
	background-color: #EEE;
	transition: all 0.3s;
}
.scroll-down:hover::before {
	background-color: #1892AC;
}
.scroll-down section {
	float: left;
	padding-left: 40px;
	margin-top: 10px;
	position: relative;
	background-color: #000;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 2px;
	line-height: 40px;
	transition: all 0.3s;
	z-index: 100;
}
.scroll-down:hover section {
	letter-spacing: 4px;
}
/*	Finish SLIDER	*/

.mask, .mask-top {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 710;
}
.slider-hero-wrap .mask {
	bottom: -1px;
}
.mask-top {
	top: 0;
	bottom: auto;
}
.mask>img, .mask-top>img {
	float: left;
	width: 100%;
	max-height: 70px;
}
/*	Start FOOTER	*/

.get-in-wrap {
	float: left;
	width: 100%;
	padding: 100px 0;
	position: relative;
	color: #FFF;
	background-color: #2751A5;
}
.get-in-wrap::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: url(../images/bg-contact.jpg) no-repeat 0 0 / 100% auto;
}
.get-in-touch {
	float: left;
	width: 100%;
	position: relative;
}
.get-in-touch .input {
	color: #FFF;
	border-bottom: 1px solid rgba(0, 170, 243, 0.3);
}
.get-in-touch .input:focus {
	border-bottom-color: #FFF;
}
.get-in-touch .input::placeholder {
	color: rgba(255, 255, 255, 0.6);
	opacity: 1;
}
.get-in-touch .input:-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.6);
}
.get-in-touch .input::-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.6);
}
.get-in-wrap .block-flex-picture img {
	box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.15);
}
.footer-wrap {
	float: left;
	width: 100%;
	position: relative;
	color: #fff;
	background-color: #1e2228;
}
.footer-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../images/bg-footer.jpg) no-repeat left bottom/auto 100%;
    opacity: .10;
}
.footer {
	float: left;
	width: 100%;
	padding: 80px 0;
	position: relative;
	display: flex;
}
.footer-title {
	float: left;
	width: 100%;
	padding: 17px 0 13px 0;
	font-size: 24px;
	font-weight: 500;
	color: rgba(255,255,255,.65)!important;
	line-height: 30px;
}
.footer-logo {
	float: left;
	width: 40%;
	max-width: 420px;
}
.footer-logo>picture {
	float: left;
	width: 100%;
	margin-bottom: 40px;
}
.footer-logo>picture img {
	float: left;
	height: 60px;
}
.footer-share {
	float: left;
	text-align: center;
}
.footer-share li {
	padding-left: 20px;
}
.footer-share li:first-child {
	padding-left: 0 !important;
}
.footer-share li a {
	float: left;
	border: 1px solid #fff;
	border-radius: 50%;
	transition: all 0.3s;
	color:#fff;
	font-size:18px;
	width:40px; height:40px;
	text-align:center;
	line-height:40px;
}
.footer-share li a:hover {
	border-color: #930E0F

}
.footer-share li a img {
	float: left;
	width: 50px;
	margin: -1px;
}
.footer-links {
	flex: 1;
	padding: 0 40px;
	position: relative;
}
.footer-links section {
	float: left;
	width: 50%;
}
.footer-links ul {
	width: 100%;
}
.footer-links li {
	width: 100%;
	padding-bottom: 10px;
}
.footer-links li a {
	float: left;
	width: 100%;
	padding: 5px 0;
	font-weight: 500;
	color: #fff;
}
.footer-links li a:hover {
	color: #930E0F
}
.footer-connect {
	float: right;
	width: 40%;
	max-width: 420px;
	margin-left: auto;
}
.footer-phone {
	float: left;
	width: 100%;
	margin: 5px 0 15px 0;
	font-size: 30px;
	font-weight: 800;
	color: #000;
	line-height: 30px;
}
.footer-phone a{
	float: left;
	width: 100%;
	margin: 5px 0 15px 0;
	font-size: 30px;
	font-weight: 800;
	color: #fff;
	line-height: 30px;
}
.footer-connect section {
	float: left;
	width: 100%;
	margin-bottom: 10px;
	line-height: 30px;
}
.footer-connect section:last-child {
	margin-bottom: 0;
}
.footer-connect section strong {
	float: left;
	width: 30px;
}
.footer-connect section small {
	float: left;
	width: calc(100% - 30px);
}
.copyright {
	float: left;
	width: 100%;
	padding: 50px 0;
	position: relative;
	font-size: 14px;
	color: #999;
	z-index: 5;
	display: flex;
}
.copyright .fl {
	flex: 1;
	padding-right: 30px;
}
.copyright .fl section {
	display: block;
	margin-bottom: 10px;
}
.copyright .fl section:last-child {
	margin-bottom: 0;
}
.copyright .fr {
	float: right;
	margin-left: auto;
}
.copyright a {
	font-weight: 600;
}
/*	Start CONTENT	*/

.hero-video-wrap {
	float: left;
	width: 100%;
	position: relative;
}
.hero-video-wrap::before {
	content: "";
	position: absolute;
	top: 50%;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #120E47;
}
.hero-video {
	float: left;
	width: 100%;
	position: relative;
	border-radius: 0 80px 0 80px;
	overflow: hidden;
}
.hero-video a {
	float: left;
	width: 100%;
	position: relative;
}
.hero-video a::before, .hero-video a::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 400px;
	height: 400px;
	margin: -200px 0 0 -200px;
	border: 1px solid #FFF;
	border-radius: 50%;
	z-index: 9;
	opacity: 0.2;
	transition: all 1s;
	transform: scale(1.6, 1.6);
}
.hero-video a::after {
	transform: scale(3, 3);
	opacity: 0.1;
}
.hero-video a:hover::before {
	transform: scale(1, 1);
	opacity: 1;
}
.hero-video a:hover::after {
	transform: scale(1.75, 1.75);
	opacity: 0.2;
}
.hero-video a picture {
	float: left;
	width: 100%;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.hero-video a picture::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 70px;
	height: 70px;
	margin: -35px 0 0 -35px;
	background: #FFF url(../images/icon-play.png) no-repeat 55% center / auto 30px;
	z-index: 100;
	border-radius: 50%;
	transition: all 0.5s;
}
.hero-video a:hover picture::after {
	background-color: #800E12;
}
.hero-video a picture figure {
	float: left;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transform-origin: center;
	transition: all 1.5s;
}
.hero-video a:hover picture figure {
	transform: scale(1.2, 1.2);
}
.hero-video a picture figure img {
	float: left;
	width: 100%;
	max-height: 600px;
}
@keyframes rotating {
	from {
		-ms-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-ms-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
.video-circle {
	position: absolute;
	top: calc(50% - 70px);
	left: calc(50% - 70px);
	width: 140px;
	height: 140px;
	background: url(../images/circle.html) no-repeat center / 100%;
	-webkit-animation: rotating 10s linear infinite;
	-moz-animation: rotating 10s linear infinite;
	-ms-animation: rotating 10s linear infinite;
	-o-animation: rotating 10s linear infinite;
	animation: rotating 10s linear infinite;
	transition: all 0.5s;
}
.hero-video a:hover .video-circle {
	top: calc(50% - 90px);
	left: calc(50% - 90px);
	width: 180px;
	height: 180px;
}
.block-dark {
	float: left;
	width: 100%;
	position: relative;
	background-color: #120E47;
	color: #FFF;
}
.block-promo {
	float: left;
	width: 100%;
	padding-top: 40px;
	position: relative;
	background-color: #F7F4FF;
}
.stats {
	float: left;
	width: 100%;
	padding: 100px 0;
	position: relative;
	z-index: 100;
}
.stats ul {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.stats li {
	position: relative;
	margin: 40px 0;
	width: calc(50% - 40px);
}
.stats li strong {
	display: block;
	margin-bottom: 10px;
	font-size: 57px;
	font-weight: 300;
	line-height: 60px;
	color: #1892AC;
	letter-spacing: -1px;
	position: relative;
}
.stats li:nth-child(2) strong {
	color: #AA1955;
}
.stats li:nth-child(3) strong {
	color: #F7425F;
}
.stats li:nth-child(4) strong {
	color: #F78160;
}
.stats li small {
	display: block;
	font-size: 17px;
	line-height: 30px;
}
.page-title {
	float: left;
	width: 100%;
	position: relative;
	font-weight: 700;
	font-size: 40px;
	color: #800E12;
	line-height: 50px;
}
.page-title-top {
	margin-top: 61px;
}
.page-title-bottom {
	margin-bottom: 29px;
}
.color-white {
	color: #FFF !important;
}
.page-text {
	float: left;
	width: 100%;
	margin: 16px 0 28px 0;
	position: relative;
	font-size: 18px;
	color: #333;
	line-height: 35px;
	z-index: 20;
}
.page-text p{
	margin-top:25px;
}
.product-text {
	margin: 2px 0 16px 0;
	font-size: 16px;
	line-height: 25px;
}
.page-text-white {
	color: #FFF;
}
.page-text a{
	color: #800E12 !important;
}
.page-text a, .page-text b, .page-text strong {
	color: #000;
}
.page-text a:hover {
	color: #800E12;
	text-decoration: none;
}
.color-white a, .color-white b, .color-white strong {
	color: #FFF;
}
.page-text ul, .page-text ol {
	float: none;
	width: 100%;
	padding-left: 30px;
	padding-bottom: 10px;
	display: inline-block;
	font-weight: 600;
}
.product-text ul, .product-text ol {
	padding-left: 0;
}
.page-text ol {
	padding-bottom: 20px;
	display: inline-block;
}
.page-text ul li {
	width: 100%;
	padding-left: 25px;
	margin-bottom: 15px;
	position: relative;
}
.page-text ul li::before {
	content: "";
	position: absolute;
	top: 12px;
	left: 0;
	width: 6px;
	height: 6px;
	border: 2px solid #800E12;
	border-radius: 50%;
}
.product-text ul li::before {
	top: 7px;
}
.page-text ol li {
	width: 100%;
	margin-bottom: 15px;
	position: relative;
	display: list-item;
	list-style: decimal;
	list-style-position: inside;
}
.page-text ul li:last-child, .page-text ol li:last-child {
	margin-bottom: 0;
}
.page-text ol li::marker {
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	font-weight: 600;
	text-align: left;
	color: #800E12;
}
.page-hero-text {
	float: left;
	width: 100%;
	padding-right: 22%;
	margin: 25px 0;
	position: relative;
	font-size: 34px;
	font-weight: 300;
	color: #000;
	line-height: 50px;
	z-index: 30;
}
.page-summary {
	float: left;
	width: 100%;
	margin-top: -8px;
	position: relative;
	font-size: 24px;
	line-height: 40px;
	z-index: 30;
}
.block-narrow {
	float: left;
	width: 25%;
	padding-right: 40px;
}
.block-wide {
	float: right;
	width: 75%;
	max-width: ;
}
.blog-list {
	float: left;
	width: 100%;
	position: relative;
}
.blog-list ul {
	width: 100%;
	display: flex;
	flex-flow: row wrap;
}
.blog-list li {
	width: 33.33334%;
	padding: 0 15px;
	margin-bottom: 30px;
}
.blog-item {
	float: left;
	width: 100%;
	position: relative;
}
.blog-item section strong{
	color:#000;
}
.blog-item picture {
	float: left;
	width: 100%;
	position: relative;
	z-index: 5;
	overflow: hidden;
	border-radius: 6px;
}
.blog-item img {
	float: left;
	width: 100%;
	transform-origin: center;
	transition: all 1.5s;
}
.blog-item:hover picture img {
	transform: scale(1.25, 1.25);
}
.blog-item section {
	float: left;
	width: calc(100% - 50px);
	padding: 25px;
	margin-left: 25px;
	margin-top: -25px;
	position: relative;
	background-color: #FFF;
	z-index: 100;
	border-radius: 4px 4px 0 0;
}
.blog-item span {
	float: left;
	width: 100%;
	margin: -14px 0 7px 0;
	color: #999;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 2px;
}
.blog-item strong {
	float: left;
	width: 100%;
	position: relative;
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
}
.blog-item em {
	float: left;
	padding-top: 33px;
	margin-bottom: -1px;
	position: relative;
	color: #BBB;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	transition: all 0.3s;
}
.blog-item:hover em {
	letter-spacing: 4px;
}
.blog-item em::before {
	content: "";
	position: absolute;
	top: 15px;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: #800E12;
	transition: all 0.6s;
}
.blog-item:hover em::before {
	width: 100%;
}
.promo-wrap, .promo {
	float: left;
	width: 100%;
	position: relative;
}
.promo>ul {
	width: 100%;
}
.promo>ul>li {
	display: flex;
	align-items: center;
	margin-bottom: 100px;
}
.promo>ul>li:last-child {
	margin-bottom: 50px;
}
.promo>ul>li picture {
	float: left;
	width: calc(50% - 60px);
	position: relative;
}
.promo>ul>li picture figure {
	float: left;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	border-radius: 24px;
	box-shadow: 10px 10px 0 #800E12;
	overflow: hidden;
}
.promo>ul>li picture img {
	float: left;
	width: 100%;
	position: relative;
	z-index: 10;
}
.promo-content {
	float: right;
	width: calc(50% - 60px);
	margin-left: auto;
	position: relative;
}
.promo-content .page-text {
	margin-bottom: 0;
}
.promo>ul>li:nth-child(even) picture {
	margin-left: auto;
	text-align: right;
}
.promo>ul>li:nth-child(even) .promo-content {
	float: left;
	margin-left: 0;
	text-align: left;
}
.inner-80 {
	margin: 0 -80px;
}
.inner-40 {
	margin: 0 -40px;
}
.inner-30 {
	margin: 0 -30px;
}
.inner-20 {
	margin: 0 -20px;
}
.inner-15 {
	margin: 0 -15px;
}
.inner-10 {
	margin: 0 -10px;
}
.inner-6 {
	margin: 0 -6px;
}
.inner-5 {
	margin: 0 -5px;
}
.inner-2 {
	margin: 0 -2px;
}
.top-150 {
	padding-top: 150px;
}
.top-100 {
	padding-top: 100px;
}
.top-50 {
	padding-top: 50px;
}
.bottom-150 {
	padding-bottom: 150px;
}
.bottom-100 {
	padding-bottom: 100px;
}
.bottom-50 {
	padding-bottom: 50px;
}
.left-80 {
	padding-left: 80px;
}
.right-80 {
	padding-right: 80px;
}
.block-gradient {
	float: left;
	width: 100%;
	position: relative;
	background-image: linear-gradient(180deg, #F8F9F9, #FFF);
}
.block-grey {
	background-color: #fbfbfb;
}
.block-border-bottom {
	background: url(../images/dot-line.png) repeat-x 0 bottom;
}
.link-all {
	float: left;
	width: 100%;
	position: relative;
	text-align: center;
	z-index: 100;
}
.link-all a {
	display: inline-block;
	height: 50px;
	padding: 0 20px 0 30px;
	position: relative;
	letter-spacing: 1px;
	font-size: 13px;
	font-weight: 600;
	color: #FFF;
	line-height: 51px;
	border-radius: 25px;
	transition: all 0.3s;
}
.link-all a:hover {
	color: #FFF;
}
.link-all a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: #800E12;
	border-radius: 25px;
	box-shadow: 5px 5px 0 #FFF;
	transition: all 0.3s;
}
.link-all a:hover::before {
	background-color: #800E12;
}
.link-all a::after {
	content: "";
	float: right;
	width: 14px;
	height: 50px;
	margin-left: 10px;
	position: relative;
	background: url(../images/arrow-white-right.png) no-repeat 0 center / 100% auto;
}
.link-all a span {
	position: relative;
	z-index: 10;
}
.link-all-white a {
	color: #930E0F;
}
.link-all-white a::before {
	background-color: #FFF;
	box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}
.link-all-white a:hover::before {
	background-color: #800E12;
}
.link-all-white a::after {
	background-image: url(images/arrow-right.png);
}
.link-all-white a:hover::after {
	background-image: url(images/arrow-white-right.png);
}
.grayscale {
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
}
.grayscale:hover {
	filter: none;
	-webkit-filter: none;
}
.blog-content {
	float: left;
	width: 100%;
	position: relative;
}
.blog-photo {
	float: left;
	width: 100%;
	margin-bottom: 30px;
}
.blog-photo img {
	float: left;
	width: 100%;
	border-radius: 24px;
	box-shadow: 10px 10px 0 #2751A5;
}
.blog-info {
	float: left;
	width: 100%;
	padding-bottom: 20px;
	margin-bottom: 5px;
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.blog-info small {
	float: left;
	padding-right: 15px;
	margin-right: 15px;
	border-right: 2px solid #EEE;
	font-size: 13px;
	color: #999;
	letter-spacing: 1px;
}
.blog-info strong {
	display: block;
	margin-top: -1px;
	font-weight: 500;
}
.page-share {
	float: left;
	width: 100%;
	position: relative;
}
.page-share ul {
	width: 100%;
}
.page-share li {
	margin-right: 10px;
	margin-bottom: 10px;
}
.page-share li:last-child {
	margin-right: 0;
}
.page-share li a {
	float: left;
	border: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.25s;
	border-radius: 50%;
}
.page-share li a:hover {
	border-color: rgba(0, 0, 0, 0.5);
}
.page-share li a img {
	float: left;
	height: 40px;
	margin: -1px;
}
/*	Start LIGHTBOX	*/

.fancybox-slide--iframe .fancybox-content {
	width: 800px;
	min-height: 300px;
	max-width: 80%;
	max-height: 80%;
	margin: 0;
}
.my-fancy {
	display: none;
	padding: 30px !important;
	border-radius: 8px;
}
.my-fancy-wrap {
	width: 100%;
	max-width: 800px;
	max-height: 600px;
	overflow: hidden;
	overflow-y: auto;
}
.my-fancy-wrap::-webkit-scrollbar {
	width: 5px;
}
.my-fancy-wrap::-webkit-scrollbar-track {
	background: #EEEEEE;
}
.my-fancy-wrap::-webkit-scrollbar-thumb {
	background-color: #555;
}
.my-fancy-wrap {
	scrollbar-color: #FFF #EEEEEE;
	scrollbar-width: thin;
}
.fancy-title {
	float: left;
	width: 100%;
	padding: 0 20px;
	margin-bottom: 15px;
	position: relative;
	font-size: 16px;
	color: #000;
}
.fancy-title::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 50px;
	height: 2px;
	margin-top: -1px;
	background-color: #CEC9C8;
}
.fancy-title strong {
	float: left;
	padding: 0 15px;
	position: relative;
	font-weight: 500;
	letter-spacing: 1px;
	background-color: #FFF;
}
.fancy-form {
	float: left;
	width: 100%;
}
.fancy-form .item {
	float: left;
	width: 50%;
	padding: 0 10px;
	margin-bottom: 20px;
}
.fancy-form .item:last-child {
	margin-bottom: 0;
}
.fancy-form .item-2 {
	width: calc(50% - 10px);
}
.fancy-form .item-2 label {
	float: left;
	width: 100%;
	padding: 9px;
	border: 1px solid #999;
	border-radius: 4px;
	font-weight: 600;
}
.fancy-form .item a {
	font-weight: 600;
	text-decoration: underline;
}
.sub-hero-wrap {
	float: left;
	width: 100%;
	position: relative;
}
.sub-hero {
	float: left;
	width: 100%;
	height: 52vh;
	max-height: 450px;
	min-height: 240px;
	position: relative;
	z-index: 100;
	background-color: #F6F6F8;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.sub-hero::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/bg-slider.jpg) no-repeat center / cover;
    z-index: 20;
    opacity: 0.50;
}
.sub-hero-title {
	float: left;
	width: 100%;
	padding: 262px 0 88px 0;
	position: relative;
	font-size: 41px;
	line-height: 50px;
	color: #FFF;
}
.breadcrumb-wrap {
	float: left;
	width: 100%;
	position: relative;
	box-shadow: inset 0 -1px rgba(0, 0, 0, 0.06);
}
.breadcrumb {
	float: left;
	width: 100%;
	height: 60px;
	padding: 10px 0;
	font-size: 14px;
	letter-spacing: 1px;
	line-height: 40px;
	overflow: hidden;
}
.breadcrumb a {
	float: left;
	color: #777;
}
.breadcrumb a:hover {
	color: #353535;
	text-decoration: underline;
}
.breadcrumb i {
	float: left;
	margin: 0 15px;
	opacity: 0.4;
}
.breadcrumb strong {
	float: left;
	font-weight: 600;
	color: #800E12;
}
.mega-photo {
	float: left;
	width: 100%;
	position: relative;
}
.mega-photo img {
	float: left;
	width: 100%;
}
.parallax-outer {
	float: left;
	width: 100%;
	padding: 80px 0;
	position: relative;
}
.parallax-mirror {
	z-index: 1 !important;
}
.parallax-wrap {
	float: left;
	width: 100%;
	position: relative;
}
.parallax-photo-wrap {
	position: absolute;
	left: 0;
	right: calc(50% + 40px);
	bottom: 0;
	top: 0;
}
.parallax-photo {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background: transparent;
}
.parallax-wide-wrap {
	float: left;
	width: 100%;
	position: relative;
}
.parallax-wide {
	float: left;
	width: 100%;
	position: relative;
	background: transparent;
	background-size: 100% auto;
}
.parallax-wide::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: linear-gradient(145deg, #800E12, rgba(0, 70, 128, 0.5));
}
.parallax-wide-content {
	float: left;
	width: 100%;
	position: relative;
	z-index: 10;
	color: #FFF;
}
.parallax-just-photo img {
	float: left;
	width: 100%;
	max-height: 600px;
}
.parallax-just-photo::before, .parallax-just-photo::after {
	display: none;
}
.parallax-text {
	float: right;
	width: calc(50% - 80px);
	position: relative;
}
.parallax-text .page-title {
	margin-top: -30px;
}
.parallax-right .parallax-photo-wrap {
	right: 0;
	left: calc(50% + 80px);
}
.parallax-right .parallax-text {
	float: left;
}
.simple-list {
	float: left;
	width: 100%;
	margin-top: 10px;
	font-size: 17px;
	line-height: 25px;
}
.simple-list ul {
	width: 100%;
	display: flex;
	flex-flow: row wrap;
}
.simple-list li {
	width: 100%;
	padding: 0 20px 20px 30px;
	position: relative;
	display: inline-block;
	vertical-align: top;
	background: url(../images/icon-ok.png) no-repeat 0 4px / 17px auto;
}
.block-two {
	width: 48%;
}
.gallery {
	float: left;
	width: 100%;
	position: relative;
	overflow: hidden;
}
.gallery ul {
	width: 100%;
	margin-bottom: 20px;
}
.gallery li {
	width: 25%;
	padding: 0 5px;
	margin-bottom: 10px;
	position: relative;
}
.gallery li a {
	float: left;
	width: 100%;
	position: relative;
	overflow: hidden;
	color: #FFF;
	border-radius: 4px;
}

.gallery li a:hover::after {
	background-color: #FFF;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
}
.gallery li a section {
	float: left;
	width: 100%;
	position: relative;
	overflow: hidden;
}
.gallery li a span {
	float: left;
	width: 100%;
	background-size: cover;
	background-position: center top;
	transform-origin: center;
	transition: all 1s;
}
.gallery li a:hover span {
	transform: scale(1.13, 1.13);
}
.gallery li a span img {
	float: left;
	width: 100%;
}
.page-container {
	float: left;
	width: 100%;
	position: relative;
}

.sidebar {
	float: left;
	width: 280px;
	padding-top: 53px;
	position: relative;
}
.sidebar-content {
	float: right;
	position: relative;
	width:100%;
}
.sidebar-content .page-title {
	margin-top: 31px;
}
.sidebar-search {
	float: left;
	width: 100%;
	margin-bottom: 30px;
	position: relative;
}
.sidebar-search .input {
	height: 45px;
	border: 1px solid #999;
	border-radius: 4px;
	line-height: 45px;
}
.sidebar-search .select {
	font-weight: 500;
}
.sidebar-menu {
	float: left;
	width: 100%;
	margin-bottom: 20px;
	position: relative;
}
.sidebar-menu ul {
	width: 100%;
	padding-left: 25px;
}
.sidebar-menu ul li {
	width: 100%;
}
.sidebar-menu ul li a {
	float: left;
	width: 100%;
	padding: 2px 0;
	margin-bottom: 10px;
	position: relative;
	font-weight: 600;
	display: flex;
	align-items: center;
}
.sidebar-menu ul li a.active {
	color: #800E12;
}
.sidebar-menu ul li a::before {
	content: "";
	position: absolute;
	top: calc(50% - 3px);
	left: -25px;
	width: 5px;
	height: 5px;
	background-color: #800E12;
	border-radius: 50%;
	opacity: 0.2;
}
.sidebar-menu ul li a::after {
	content: "";
	position: absolute;
	top: calc(50% - 3px);
	left: -10px;
	width: 20px;
	height: 5px;
	background-color: transparent;
	transition: all 0.2s;
	border-radius: 50%;
}
.sidebar-menu ul li a.active::after, .sidebar-menu ul li a:hover::after {
	left: -25px;
	width: 5px;
	background-color: #800E12;
}
.sidebar-menu ul li a img {
	float: left;
	height: 20px;
	margin-right: 15px;
}
.sidebar-menu ul li label {
	float: left;
	width: 100%;
	padding-bottom: 8px;
	cursor: pointer;
	position: relative;
	font-weight: 500;
}
.sidebar-menu ul li label i {
	display: inline-block;
	padding-left: 5px;
	color: #999;
	font-size: 11px;
	font-weight: 400;
}
.paket {
	float: left;
	width: 100%;
	position: relative;
}
.paket a {
	float: left;
	width: 100%;
	padding: 15px 15px 15px 15px;
	position: relative;
	color: #FFF;
	background: #800E12;
	border-radius: 6px;
	transition: all 0.3s;
}
.paket a:hover {
	background-color: #800E12;
}
.paket a strong {
	display: block;
	margin-top: 2px;
	font-size: 17px;
}
.paket a small {
	display: block;
	margin-bottom: -2px;
	font-size: 14px;
}
.product-list {
	float: left;
	width: 100%;
	position: relative;
	text-align: center;
}
.product-list ul {
	width: 100%;
	margin-bottom: -20px;
	display: flex;
	flex-flow: row wrap;
}
.product-list li {
	width: 25%;
	padding: 0 15px;
	margin-bottom: 30px;
}
.product-list li section, .product-list li a {
	float: left;
	width: 100%;
	height: 100%;
	padding: 24px;
	position: relative;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 6px;
	letter-spacing: 1px;
	transition: all 0.4s;
}
.product-list li section:hover, .product-list li a:hover {
	border-color: #800E12;

}
.product-list li a picture {
	float: left;
	width: 100%;
	height: 160px;
	position: relative;
	overflow: hidden;
	border-radius: 3px;
}
.product-list li a picture img {
	height: 100%;
	object-fit: cover;
	border-radius: 3px;
}
.product-list li a strong {
	float: left;
	width: 100%;
	padding-top: 20px;
	margin: 15px 0 -5px 0;
	position: relative;
}


.slider-product-wrap {
	float: left;
	width: 100%;
	padding: 25px 0;
	margin-top: -10px;
	position: relative;
	border-top: 1px solid #EEE;
}
.slider-product {
	float: left;
	width: 100%;
	position: relative;
	text-align: center;
}
.slider-product .slick-list {
	overflow: hidden;
}
.slider-pro-item {
	float: left;
	width: 100%;
	position: relative;
}
.slider-pro-item a {
	float: left;
	width: 100%;
	height: 300px;
	position: relative;
}
.slider-pro-item a img {
	height: 100%;
	object-fit: cover;
}
.slider-product ul.slick-dots {
	padding-bottom: 5px;
	border-radius: 6px;
}
.small-title {
	float: left;
	width: 100%;
	margin: 24px 0 21px 0;
	position: relative;
}
.small-title::before {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	right: 0;
	height: 1px;
	background-color: rgba(0, 0, 0, 0.06);
}
.small-title strong {
	float: left;
	padding-right: 15px;
	position: relative;
	background-color: #FFF;
	font-size: 19px;
	color: #800E12;
}
.product-specs {
	float: left;
	width: 100%;
	margin-bottom: 20px;
	position: relative;
	font-weight: 500;
}
.product-specs:last-child {
	margin-bottom: 0;
}
.product-specs table {
	width: 100%;
}
.product-specs table tr {
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.product-specs table tr:nth-child(odd) {
	background-color: rgba(0, 0, 0, 0.03);
}
.product-specs table tr td {
	padding: 10px 15px;
}
.product-specs table tr td:first-child {
	font-weight: 700;
}
/*	Start CONTACT	*/

.accordion {
	float: left;
	width: 100%;
}
.accordion-section {
	float: left;
	width: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.accordion-section-title {
	float: left;
	width: 100%;
	padding: 30px;
	position: relative;
	font-size: 17px;
	color: #6D7887;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	z-index: 10;
}
.accordion-section-title:hover {
	color: #000;
}
.accordion-section-title.active {
	color: #000 !important;
}
.accordion-section-title::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	width: 14px;
	background: url(../images/arrow-down.png) no-repeat center / 100% auto;
	transition: all 0.3s;
}
.accordion-section-title.active::after {
	transform: rotate(180deg);
}
.accordion-section-title section {
	float: left;
}
.accordion-section-content {
	float: left;
	width: 100%;
	padding: 0 30px 40px 30px;
	position: relative;
	display: none;
}
.accordion-section-text {
	float: left;
	width: 100%;
	font-size: 16px;
	line-height: 30px;
}
.accordion-more {
	float: left;
	width: 100%;
	padding: 20px 0;
	margin-top: 20px;
	font-size: 17px;
	line-height: 30px;
}
.accordion-more a {
	font-weight: 500;
	color: #800E12;
}
.accordion-more a:hover {
	text-decoration: underline;
}
.contact-info {
	float: left;
	width: 100%;
	margin-bottom: 60px;
	position: relative;
}
.contact-info-in {
	float: left;
	width: 100%;
	position: relative;
	display: flex;
	flex-flow: row wrap;
}
.contact-info section {
	float: left;
	width: 50%;
	padding: 0 15px;
	margin-bottom: 32px;
	position: relative;
	line-height: 25px;
	transition: all 0.4s;
}
.contact-info section span {
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
	font-size: 18px;
	color: #800E12;
}
.contact-info section article {
	display: block;
	margin-bottom: 10px;
	font-weight: 500;
	line-height: 30px;
}
.contact-info section article:last-child {
	margin-bottom: 0;
}
.contact-info section a {
	color: #151515;
}
.contact-info section a:hover {
	text-decoration: underline;
}
.contact-info .footer-share li {
	padding-left: 15px;
}
.contact-info .footer-share li a img {
	width: 40px;
}
.contact-form {
	float: left;
	width: 100%;
	position: relative;
}
.career-form {
	max-width: 840px;
}
.contact-form .title-medium {
	margin-top: 14px;
}
.form-item {
	float: left;
	width: 50%;
	padding: 0 15px 30px 15px;
	position: relative;
}
.form-item-text {
	margin-top: -10px;
	color: #666;
}
.form-item:last-child {
	padding-bottom: 0;
}
.form-item label {
	float: left;
	width: 100%;
}
.form-item section {
	float: left;
	width: 100%;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: -10px;
}
.form-item i {
	float: left;
	width: 100%;
	font-weight: 500;
	margin: -10px 0 5px 0;
}
.security-code img {
	float: left;
	width: 120px;
	height: 50px;
	margin-right: 10px;
	padding: 3px;
	border: 1px solid #999;
	background-color: #FFF;
	border-radius: 6px;
	box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.03);
}
.security-code a.refresh {
	float: left;
	width: 50px;
	height: 50px;
	text-indent: -9999px;
	background: #FFF url(../images/refresh.png) no-repeat center center / 24px;
	border: 1px solid #999;
	border-radius: 6px;
	box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.03);
}
.security-code a:hover.refresh {
	background-color: #EEE;
}
.contact-map {
	float: left;
	width: 100%;
	height: 600px;
	position: relative;
	z-index: 10;
}
.upload {
	float: left;
	width: 100%;
	height: 50px;
	position: relative;
	text-align: center;
}
.upload section {
	float: left;
	width: 100%;
	height: 50px;
	padding: 0 16px;
	border-bottom: 2px solid #E5E5E5;
	line-height: 48px;
	background-color: #FFF;
}
.upload:hover section {
	border-color: #800E12;
	color: #800E12;
}
.upload section::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 48px;
	background: url(../images/icon-clip.png) no-repeat center / 16px;
	opacity: 0.5;
}
.upload:hover section::after {
	opacity: 1;
}
.upload input {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	opacity: 0 !important;
	overflow: hidden !important;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	cursor: pointer;
}
.request-form {
	display: none;
	float: left;
	width: 100%;
	max-width: 800px;
}
.request-form .contact-form {
	width: 100%;
	margin-top: -10px;
}
/*	Start MASONRY	*/

.item {
	float: left;
	width: 25%;
	padding: 0 20px 40px 20px;
}
.photo-item {
	float: left;
	width: 100%;
	transition: all 0.25s;
}
.photo-item a {
	float: left;
	width: 100%;
	position: relative;
}
.photo-item a section {
	float: left;
	width: 100%;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}
.photo-item a section img {
	float: left;
	width: 100%;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
	transform-origin: center bottom;
	transition: all 1s;
}
.photo-item a:hover section img {
	transform: scale(1.1, 1.1);
}
.photo-item a section::after {
	content: "";
	position: absolute;
	top: 15px;
	right: 15px;
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, 0.7) url(../images/icon-expand.png) no-repeat center / 12px;
	border-radius: 50%;
	opacity: 0;
}
.photo-item a:hover section::after {
	opacity: 1;
}
.photo-item a span {
	float: left;
	width: 100%;
	margin: 11px 0 -1px 0;
	color: #999;
	font-size: 13px;
	letter-spacing: 2px;
}
/*	Start PAGINATION	*/

.pages {
	float: left;
	width: 100%;
	margin-top: 20px;
	position: relative;
	font-size: 15px;
	font-weight: 600;
	line-height: 44px;
	text-align: center;
}
.pages ul {
	width: 100%;
	margin-bottom: -15px;
}
.pages li {
	float: none;
	display: inline-block;
	padding: 0 5px;
}
.pages li a {
	float: left;
	width: 45px;
	height: 45px;
	border: 1px solid #E5E5E5;
	color: #999;
	transition: all 0.3s;
	border-radius: 20%;
}
.pages li a:hover {
	border-color: #800E12;
}
.pages li a.current {
	color: #800E12;
	border-color: #800E12;
}
.cookies-wrap {
	position: fixed;
	right: 20px;
	bottom: 20px;
	left: 20px;
	z-index: 7950;
	text-align: center;
	display: none;
}
.cookies {
	float: left;
	width: 100%;
	padding: 25px 30px 20px 30px;
	position: relative;
	background-color: rgba(0, 0, 0, 0.8);
	font-size: 12px;
	color: rgba(255, 255, 255, 0.8);
	border-radius: 5px;
}
.cookies::before {
	content: "";
	position: absolute;
	right: 15px;
	top: 15px;
	left: 15px;
	bottom: 0;
	background: url(../images/icon-cookies.png) no-repeat 0 top / 60px auto;
	opacity: 0.3;
}
.cookies section {
	float: left;
	width: 100%;
	position: relative;
}
.cookies-close {
	position: absolute;
	top: -16px;
	right: 20px;
	width: 32px;
	height: 32px;
}
.cookies-close span {
	float: left;
	width: 100%;
	height: 100%;
	position: relative;
	border-radius: 50%;
	text-indent: -9999px;
	background: #C09C61 url(../images/icon-close.png) no-repeat center / 20px;
	cursor: pointer;
	border: 2px solid #FFF;
}
.cookies-close span:hover {
	background-size: 18px;
	background-color: #000;
}
.block-flex {
	float: left;
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
}
.block-flex-content {
	flex: 1;
	padding-left: 80px;
}
.block-flex-picture {
	float: left;
	width: 100%;
	max-width: 540px;
	margin-left: auto;
	position:relative;
}
.block-flex-picture::after {
    content: "";
    position: absolute;
    top: 0;
    left: -280px;
    width: 360px;
    height: 120px;
    background-color: #fff;
    transform: skewX(-54deg);
    z-index: 20;
}
.block-flex-picture::before {
content: "";
    position: absolute;
    bottom: calc(25% - 90px);
    left: -30px;
    width: 60px;
    height: 180px;
    background-color: #800E12;
    z-index: 30;
    transform: skewY(-25deg);
    mix-blend-mode: multiply;
}
.block-flex-picture img {
	float: right;
	width: 100%;

}
@media only screen and (max-width:1560px) {
	.slider-hero-picture img {
		max-height: 560px;
	}
	.slider-hero-title strong {
		font-size: 50px;
		line-height: 60px;
	}
}
@media only screen and (max-width:1400px) {
	.wrap {
		width: 1200px;
	}
	.top-150 {
		padding-top: 100px;
	}
	.top-100 {
		padding-top: 75px;
	}
	.top-50 {
		padding-top: 35px;
	}
	.bottom-150 {
		padding-bottom: 100px;
	}
	.bottom-100 {
		padding-bottom: 75px;
	}
	.bottom-50 {
		padding-bottom: 35px;
	}
	#nav li {
		margin-right: 40px;
	}
	.footer-logo, .footer-connect {
		max-width: 360px;
	}
	.product-list li section, .product-list li a {
		padding: 19px;
	}
	.page-container::before, .page-container::after {
		left: 280px;
	}
	.sidebar {
		width: 240px;
	}
	.paket a {
		
	}
	.sidebar-content {
	
	}
}
@media only screen and (max-width:1280px) {
	.wrap {
		width: 980px;
	}
	#nav li {
		margin-right: 30px;
	}
	.slider-hero-title strong {
		font-size: 40px;
		line-height: 50px;
	}
	.page-hero-text {
		padding-right: 0;
		margin: 15px 0;
		font-size: 30px;
		line-height: 40px;
	}
	.page-summary {
		font-size: 20px;
		line-height: 35px;
	}
	.block-flex-content {
		padding-right: 50px;
	}
	.get-in-wrap {
		padding: 60px 0;
	}
	.promo>ul>li picture, .promo-content {
		width: calc(50% - 30px);
	}
	.contact-map {
		height: 480px;
	}
	.product-list li {
		width: 50%;
	}
}
@media only screen and (max-width:1023px) {
	.bsr-wrap {
		padding-top: 64px;
	}
	.wrap, .wrap-slim {
		float: left;
		width: 100%;
		padding: 0 30px;
	}
	.header {
		height: 64px;
		background-color: #FFF !important;
		backdrop-filter: none !important;
	}
	.header .wrap {
		padding: 0 7px 0 15px;
	}
	.header-in {
		display: block;
	}
	#logo {
		margin-top: 5px;
	}
	#logo img {
		height: 54px;
		padding: 7px 0;
	}
	.header-right {
		margin-top: 12px;
	}
	.header-lang-icon {
		width: 40px;
		height: 40px;
		font-size: 13px;
		line-height: 38px;
	}
	.header-lang {
		top: 46px;
		right: -5px;
	}
	.search-icon {
		margin-left: 7px;
		margin-top: -5px;
	}
	.header-search {
		top: 71px;
	}
	.nav-icon {
		float: right;
		width: 105px;
		height: 64px;
		position: relative;
		cursor: pointer;
		display: block;
	}
	.nav-icon::after {
		content: "MENU";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 58px;
		right: 0;
		color: #800E12;
		font-size: 10px;
		font-weight: 700;
		line-height: 64px;
		letter-spacing: 0;
		z-index: 100;
	}
	.nav-icon-close::after {
		color: #800E12;
	}
	.nav-icon span {
		position: absolute;
		top: 50%;
		left: 15px;
		width: 32px;
		height: 2px;
		margin-top: -1px;
		transition: all 0.5s;
	}
	.nav-icon span::before {
		content: "";
		position: absolute;
		top: -6px;
		left: 0;
		right: 0;
		height: 2px;
		background-color: #800E12;
		transition: all 0.5s;
	}
	.nav-icon span::after {
		content: "";
		position: absolute;
		bottom: -6px;
		left: 0;
		right: 6px;
		height: 2px;
		background-color: #800E12;
		transition: all 0.5s;
	}
	.nav-icon-close span {
		background-color: transparent;
	}
	.nav-icon-close span::before {
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		-o-transform: rotate(-135deg);
		-ms-transform: rotate(-135deg);
		transform: rotate(-135deg);
		background-color: #800E12;
		top: 0;
	}
	.nav-icon-close span::after {
		-webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		-o-transform: rotate(135deg);
		-ms-transform: rotate(135deg);
		transform: rotate(135deg);
		background-color: #800E12;
		bottom: 0;
		right: 0;
		height: 2px;
	}
	.nav-icon-close::before {
		content: "";
		border-bottom: 4px solid transparent;
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		height: 0;
		position: absolute;
		width: 0;
		left: 50%;
		bottom: 0;
		margin-left: -10px;
		border-bottom-color: #800E12;
	}
	#nav {
		position: fixed;
		top: 64px;
		bottom: 0;
		left: 0;
		right: 0;
		width: auto;
		height: calc(100vh - 64px);
		padding: 30px 30px 130px 30px;
		background-color: #800E12;
		overflow-y: auto;
		z-index: 200;
		display: none;
	}
	#nav ul {
		width: 100%;
		border-top: 1px solid rgba(255, 255, 255, 0.06);
	}
	#nav li {
		width: 100%;
		position: relative;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	}
	#nav li.nav-multi::before {
		content: "";
		position: absolute;
		left: auto;
		top: 0;
		right: 0;
		width: 40px;
		height: 60px;
		background: url(../images/arrow-white-down.png) no-repeat center 52%;
		background-size: 14px auto;
		opacity: 0.7;
	}
	#nav li>a {
		width: 100%;
		padding: 0 20px;
		color: #FFF;
		font-size: 18px;
		line-height: 60px;
	}
	#nav li>a:hover, #nav li>a.active {
		box-shadow: none;
	}
	#nav li>a.active {
		color: #fff;
	}
	#nav li>a.active::after {
		display: none;
	}
	#nav>ul li span {
		float: left;
		width: 100% !important;
		position: relative;
		top: auto;
		left: auto;
		box-shadow: none;
	}
	#nav li span::before {
		border-bottom-color: #FFF;
	}
	#nav>ul li span a {
		padding: 14px 15px;
		font-weight: 500;
	}
	#nav>ul li span a img {
		width: 48px;
		height: 48px;
	}
	.nav-opened {
		overflow: hidden;
	}
	.top-150 {
		padding-top: 75px;
	}
	.top-100 {
		padding-top: 50px;
	}
	.top-50 {
		padding-top: 25px;
	}
	.bottom-150 {
		padding-bottom: 75px;
	}
	.bottom-100 {
		padding-bottom: 50px;
	}
	.bottom-50 {
		padding-bottom: 25px;
	}
	.slider-hero-picture img {
		max-height: 360px;
		margin-top: 10px;
	}
	.slider-hero-title-in {
		width: 50%;
	}
	.slider-hero-title section {
		font-size: 11px;
	}
	.slider-hero-title strong {
		margin: 14px 0 21px 0;
		font-size: 30px;
		line-height: 40px;
	}
	.slider-hero ul.slick-dots {
		padding-bottom: 5px;
	}
	.slider-hero .link-all a {
		height: 40px;
		padding: 0 15px 0 20px;
		letter-spacing: 0.5px;
		line-height: 41px;
	}
	.slider-hero .link-all a::after {
		height: 40px;
	}
	.page-title-top {
		margin-top: 41px;
	}
	.page-title-bottom {
		margin-bottom: 19px;
	}
	.blog-list li {
		width: 50%;
	}
	.get-in-wrap, .copyright {
		padding: 40px 0;
	}
	.footer {
		padding: 30px 0 40px 0;
		display: block;
	}
	.footer-logo, .footer-connect {
		width: 100%;
		max-width: initial;
	}
	.footer-logo>picture {
		width: auto;
		margin-bottom: 0;
	}
	.footer-logo>picture img {
		height: 50px;
	}
	.contact-info section .footer-share {
		float: left;
	}
	.footer-share {
		margin-top:25px;
	}
	.footer-links {
		float: left;
		width: 100%;
		padding: 20px 0 10px 0;
	}
	.breadcrumb {
		height: 50px;
		padding: 5px 0;
		font-size: 12px;
		letter-spacing: 0.5px;
	}
	.sidebar-icon {
		float: left;
		width: 100%;
		height: 45px;
		margin-top: 30px;
		font-size: 13px;
		font-weight: 700;
		color: #930E0F;
		letter-spacing: 2px;
		line-height: 45px;
		cursor: pointer;
		position: relative;
		background: #E8F3F4 url(../images/icon-menu.png) no-repeat 16px center / 22px auto;
		z-index: 90;
		display: block;
		text-align: center;
		border-radius: 6px;
	}
	.sidebar-icon-close {
		background-color: #930E0F !important;
		color: #FFF !important;
	}
	.sidebar-icon::after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		right: 15px;
		width: 16px;
		background: url(../images/arrow-down.png) no-repeat center / 14px auto;
		transition: all 0.25s;
	}
	.sidebar-icon-close::after {
		transform: rotate(180deg);
		background-image: url(../images/arrow-white-down.png);
	}
	.page-container::before, .page-container::after {
		display: none;
	}
	.sidebar {
		width: 100%;
		padding: 20px 0;
		display: none;
	}
	.sidebar-menu ul li a::before, .sidebar-menu ul li a.active::after, .sidebar-menu ul li a:hover::after {
		left: -15px;
	}
	.sidebar-content {
		width: 100%;
	}
	.product-list .inner-15 {
		margin: 0 -10px;
	}
	.product-list li {
		padding: 0 10px;
		margin-bottom: 20px;
	}
	.gallery li {
		width: 50%;
	}
}
@media only screen and (max-width:767px) {
	.wrap, .wrap-slim {
		padding: 0 20px;
	}
	.cookies-wrap {
		right: 5px;
		bottom: 5px;
		left: 5px;
	}
	.slider-hero-title section {
		display: none;
	}
	.slider-hero-title strong {
		margin-top: 0;
	}
	.blog-item section {
		width: calc(100% - 40px);
		padding: 25px 20px;
		margin-left: 20px;
	}
	.block-flex {
		display: block;
	}
	.block-flex-content {
		width: 100%;
		padding-right: 0;
		padding-left:0px;
		padding-top:50px;
	}
	.block-flex-picture {
		width: 100%;
		max-width: initial;
		margin-bottom: 30px;
		padding-top:0px;
	}
	.get-in-wrap .block-flex-picture {
		display: none;
	}
	.page-title {
		font-size: 32px;
		line-height: 40px;
	}
	.page-title-top {
		margin-top: 39px;
	}
	.page-title-bottom {
		margin-bottom: 16px;
	}
	.connect-whatsapp {
		bottom: 14px;
		right: 14px;
	}
	.promo>ul>li {
		flex-flow: column;
	}
	.promo>ul>li picture, .promo-content {
		width: 100%;
		max-width: initial;
	}
	.promo>ul>li picture {
		margin-bottom: 35px;
	}
	.promo>ul>li:nth-child(even) picture {
		order: 1;
	}
	.promo>ul>li:nth-child(even) .promo-content {
		order: 2;
	}
	.sidebar-icon {
		margin-top: 20px;
	}
	.slider-product-wrap {
		margin-top: 0;
	}
	.slider-pro-item a {
		height: 250px;
	}
}
@media only screen and (max-width:640px) {
	.header-search {
		width: auto;
		max-width: initial;
		left: -8px;
	}
	.copyright {
		padding: 30px 0;
		display: block;
	}
	.copyright .fl {
		width: 100%;
		padding-right: 0;
	}
	.copyright .fr {
		width: 100%;
		margin-top: 10px;
	}
	.sub-hero {
		max-height: 150px;
		min-height: 100px;
	}
	.product-specs {
		font-size: 13px;
		overflow: hidden;
		overflow-x: auto;
	}
}
@media only screen and (max-width:540px) {
	.slider-hero-title strong {
		margin-bottom: 14px;
		font-size: 20px;
		line-height: 25px;
		letter-spacing: 0;
	}
	.page-hero-text {
		margin: 10px 0;
		font-size: 24px;
		line-height: 35px;
	}
	.blog-list li, .form-item, .form-item .button, .product-list li {
		width: 100%;
	}
	.form-item {
		padding-bottom: 20px;
	}
	.slider-hero-title strong {
		font-size: 18px;
		line-height: 24px;
		font-weight: 700;
	}
	.slider-hero-picture img {
		margin-top: 20px;
		margin-bottom: 10px;
	}
	.slider-hero ul.slick-dots {
		padding-bottom: 0;
	}
	.slider-hero .link-all {
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 30px;
	}
	.slider-hero .link-all a {
		width: 100%;
		height: 100%;
		padding: 0;
		opacity: 0;
	}
	.contact-map {
		height: 320px;
	}
	.contact-info {
		margin-bottom: 30px;
	}
	.contact-info section {
		width: 100%;
		margin-bottom: 22px;
	}
	.slider-pro-item a {
		height: 200px;
	}
	.slider-product .slick-prev {
		left: -20px;
	}
	.slider-product .slick-next {
		right: -20px;
	}
	.gallery li a::after {
		top: 10px;
		right: 10px;
		width: 24px;
		height: 24px;
		background-color: #FFF;
		background-size: 10px;
	}
}
@media only screen and (max-width:440px) {
	.nav-icon {
		width: 64px;
		margin-right: 5px;
	}
	.nav-icon::after {
		display: none;
	}
}
@media only screen and (max-width:374px) {}
body.compensate-for-scrollbar {
	overflow: hidden;
}
.fancybox-active {
	height: auto;
}
.fancybox-is-hidden {
	left: -9999px;
	margin: 0;
	position: absolute !important;
	top: -9999px;
	visibility: hidden;
}
.fancybox-container {
	-webkit-backface-visibility: hidden;
	height: 100%;
	left: 0;
	outline: none;
	position: fixed;
	-webkit-tap-highlight-color: transparent;
	top: 0;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	transform: translateZ(0);
	width: 100%;
	z-index: 99992;
}
.fancybox-container * {
	box-sizing: border-box;
}
.fancybox-outer, .fancybox-inner, .fancybox-bg, .fancybox-stage {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}
.fancybox-outer {
	-webkit-overflow-scrolling: touch;
	overflow-y: auto;
}
.fancybox-bg {
	background: rgb(30, 30, 30);
	opacity: 0;
	transition-duration: inherit;
	transition-property: opacity;
	transition-timing-function: cubic-bezier(.47, 0, .74, .71);
}
.fancybox-is-open .fancybox-bg {
	opacity: .9;
	transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}
.fancybox-infobar, .fancybox-toolbar, .fancybox-caption, .fancybox-navigation .fancybox-button {
	direction: ltr;
	opacity: 0;
	position: absolute;
	transition: opacity .25s ease, visibility 0s ease .25s;
	visibility: hidden;
	z-index: 99997;
}
.fancybox-show-infobar .fancybox-infobar, .fancybox-show-toolbar .fancybox-toolbar, .fancybox-show-caption .fancybox-caption, .fancybox-show-nav .fancybox-navigation .fancybox-button {
	opacity: 1;
	transition: opacity .25s ease 0s, visibility 0s ease 0s;
	visibility: visible;
}
.fancybox-infobar {
	color: #ccc;
	font-size: 13px;
	-webkit-font-smoothing: subpixel-antialiased;
	height: 44px;
	left: 0;
	line-height: 44px;
	min-width: 44px;
	mix-blend-mode: difference;
	padding: 0 10px;
	pointer-events: none;
	top: 0;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.fancybox-toolbar {
	right: 0;
	top: 0;
}
.fancybox-stage {
	direction: ltr;
	overflow: visible;
	transform: translateZ(0);
	z-index: 99994;
}
.fancybox-is-open .fancybox-stage {
	overflow: hidden;
}
.fancybox-slide {
	-webkit-backface-visibility: hidden;
	/* Using without prefix would break IE11 */
	display: none;
	height: 100%;
	left: 0;
	outline: none;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	padding: 44px;
	position: absolute;
	text-align: center;
	top: 0;
	transition-property: transform, opacity;
	white-space: normal;
	width: 100%;
	z-index: 99994;
}
.fancybox-slide::before {
	content: '';
	display: inline-block;
	font-size: 0;
	height: 100%;
	vertical-align: middle;
	width: 0;
}
.fancybox-is-sliding .fancybox-slide, .fancybox-slide--previous, .fancybox-slide--current, .fancybox-slide--next {
	display: block;
}
.fancybox-slide--image {
	overflow: hidden;
	padding: 44px 0;
}
.fancybox-slide--image::before {
	display: none;
}
.fancybox-slide--html {
	padding: 6px;
}
.fancybox-content {
	background: #fff;
	display: inline-block;
	margin: 0;
	max-width: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	padding: 44px;
	position: relative;
	text-align: left;
	vertical-align: middle;
}
.fancybox-slide--image .fancybox-content {
	animation-timing-function: cubic-bezier(.5, 0, .14, 1);
	-webkit-backface-visibility: hidden;
	background: transparent;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	left: 0;
	max-width: none;
	overflow: visible;
	padding: 0;
	position: absolute;
	top: 0;
	-ms-transform-origin: top left;
	transform-origin: top left;
	transition-property: transform, opacity;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 99995;
}
.fancybox-can-zoomOut .fancybox-content {
	cursor: zoom-out;
}
.fancybox-can-zoomIn .fancybox-content {
	cursor: zoom-in;
}
.fancybox-can-swipe .fancybox-content, .fancybox-can-pan .fancybox-content {
	cursor: -webkit-grab;
	cursor: grab;
}
.fancybox-is-grabbing .fancybox-content {
	cursor: -webkit-grabbing;
	cursor: grabbing;
}
.fancybox-container [data-selectable='true'] {
	cursor: text;
}
.fancybox-image, .fancybox-spaceball {
	background: transparent;
	border: 0;
	height: 100%;
	left: 0;
	margin: 0;
	max-height: none;
	max-width: none;
	padding: 0;
	position: absolute;
	top: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 100%;
}
.fancybox-spaceball {
	z-index: 1;
}
.fancybox-slide--video .fancybox-content, .fancybox-slide--map .fancybox-content, .fancybox-slide--pdf .fancybox-content, .fancybox-slide--iframe .fancybox-content {
	height: 100%;
	overflow: visible;
	padding: 0;
	width: 100%;
}
.fancybox-slide--video .fancybox-content {
	background: #000;
}
.fancybox-slide--map .fancybox-content {
	background: #e5e3df;
}
.fancybox-slide--iframe .fancybox-content {
	background: #fff;
}
.fancybox-video, .fancybox-iframe {
	background: transparent;
	border: 0;
	display: block;
	height: 100%;
	margin: 0;
	overflow: hidden;
	padding: 0;
	width: 100%;
}
/* Fix iOS */

.fancybox-iframe {
	left: 0;
	position: absolute;
	top: 0;
}
.fancybox-error {
	background: #fff;
	cursor: default;
	max-width: 400px;
	padding: 40px;
	width: 100%;
}
.fancybox-error p {
	color: #444;
	font-size: 16px;
	line-height: 20px;
	margin: 0;
	padding: 0;
}
/* Buttons */

.fancybox-button {
	background: rgba(30, 30, 30, .6);
	border: 0;
	border-radius: 0;
	box-shadow: none;
	cursor: pointer;
	display: inline-block;
	height: 44px;
	margin: 0;
	padding: 10px;
	position: relative;
	transition: color .2s;
	vertical-align: top;
	visibility: inherit;
	width: 44px;
}
.fancybox-button, .fancybox-button:visited, .fancybox-button:link {
	color: #ccc;
}
.fancybox-button:hover {
	color: #fff;
}
.fancybox-button:focus {
	outline: none;
}
.fancybox-button.fancybox-focus {
	outline: 1px dotted;
}
.fancybox-button[disabled], .fancybox-button[disabled]:hover {
	color: #888;
	cursor: default;
	outline: none;
}
/* Fix IE11 */

.fancybox-button div {
	height: 100%;
}
.fancybox-button svg {
	display: block;
	height: 100%;
	overflow: visible;
	position: relative;
	width: 100%;
}
.fancybox-button svg path {
	fill: currentColor;
	stroke-width: 0;
}
.fancybox-button--play svg:nth-child(2), .fancybox-button--fsenter svg:nth-child(2) {
	display: none;
}
.fancybox-button--pause svg:nth-child(1), .fancybox-button--fsexit svg:nth-child(1) {
	display: none;
}
.fancybox-progress {
	background: #800E12;
	height: 2px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-ms-transform-origin: 0;
	transform-origin: 0;
	transition-property: transform;
	transition-timing-function: linear;
	z-index: 99998;
}
/* Close button on the top right corner of html content */

.fancybox-close-small {
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #ccc;
	cursor: pointer;
	opacity: .8;
	padding: 8px;
	position: absolute;
	right: -12px;
	top: -44px;
	z-index: 401;
}
.fancybox-close-small:hover {
	color: #fff;
	opacity: 1;
}
.fancybox-slide--html .fancybox-close-small {
	color: currentColor;
	padding: 10px;
	right: 0;
	top: 0;
}
.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
	overflow: hidden;
}
.fancybox-is-scaling .fancybox-close-small, .fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
	display: none;
}
/* Navigation arrows */

.fancybox-navigation .fancybox-button {
	background-clip: content-box;
	height: 100px;
	opacity: 0;
	position: absolute;
	top: calc(50% - 50px);
	width: 70px;
}
.fancybox-navigation .fancybox-button div {
	padding: 7px;
}
.fancybox-navigation .fancybox-button--arrow_left {
	left: 0;
	left: env(safe-area-inset-left);
	padding: 31px 26px 31px 6px;
}
.fancybox-navigation .fancybox-button--arrow_right {
	padding: 31px 6px 31px 26px;
	right: 0;
	right: env(safe-area-inset-right);
}
/* Caption */

.fancybox-caption {
	background: linear-gradient( to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .15) 65%, rgba(0, 0, 0, .075) 75.5%, rgba(0, 0, 0, .037) 82.85%, rgba(0, 0, 0, .019) 88%, rgba(0, 0, 0, 0) 100%);
	bottom: 0;
	color: #eee;
	font-size: 14px;
	font-weight: 400;
	left: 0;
	line-height: 1.5;
	padding: 75px 44px 25px 44px;
	pointer-events: none;
	right: 0;
	text-align: center;
	z-index: 99996;
}
@supports (padding: max(0px)) {
	.fancybox-caption {
		padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
	}
}
.fancybox-caption--separate {
	margin-top: -50px;
}
.fancybox-caption__body {
	max-height: 50vh;
	overflow: auto;
	pointer-events: all;
}
.fancybox-caption a, .fancybox-caption a:link, .fancybox-caption a:visited {
	color: #ccc;
	text-decoration: none;
}
.fancybox-caption a:hover {
	color: #fff;
	text-decoration: underline;
}
/* Loading indicator */

.fancybox-loading {
	animation: fancybox-rotate 1s linear infinite;
	background: transparent;
	border: 4px solid #888;
	border-bottom-color: #fff;
	border-radius: 50%;
	height: 50px;
	left: 50%;
	margin: -25px 0 0 -25px;
	opacity: .7;
	padding: 0;
	position: absolute;
	top: 50%;
	width: 50px;
	z-index: 99999;
}
@keyframes fancybox-rotate {
	100% {
		transform: rotate(360deg);
	}
}
/* Transition effects */

.fancybox-animated {
	transition-timing-function: cubic-bezier(0, 0, .25, 1);
}
/* transitionEffect: slide */

.fancybox-fx-slide.fancybox-slide--previous {
	opacity: 0;
	transform: translate3d(-100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--next {
	opacity: 0;
	transform: translate3d(100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--current {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}
/* transitionEffect: fade */

.fancybox-fx-fade.fancybox-slide--previous, .fancybox-fx-fade.fancybox-slide--next {
	opacity: 0;
	transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}
.fancybox-fx-fade.fancybox-slide--current {
	opacity: 1;
}
/* transitionEffect: zoom-in-out */

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
	opacity: 0;
	transform: scale3d(1.5, 1.5, 1.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--next {
	opacity: 0;
	transform: scale3d(.5, .5, .5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--current {
	opacity: 1;
	transform: scale3d(1, 1, 1);
}
/* transitionEffect: rotate */

.fancybox-fx-rotate.fancybox-slide--previous {
	opacity: 0;
	-ms-transform: rotate(-360deg);
	transform: rotate(-360deg);
}
.fancybox-fx-rotate.fancybox-slide--next {
	opacity: 0;
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}
.fancybox-fx-rotate.fancybox-slide--current {
	opacity: 1;
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
}
/* transitionEffect: circular */

.fancybox-fx-circular.fancybox-slide--previous {
	opacity: 0;
	transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--next {
	opacity: 0;
	transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--current {
	opacity: 1;
	transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}
/* transitionEffect: tube */

.fancybox-fx-tube.fancybox-slide--previous {
	transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
}
.fancybox-fx-tube.fancybox-slide--next {
	transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
}
.fancybox-fx-tube.fancybox-slide--current {
	transform: translate3d(0, 0, 0) scale(1);
}
/* Styling for Small-Screen Devices */

@media all and (max-height: 576px) {
	.fancybox-slide {
		padding-left: 6px;
		padding-right: 6px;
	}
	.fancybox-slide--image {
		padding: 6px 0;
	}
	.fancybox-close-small {
		right: -6px;
	}
	.fancybox-slide--image .fancybox-close-small {
		background: #4e4e4e;
		color: #f2f4f6;
		height: 36px;
		opacity: 1;
		padding: 6px;
		right: 0;
		top: 0;
		width: 36px;
	}
	.fancybox-caption {
		padding-left: 12px;
		padding-right: 12px;
	}
	@supports (padding: max(0px)) {
		.fancybox-caption {
			padding-left: max(12px, env(safe-area-inset-left));
			padding-right: max(12px, env(safe-area-inset-right));
		}
	}
}
/* Share */

.fancybox-share {
	background: #f4f4f4;
	border-radius: 3px;
	max-width: 90%;
	padding: 30px;
	text-align: center;
}
.fancybox-share h1 {
	color: #222;
	font-size: 35px;
	font-weight: 700;
	margin: 0 0 20px 0;
}
.fancybox-share p {
	margin: 0;
	padding: 0;
}
.fancybox-share__button {
	border: 0;
	border-radius: 3px;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	line-height: 40px;
	margin: 0 5px 10px 5px;
	min-width: 130px;
	padding: 0 15px;
	text-decoration: none;
	transition: all .2s;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
}
.fancybox-share__button:visited, .fancybox-share__button:link {
	color: #fff;
}
.fancybox-share__button:hover {
	text-decoration: none;
}
.fancybox-share__button--fb {
	background: #3b5998;
}
.fancybox-share__button--fb:hover {
	background: #344e86;
}
.fancybox-share__button--pt {
	background: #bd081d;
}
.fancybox-share__button--pt:hover {
	background: #aa0719;
}
.fancybox-share__button--tw {
	background: #1da1f2;
}
.fancybox-share__button--tw:hover {
	background: #0d95e8;
}
.fancybox-share__button svg {
	height: 25px;
	margin-right: 7px;
	position: relative;
	top: -1px;
	vertical-align: middle;
	width: 25px;
}
.fancybox-share__button svg path {
	fill: #fff;
}
.fancybox-share__input {
	background: transparent;
	border: 0;
	border-bottom: 1px solid #d7d7d7;
	border-radius: 0;
	color: #5d5b5b;
	font-size: 14px;
	margin: 10px 0 0 0;
	outline: none;
	padding: 10px 15px;
	width: 100%;
}
/* Thumbs */

.fancybox-thumbs {
	background: #ddd;
	bottom: 0;
	display: none;
	margin: 0;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	padding: 2px 2px 4px 2px;
	position: absolute;
	right: 0;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	top: 0;
	width: 212px;
	z-index: 99995;
}
.fancybox-thumbs-x {
	overflow-x: auto;
	overflow-y: hidden;
}
.fancybox-show-thumbs .fancybox-thumbs {
	display: block;
}
.fancybox-show-thumbs .fancybox-inner {
	right: 212px;
}
.fancybox-thumbs__list {
	font-size: 0;
	height: 100%;
	list-style: none;
	margin: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0;
	position: absolute;
	position: relative;
	white-space: nowrap;
	width: 100%;
}
.fancybox-thumbs-x .fancybox-thumbs__list {
	overflow: hidden;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
	width: 7px;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
	background: #fff;
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
	background: #2a2a2a;
	border-radius: 10px;
}
.fancybox-thumbs__list a {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: rgba(0, 0, 0, .1);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	cursor: pointer;
	float: left;
	height: 75px;
	margin: 2px;
	max-height: calc(100% - 8px);
	max-width: calc(50% - 4px);
	outline: none;
	overflow: hidden;
	padding: 0;
	position: relative;
	-webkit-tap-highlight-color: transparent;
	width: 100px;
}
.fancybox-thumbs__list a::before {
	border: 6px solid #C09C62;
	bottom: 0;
	content: '';
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: all .2s cubic-bezier(.25, .46, .45, .94);
	z-index: 99991;
}
.fancybox-thumbs__list a:focus::before {
	opacity: .5;
}
.fancybox-thumbs__list a.fancybox-thumbs-active::before {
	opacity: 1;
}
/* Styling for Small-Screen Devices */

@media all and (max-width: 576px) {
	.fancybox-thumbs {
		width: 110px;
	}
	.fancybox-show-thumbs .fancybox-inner {
		right: 110px;
	}
	.fancybox-thumbs__list a {
		max-width: calc(100% - 10px);
	}
}
.fancybox-button--thumbs {
	display: none !important;
}
.gallery-swiper-wrapper {
	float: left;
	width: 100%;
	position: relative;
	overflow: hidden;
}
.gallery-swiper-container {
	float: left;
	width: 100%;
	position: relative;
}
.gallery-swiper-bg::before {
	content: "";
	position: absolute;
	top: calc(50% - 20px);
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fbfbfb;
}
.swiper-container {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	list-style: none;
	padding: 0;
	z-index: 1
}
.swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}
.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}
.swiper-container-android .swiper-slide, .swiper-wrapper {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}
.swiper-container-multirow>.swiper-wrapper {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}
.swiper-container-multirow-column>.swiper-wrapper {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}
.swiper-container-free-mode>.swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto
}
.swiper-slide {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform
}
.swiper-slide-invisible-blank {
	visibility: hidden
}
.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
	height: auto
}
.swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height, -webkit-transform;
	transition-property: height, -webkit-transform;
	transition-property: transform, height;
	transition-property: transform, height, -webkit-transform
}
.swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px
}
.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d
}
.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10
}
.swiper-container-3d .swiper-slide-shadow-left {
	background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
	background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}
.swiper-container-3d .swiper-slide-shadow-right {
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
	background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}
.swiper-container-3d .swiper-slide-shadow-top {
	background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
	background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}
.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}
.swiper-container-css-mode>.swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none
}
.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
	display: none
}
.swiper-container-css-mode>.swiper-wrapper>.swiper-slide {
	scroll-snap-align: start start
}
.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper {
	-webkit-scroll-snap-type: x mandatory;
	-ms-scroll-snap-type: x mandatory;
	scroll-snap-type: x mandatory
}
.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper {
	-webkit-scroll-snap-type: y mandatory;
	-ms-scroll-snap-type: y mandatory;
	scroll-snap-type: y mandatory
}
.swiper-pagination {
	position: absolute;
	text-align: center;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	z-index: 10
}
.swiper-pagination.swiper-pagination-hidden {
	opacity: 0
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: 10px;
	left: 0;
	width: 100%
}
.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transform: scale(.33);
	transform: scale(.33);
	position: relative
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	-webkit-transform: scale(1);
	transform: scale(1)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	-webkit-transform: scale(1);
	transform: scale(1)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	-webkit-transform: scale(.66);
	transform: scale(.66)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	-webkit-transform: scale(.33);
	transform: scale(.33)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	-webkit-transform: scale(.66);
	transform: scale(.66)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	-webkit-transform: scale(.33);
	transform: scale(.33)
}
.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 100%;
	background: #000;
	opacity: .2
}
button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}
.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer
}
.swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--swiper-pagination-color, var(--swiper-theme-color))
}
.swiper-container-vertical>.swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0)
}
.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 6px 0;
	display: block
}
.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 8px
}
.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	display: inline-block;
	-webkit-transition: top .2s, -webkit-transform .2s;
	transition: top .2s, -webkit-transform .2s;
	transition: transform .2s, top .2s;
	transition: transform .2s, top .2s, -webkit-transform .2s
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 4px
}
.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	white-space: nowrap
}
.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transition: left .2s, -webkit-transform .2s;
	transition: left .2s, -webkit-transform .2s;
	transition: transform .2s, left .2s;
	transition: transform .2s, left .2s, -webkit-transform .2s
}
.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transition: right .2s, -webkit-transform .2s;
	transition: right .2s, -webkit-transform .2s;
	transition: transform .2s, right .2s;
	transition: transform .2s, right .2s, -webkit-transform .2s
}
.swiper-pagination-progressbar {
	background: rgba(0, 0, 0, .25);
	position: absolute
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: left top;
	transform-origin: left top
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	-webkit-transform-origin: right top;
	transform-origin: right top
}
.swiper-container-horizontal>.swiper-pagination-progressbar, .swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0
}
.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical>.swiper-pagination-progressbar {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0
}
.swiper-pagination-red {
	--swiper-pagination-color: #dc3545
}
.swiper-pagination-white {
	--swiper-pagination-color: #fff
}
.swiper-pagination-black {
	--swiper-pagination-color: #000
}
.swiper-pagination-gray10 {
	--swiper-pagination-color: #1a1a1a
}
.swiper-pagination-gray70 {
	--swiper-pagination-color: #b3b3b3
}
.swiper-pagination-gray95 {
	--swiper-pagination-color: #f2f2f2
}
.swiper-pagination-lock {
	display: none
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out
}
.swiper-container-fade .swiper-slide {
	pointer-events: none;
	-webkit-transition-property: opacity;
	transition-property: opacity
}
.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none
}
.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}
.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0, 0, 0, .1)
}
.swiper-container-horizontal>.swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%
}
.swiper-container-vertical>.swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%
}
.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0, 0, 0, .5);
	border-radius: 10px;
	left: 0;
	top: 0
}
.swiper-scrollbar-cursor-drag {
	cursor: move
}
.swiper-scrollbar-lock {
	display: none
}
@-webkit-keyframes bs-notify-fadeOut {
	0% {
		opacity: .9
	}
	100% {
		opacity: 0
	}
}
@keyframes bs-notify-fadeOut {
	0% {
		opacity: .9
	}
	100% {
		opacity: 0
	}
}
.c-scrollbar {
	z-index: 1080
}
.c-scrollbar_thumb {
	background-color: gray
}
.swiper-scrollbar {
	background-color: rgba(0, 0, 0, 0.1);
	cursor: pointer !important;
	border-radius: 0
}
.swiper-scrollbar:before {
	content: '';
	position: absolute;
	top: -5px;
	left: 0;
	right: 0;
	bottom: -5px;
	z-index: -1
}
.swiper-scrollbar-drag {
	background-color: #800E12;
	border-radius: 0;
}
.swiper-scrollbar-drag:before {
	content: '';
	position: absolute;
	top: -5px;
	left: 0;
	right: 0;
	bottom: -5px;
	z-index: -1
}
.swiper-container-horizontal>.swiper-scrollbar {
	left: 0;
	right: 0;
	width: auto;
	height: 2px;
	bottom: 1px
}
.swiper-gallery .swiper-container {
	padding-bottom: 40px;
	overflow: visible;
}
.swiper-gallery .swiper-container {
	will-change: transform
}
[data-scroll-container] .swiper-gallery .swiper-container {
	opacity: .001;
	-webkit-transform: translateY(2rem);
	transform: translateY(2rem);
	-webkit-transition: opacity .4s, -webkit-transform .1s cubic-bezier(.215, .61, .355, 1) .4s;
	transition: opacity .4s, -webkit-transform .1s cubic-bezier(.215, .61, .355, 1) .4s;
	transition: transform .1s cubic-bezier(.215, .61, .355, 1) .4s, opacity .4s;
	transition: transform .1s cubic-bezier(.215, .61, .355, 1) .4s, opacity .4s, -webkit-transform .1s cubic-bezier(.215, .61, .355, 1) .4s
}
.swiper-gallery .swiper-container.is-inview {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
	-webkit-transition: opacity .8s .2s, -webkit-transform .8s cubic-bezier(.215, .61, .355, 1) .2s;
	transition: opacity .8s .2s, -webkit-transform .8s cubic-bezier(.215, .61, .355, 1) .2s;
	transition: transform .8s cubic-bezier(.215, .61, .355, 1) .2s, opacity .8s .2s;
	transition: transform .8s cubic-bezier(.215, .61, .355, 1) .2s, opacity .8s .2s, -webkit-transform .8s cubic-bezier(.215, .61, .355, 1) .2s
}
.swiper-gallery .swiper-slide {
	width: auto;
}
.swiper-gallery .swiper-slide:not(:last-child) {
	padding-right: 40px;
}
.gallery-figure {
	float: left;
	position: relative;

	border-radius: 6px;
	overflow: hidden;
}
.gallery-figure a {
	float: left;
	width: 100%;
	position: relative;
	color: #FFF;
}
.gallery-figure a img {
	float: left;
	height: 50vh;
	max-height: 400px;
	min-height: 320px;
}
.gallery-figure a::after {
	content: "";
	position: absolute;
	top: -140px;
	left: -130px;
	width: 200px;
	height: 200px;
	opacity: 1;
	transform: rotate(-45deg);
	box-shadow: -2px 0 0 #FFF;
	background:#fff;
	transition: all 0.3s;
}

.gallery-figure a strong {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 25px 30px;
	font-size: 20px;
	font-weight: 600;
	background-image: linear-gradient(180deg, rgba(39, 81, 165, 0.0), rgb(0 0 0 / 65%));
}
.gallery-figure a strong::before {
	content: "";
	position: absolute;
	left: 30px;
	top: 0;
	width: 30px;
	height: 2px;
	background-color: #FFF;
	opacity: 0.5;
	transition: all 0.4s;
}
.gallery-figure a:hover strong::before {
	width: calc(100% - 60px);
	opacity: 1;
}
.swiper-gallery-image {
	-webkit-transition: opacity .6s;
	transition: opacity .6s;
	opacity: .001;
	height: 70vw;
	width: auto;
	max-width: 100%
}
.swiper-gallery-image.lazyloaded {
	opacity: 1
}
@media only screen and (max-width:1280px) {
	.swiper-gallery .swiper-slide:not(:last-child) {
		padding-right: 30px;
	}
	.swiper-gallery .swiper-container {
		padding-bottom: 30px;
	}
}
@media only screen and (max-width:767px) {
	.swiper-gallery .swiper-slide:not(:last-child) {
		padding-right: 20px;
	}
	.swiper-gallery .swiper-container {
		padding-bottom: 20px;
	}
	.gallery-figure a img {
		height: 300px;
		max-height: initial;
		min-height: initial;
	}
}
.product-specs ul{width:100%;}
.product-specs li{ width:100%;font-weight: 700; border-bottom: 1px solid rgba(0, 0, 0, 0.06);padding: 10px 15px;}

.product-specs li:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.03);
}
.gallery .inner-5 li section {position:relative;}
.gallery .inner-5 li section::before{
       content: "";
    position: absolute;

width:100%;
height:100%;
   
  background-image: linear-gradient(180deg, rgba(39, 81, 165, 0.0), rgb(0 0 0 / 60%));
    transition: all 0.3s;
}