* {
	--color-a: #007CD6;
	--color-b: #292929;
	--color-background-dark: #4A4A4A;
}
*::-webkit-input-placeholder {
	opacity: .7;
}
*:-moz-placeholder {
	opacity: .7;
}
*::-moz-placeholder {
	opacity: .7;
}
*:-ms-input-placeholder {
	opacity: .7;
}
body {
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
	font-family: 'Manrope', sans-serif;
	font-weight: 400;
	color: var(--color-b);
	font-size: 17px;
	line-height: 1.4;
}
body.noscroll {
    overflow: hidden;
}
* {
	outline: none !important;
}
img {
	max-width: 100%;
	height: auto;
}
h1,h2,h3,h4,h5,h6 {
	font-weight: 700;
	color: var(--color-b);
}
h1 {
	font-size: 2rem;
}
h2 {
	font-size: 1.75rem;
}
h3 {
	font-size: 1.5rem;
}
h4 {
	font-size: 1.25rem;
}
h5 {
	font-size: 1rem;
}
h6 {
	font-size: 0.75rem;
}
a,a:hover,a:focus {
	color: var(--color-a);
}
ul {
	list-style-type: square;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.4);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all .2s linear;
}
.overlay.active {
	opacity: 1;
	visibility: visible;
}
.mobile-menu {
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 300px;
    background: var(--color-a);
    z-index: 1000;
    transition: all .2s linear;
    opacity: 0;
    transform: translateX(-100%);
    visibility: hidden;
    padding-top: 55px;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
.mobile-menu.active {
    opacity: 1;
    transform: none;
    visibility: visible;
}
.mobile-menu__close {
	width: 35px;
    height: 35px;
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mobile-menu__close img {
	width: 30px;
	height: 30px;
}
.mobile-menu__nav {
	border-top: 1px solid rgba(255,255,255,.3);
	width: 100%;
}
.mobile-menu__nav ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	padding-top: 20px;
}
.mobile-menu__nav ul li a {
	color: #fff;
	display: block;
	padding: 10px 30px;
	font-weight: 700;
	font-size: 17px;
	text-decoration: none;
}
.mobile-menu__bottom {
	width: 100%;
	padding: 30px;
}
.mobile-menu__phone,
a.mobile-menu__phone {
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
}
.mobile-menu__email,
a.mobile-menu__email {
	color: #fff;
	text-decoration: none;
	font-weight: 400;
	font-size: 16px;
}
.main-header {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.main-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(106.12deg, rgba(7, 7, 7, 0.75) -18.19%, rgb(24 24 24 / 40%) 116.76%);
}
.header-line {
	border-bottom: 1px solid rgba(255,255,255,.4);
	position: relative;
}
.header-line_wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 35px 0;
}
.header-line__nav > ul {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.header-line__nav > ul > li > a {
	display: block;
	color: #fff;
	text-decoration: none;
	margin: 0 20px;
	position: relative;
	font-size: 20px;
}
.header-line__nav > ul > li > a::before {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
	visibility: hidden;
	opacity: 0;
	transition: all .3s linear;
}
.header-line__nav > ul > li > a:hover::before {
	opacity: 1;
	visibility: visible;
	bottom: -2px;
}
.header-line__contacts {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
}
.header-line__phones {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-line__social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.header-line__social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 3px;
    width: 26px;
}
.header-line__phone,
a.header-line__phone {
	text-decoration: none;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	display: block;
}
.header-line__email,
a.header-line__email {
	color: #fff;
	text-decoration: underline;
	display: block;
	font-weight: 400;
	font-size: 18px;
}
.header-line__toggle {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.header-line__toggle span {
	width: 26px;
	height: 3px;
	background: #fff;
	display: block;
	margin: 3px 0;
}
.header-content {
	padding: 150px 0 200px;
	position: relative;
}
.header-content__title {
	color: #fff;
	text-transform: uppercase;
	max-width: 700px;
	font-weight: 700;
	font-size: 48px;
	margin-bottom: 30px;
}
.header-content__text {
	max-width: 640px;
	color: #D2D2D2;
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 30px;
}
.header-content__btns {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}
.header-content__btn,
a.header-content__btn {
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	color: var(--color-b);
	line-height: 1;
	padding: 20px 40px;
	background: #fff;
	margin-right: 20px;
	transition: all .3s linear;
}
.header-content__btn:hover,
a.header-content__btn:hover {
	background-color: var(--color-a);
	color: #fff;
}
.header-content__btn--blue,
a.header-content__btn--blue {
	background-color: var(--color-a);
	color: #fff;
	margin-right: 0;
}
.header-content__btn--blue:hover,
a.header-content__btn--blue:hover {
	background-color: #fff;
	color: var(--color-b);
}
.main-section {
	background: #fff;
	padding: 40px 0;
}
.main-section--no-padding-bottom {
	padding-bottom: 0 !important;
}
.main-section--no-padding-top {
	padding-top: 0 !important;
}
.categories {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.categories--4 .categories__item-wrap {
	width: 25%;
}
.categories--3 .categories__item-wrap {
	width: 33.3333%;
}
.categories__item-wrap {
	padding: 15px;
}
.categories__item,
a.categories__item {
	text-decoration: none;
}
.categories__img {
	display: block;
	width: 100%;
	padding-top: 60%;
	position: relative;
	margin-bottom: 10px;
}
.categories__img img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
}
.categories__title {
	color: var(--color-b);
	text-decoration: none;
	display: block;
	transition: all .2s linear;
	font-size: 16px;
}
.categories__item:hover .categories__title {
	color: var(--color-a);
}
.categories-links {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 30px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}
.categories-links__item,
a.categories-links__item {
	text-decoration: none;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 16px;
	margin-bottom: 10px;
}
.categories-links__img {
	width: 35px;
	min-width: 35px;
	height: 35px;
	background: var(--color-a);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
	transition: all .2s linear;
}
.main-section--blue {
	background: url(../img/logo-bg.png) left bottom no-repeat, var(--color-a);
}
.main-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	margin-bottom: 35px;
}
.main-title__title {
	max-width: 900px;
	text-transform: uppercase;
	color: var(--color-b);
	font-size: 32px;
	line-height: 1.4;
	margin-bottom: 0;
}
.main-title__title--white {
	color: #fff;
}
.main-title__link,
a.main-title__link {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
}
.main-title__link-img {
	width: 35px;
	min-width: 35px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 15px;
	background: #fff;
}
.main-about-text {
	color: #fff;
}
.main-preim {
	margin: 0 -10px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
.main-preim__item_wrap {
	width: 25%;
	padding: 15px;
}
.main-preim__img {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 140px;
}
.main-preim__title {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 16px;
	text-align: center;
	min-height: 50px;
}
.main_preim__text {
	text-align: center;
	font-size: 16px;
}
.fancybox-thumbs {
	top: auto;
	width: auto;
	bottom: 0;
	left: 0;
	right : 0;
	height: 95px;
	padding: 10px 10px 5px 10px;
	box-sizing: border-box;
	background: rgba(0, 0, 0, 0.3);
}
.fancybox-show-thumbs .fancybox-inner {
	right: 0;
	bottom: 95px;
}
.fancybox-thumbs-x>ul {
	margin: 0 auto;
}
.fancybox-thumbs>ul>li:before {
	border-color: var(--color-a);
}
.main-gallery__item {
	display: block;
	width: 100%;
	position: relative;
	padding-top: 60%;
}
.main-gallery__item::before {
	content: "+";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	font-size: 58px;
	color: #fff;
	transition: all .3s linear;
	transform: scale(0);
}
.main-gallery__item:hover::before {
	opacity: 1;
	transform: none;
}
.main-gallery__item::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 124, 214, .5);
	z-index: 1;
	display: block;
	opacity: 0;
	visibility: hidden;
	transition: all .3s linear;
}
.main-gallery__item:hover::after {
	opacity: 1;
	visibility: visible;
}
.main-gallery__item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main-consult {
	margin: 20px 0;
	padding: 40px 130px;
	background: url(../img/logo-bg-2.png) right -120px center no-repeat, var(--color-a);
}
.main-consult__title {
	color: #fff;
	text-transform: uppercase;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.1;
	margin: 10px 0;
}
.main-consult__input {
	height: 70px;
	background: #fff;
	border: none;
	width: 100%;
	padding: 0 10px;
	text-align: center;
	margin: 10px 0;
}
.main-consult__button {
	margin: 10px 0;
	display: block;
	cursor: pointer;
	border: none;
	width: 100%;
	height: 70px;
	background: #fff;
	text-align: center;
	font-weight: 500;
	font-size: 16px;
}
.main-services {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 30px -10px 0;
	text-align: center;
}
.main-services__item-wrap {
	padding: 10px;
	width: 33.3333%;
}
.inn-services .main-services__item-wrap {
    width: 50%;
}
.main-services__img {
	position: relative;
	width: 100%;
	padding-top: 50%;
	margin-bottom: 20px;
	display: block;
}
.main-services__img img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}
.main-services__title,
a.main-services__title {
	text-transform: uppercase;
	color: var(--color-b);
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	margin-bottom: 10px;
	display: block;
}
footer {
	background: var(--color-background-dark);
	font-weight: 300;
}
footer a,
footer a:hover,
footer a:focus {
	text-decoration: none;
	color: #fff;
}
.footer-top {
	padding-top: 50px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
.footer-top__item {
/*	width: 33.3333%; */
    width: 25%;
}
.footer__logo-title {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
	line-height: 1.2;
	margin: 20px 0 15px;
	color: #fff;
}
.footer__privacy {
	font-size: 14px;
	color: #d1d1d1;
	text-decoration: none;
	transition: all .2s linear;
	line-height: 1;
	display: inline-block;
}
.footer-top__title {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #fff;
}
.footer__nav ul {
	margin: 0 0 20px;
	padding: 0;
	list-style-type: none;
}
.footer__nav ul li a {
	text-decoration: none;
	color: #d1d1d1;
	font-size: 14px;
	transition: all .2s linear;
}
.footer__nav ul li a:hover {
	color: #fff;
}
.footer__contacts {
	font-size: 12px;
	color: #d1d1d1;
	line-height: 1.6;
}
.footer__contacts strong,
.footer__contacts b {
	color: #fff;
	font-weight: 400;
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	font-size: 14px;
	color: #d1d1d1;
	padding: 0px 0 40px;
}
.footer__planart {
	text-decoration: none;
	color: #d1d1d1;
	transition: all .2s linear;
	margin: 10px 0;
}
.footer__social-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
}

/* INDEX */

/* PAGE */

.inn-header {
	background: var(--color-background-dark);
}
.main-page__wrapper {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
.main-page__left {
	width: 340px;
	padding-right: 30px;
	position: sticky;
	top: 0;
}
.main-page__right {
	width: calc(100% - 340px);
}
.breadcrumb {
	padding: 0;
	padding-top: 10px;
	background: unset;
	font-size: 16px;
/*	margin-bottom: 60px; */
}
.breadcrumb-item+.breadcrumb-item::before {
	content: "-";
}
.breadcrumb a {
	text-decoration: none;
}
.page-title {
	text-transform: uppercase;
	color: var(--color-a);
	font-weight: 700;
	font-size: 28px;
	margin-bottom: 5px;
}
.page-back__link,
a.page-back__link {
	font-size: 16px;
	text-decoration: none;
	color: #AFAFAF;
	font-weight: 300;
	transition: all .2s linear;
}
.page-back__link:hover,
a.page-back__link:hover {
	color: var(--color-a);
}
.sidebar-links {
	margin-top: 1rem;
	position: sticky;
	top: 1rem;
	margin-bottom: 2rem;
}
.sidebar-links__link,
a.sidebar-links__link {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 1rem;
	text-decoration: none;
}
.sidebar-links__img {
	background: var(--color-a);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	min-width: 35px;
	height: 35px;
	margin-right: 20px;
}
.sidebar-links__text {
	font-size: 16px;
	line-height: 1.2;
	max-width: 175px;
}
.product-title {
	font-size: 30px;
	color: var(--color-b);
	font-weight: 700;
	margin-bottom: 1rem;
}
.products-table {
	margin-bottom: 30px;
}
.products-table__line {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	color: #000;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.1;
}
.products-table__line--title {
	color: #7e7e7e;
}
.products-table__line a {
	text-decoration: none;
}
.products-table__line:nth-child(2n) {
	background: #EEEFEF;
}
.products-table__item {
	padding: 17px 40px;
}
.products-table__item-1 {
	width: 50%;
}
.products-table__item-2 {
	width: 25%;
	text-align: center;
}
.products-table__item-3 {
	width: 25%;
	text-align: center;
}
.sidebar-nav {
	position: absolute;
	left: 0;
	top: -180px;
}
.sidebar-nav ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	padding-left: 15px;
}
.sidebar-nav ul li a {
	text-decoration: none;
	color: #797878;
	font-weight: 300;
	font-size: 16px;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 5px;
	transition: all .2s linear;
}
.sidebar-nav ul li a:hover {
	color: var(--color-a);
}
.sidebar-nav ul li a::before {
	content: "";
	background: var(--color-a);
	display: block;
	width: 0;
	height: 1px;
	margin-right: 0;
	transition: all .2s linear;
}
.sidebar-nav ul li a:hover::before {
	width: 10px;
	margin-right: 8px;
}
.lSSlideOuter .lightSlider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.lSSlideOuter .lSPager.lSGallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
	border-radius: 0;
}
.product-slider-bottom {
	margin-top: 20px;
	margin-bottom: 30px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.product-slider-controls {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.product-slider-controls__prev {
	width: 35px;
	min-width: 35px;
	height: 35px;
	background: var(--color-a);
	margin-right: 10px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: rotate(180deg);
	user-select: none;
}
.product-slider-controls__next {
	width: 35px;
	min-width: 35px;
	height: 35px;
	background: var(--color-a);
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	user-select: none;
}
.product-slider__buttons {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.product-btn__link,
a.product-btn__link {
	height: 35px;
	background: var(--color-a);
	color: #fff;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 165px;
	border: 1px solid var(--color-a);
	font-size: 14px;
	font-weight: 600;
	transition: all .3s linear;
}
.product-btn__link:hover,
a.product-btn__link:hover {
	background: #fff;
	color: var(--color-a);
}
.product-btn__link--white,
a.product-btn__link--white {
	margin-right: 20px;
	background: #fff;
	color: var(--color-a);
}
.product-btn__link--white:hover,
a.product-btn__link--white:hover {
	background: var(--color-a);
	color: #fff;
}
.ms2_product .product-btn__link {
	width: auto;
}
.product-inn-title {
	font-weight: 500;
	color: var(--color-a);
	font-size: 24px;
	margin-bottom: 20px;
}
.products-tech-table {
	margin-bottom: 30px;
}
.products-tech-table__line {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	color: #000;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.1;
}
.products-tech-table__line a {
	text-decoration: none;
}
.products-tech-table__line:nth-child(2n+1) {
	background: #EEEFEF;
}
.products-tech-table__item {
	padding: 17px 40px;
}
.products-tech-table__item-1 {
	width: 60%;
}
.products-tech-table__item-2 {
	width: 40%;
	text-align: right;
}
.product-adds {
	margin-bottom: 30px;
}
.product-adds p {
	margin-bottom: 5px;
}
.prod-tech-btn {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	margin-bottom: 20px;
}
.map-wrapper {
	width: 100%;
	height: 300px;
	margin-bottom: 30px;
}
.about-gallery {
	padding: 0 0 30px 0;
	margin: 30px 0;
	/*background: url(../img/logo-bg-2.png) left -70px bottom -50px no-repeat, var(--color-a);*/
}
.about-gallery__title {
	margin-bottom: 20px;
	font-weight: 500;
	font-size: 24px;
}
.about-gallery-list {
	margin: 0 -10px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
.about-gallery-list__item_wrap {
	width: 25%;
	padding: 10px;
}
.about-gallery-list__item {
	display: block;
	width: 100%;
	position: relative;
	padding-top: 75%;
}
.about-gallery-list__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}
.about-gallery-list__item::before {
	content: "+";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	font-size: 40px;
	color: #fff;
	transition: all .3s linear;
	transform: scale(0);
}
.about-gallery-list__item:hover::before {
	opacity: 1;
	transform: none;
}
.about-gallery-list__item::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 124, 214, .5);
	z-index: 1;
	display: block;
	opacity: 0;
	visibility: hidden;
	transition: all .3s linear;
}
.about-gallery-list__item:hover::after {
	opacity: 1;
	visibility: visible;
}
.services-inn__img {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
}

/* PAGE */

/* POPUP */

.mfp-close-btn-in .mfp-close {
    color: #fff;
    font-size: 0;
    background: url(../img/close-icon.svg) center / 25px no-repeat;
    transition: all .2s linear;
}
.popup {
	max-width: 420px;
	background: url(../img/logo-bg-2.png) right -120px bottom no-repeat, var(--color-a);
	margin: 0 auto;
	position: relative;
	padding: 40px;
	color: #fff;
}
.popup__article {
	font-size: 20px;
	text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
	margin-bottom: 30px;
	text-align: center;
	padding: 0 10px;
}
.popup__title {
	margin-bottom: 20px;
	color: #2E2F38;
}
.popup form input {
	display: block;
	width: 100%;
	margin-bottom: 20px;
	padding: 12px 20px;
	border: none;
	border-radius: 0;
	font-size: 16px;
	font-weight: 400;
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.popup form textarea {
	display: block;
	width: 100%;
	margin-bottom: 20px;
	resize: vertical;
	padding: 12px 20px;
	border: none;
	font-size: 16px;
	font-weight: 400;
	min-height: 170px;
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.popup__input-title {
	font-size: 16px;
	color: #fff;
	margin-bottom: 5px;
}
.popup__button {
	margin-top: 10px;
	display: block;
    cursor: pointer;
    border: none;
    width: 100%;
    height: 60px;
    background: #fff;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
}
.my-mfp-zoom-in .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out; 
	-moz-transition: all 0.2s ease-in-out; 
	-o-transition: all 0.2s ease-in-out; 
	transition: all 0.2s ease-in-out; 
	-webkit-transform: scale(0.8); 
	-moz-transform: scale(0.8); 
	-ms-transform: scale(0.8); 
	-o-transform: scale(0.8); 
	transform: scale(0.8); 
}
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: scale(1); 
	-moz-transform: scale(1); 
	-ms-transform: scale(1); 
	-o-transform: scale(1); 
	transform: scale(1); 
}
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	-webkit-transform: scale(0.8); 
	-moz-transform: scale(0.8); 
	-ms-transform: scale(0.8); 
	-o-transform: scale(0.8); 
	transform: scale(0.8); 
	opacity: 0;
}
.my-mfp-zoom-in.mfp-bg {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-out; 
	-moz-transition: opacity 0.3s ease-out; 
	-o-transition: opacity 0.3s ease-out; 
	transition: opacity 0.3s ease-out;
}
.my-mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.75;
}
.my-mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}
.my-mfp-zoom-in .mfp-figure {
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out; 
	-moz-transition: all 0.2s ease-in-out; 
	-o-transition: all 0.2s ease-in-out; 
	transition: all 0.2s ease-in-out; 
	-webkit-transform: scale(0.7); 
	-moz-transform: scale(0.7); 
	-ms-transform: scale(0.7); 
	-o-transform: scale(0.7); 
	transform: scale(0.7); 
}
.my-mfp-zoom-in.mfp-ready .mfp-figure {
	opacity: 1;
	-webkit-transform: scale(1); 
	-moz-transform: scale(1); 
	-ms-transform: scale(1); 
	-o-transform: scale(1); 
	transform: scale(1); 
}
.my-mfp-zoom-in.mfp-removing .mfp-figure {
	opacity: 0;
	-webkit-transform: scale(0.7); 
	-moz-transform: scale(0.7); 
	-ms-transform: scale(0.7); 
	-o-transform: scale(0.7); 
	transform: scale(0.7); 
}

/* POPUP */

.btn-primary {
	background-color: var(--color-a);
	border-color: var(--color-a);
  }

#msProduct .old_price, #msCart .old_price, .ms2_product .old_price {
	font-style: normal !important;
	color: inherit !important;
}

.ms2_product_options {
	font-size: 14px;
}

.msproduct-title {
	font-size: 24px;
	line-height: 28px;
}

.msproduct-card-stock {
/*	font-weight: bold; */
}

.msproduct-card-stock-in {
	color: var(--color-a);
}

.msproduct-card-stock-out {
	color: var(--color-a);
}

.msproduct-price {
	font-size: 20px;
	line-height: 24px;
	font-weight: bold;
}


/* main nav test */

.dropdown-menu {
	column-count: 2;
}

.dropdown-menu a {
	font-size: 12px;
	color: white;
	text-decoration: none;
}

.dropdown-menu .dropdown-item:hover {
	background-color: transparent;
}

.dropdown-menu .dropdown-item:hover > a {
	text-decoration: underline;
}

/* main nav test */

/* main nav bootstrap test */

.header-home {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.header-home::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(106.12deg, rgba(7, 7, 7, 0.75) -18.19%, rgb(24 24 24 / 40%) 116.76%);
}

.main-nav-wrapper {
	border-bottom: 1px solid rgba(255,255,255,.4);
	position: relative;
}

.main-nav {
	padding: 0 0 1rem 0;
}

.main-nav > .navbar-collapse > .navbar-nav > li > a {
	font-size: 20px;
	margin: 0 1rem;
}

.main-nav.main-nav-lang-hy > .navbar-collapse > .navbar-nav > li > a,
.main-nav.main-nav-lang-ka > .navbar-collapse > .navbar-nav > li > a {
	font-size: 18px;
	margin: 0 0.5rem;
}

@media (min-width: 992px) and (max-width: 1200px) {
	.main-nav > .navbar-collapse > .navbar-nav > li > a {
		font-size: 18px;
		margin: 0 0.5rem;
	}

	.main-nav.main-nav-lang-hy > .navbar-collapse > .navbar-nav > li > a,
	.main-nav.main-nav-lang-ka > .navbar-collapse > .navbar-nav > li > a {
		font-size: 15px;
		margin: 0 0.3rem;
	}

	.main-nav .header-line__phone {
		font-size: 18px;
	}

	.main-nav .header-line__email {
		font-size: 16px;
	}
}

@media (max-width: 991px) {
	.main-nav > .navbar-collapse > .navbar-nav > li > a {
		font-size: 16px;
		margin: 0;
	}
}

.main-nav .nav-link a {
	color: #fff;
}

.main-nav .dropdown-item.nav-link:hover {
	text-decoration: underline;
}

.main-nav .navbar-nav > .nav-link > a {
	position: relative;
}

.main-nav .navbar-nav > .nav-link > a:hover {
	text-decoration: none;
}

.main-nav .navbar-nav > .nav-link > a::before {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
	visibility: hidden;
	opacity: 0;
	transition: all .3s linear;
}

.main-nav .navbar-nav > .nav-link > a:hover::before {
	opacity: 1;
	visibility: visible;
	bottom: -2px;
}

.main-nav-dropdown {
	column-count: 2;
	background: #6c757d;
	padding: 0.25rem 0;
	margin-top: 1rem;
}

.main-nav-dropdown .dropdown-item {
	padding: .25rem 1.5rem !important;
	line-height: 1.4rem;
}

.main-nav-dropdown .dropdown-item:focus {
	background-color: rgba(0, 0, 0, 0) !important;
}

@media (max-width: 768px) {
	.main-nav-dropdown {
		column-count: 1;
		margin-top: 0.5rem;
		border: none;
	}
}

@media (min-width: 769px) and (max-width: 1200px) {
	.main-nav-dropdown {
		border: none;
	}
}

.header-content {
	padding: 150px 0 200px;
	position: relative;
}

@media (max-width: 992px) {

}

.form-group {
    margin-top: 15px;
}

.phone_input_description {
    font-size: 13px; 
    margin-top: -15px; 
    margin-bottom: 20px; 
    display: block;
}

.avaliable-list {
    font-size: 13px; 
    display: block; 
    margin-top: auto; 
    padding-top: 8px
}

.avaliable-list-mark {
    color: #007CD6;
}

.delivery-link {
    font-size: 15px; 
    border-bottom: 1px dashed #333; 
    color: initial;
}

.delivery-link:hover {
    text-decoration: none;
    color: initial;
}

.open-sesame-form {
    background: #fff !important ; 
    color: color(display-p3 0.2078 0.4784 0.8118) !important ; 
    cursor: pointer;
}

.related-slider .ms2_product-wrapper,
.viewed-slider .ms2_product-wrapper {
	max-width: unset;
	padding: 0;
	height: 100%;
}

.hover-slider-indicator {
	position: absolute;
	top: auto;
	right: 0;
	bottom: .75rem;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.hover-slider-indicator-dot {
	background-color: white;
	opacity: 1;
	border-radius: 50%;
	height: 6px;
	width: 6px;
	margin-left: .1rem;
	margin-right: .1rem;
}

.hover-slider-indicator-dot.active {
	background-color: var(--color-a);
	opacity: 1;
}

.owl-stage {
	display: flex;
}

.owl-nav {
	position: absolute;
	width: 100%;
}

.owl-prev,
.owl-next {
	position: absolute;
}

.product-reviews-rating {
	display: inline-flex;
}

.ec-d-rating {
	max-width: unset !important;
}

.tab-pane {
	padding: 1rem 0;
}

a.seotab {
	font-size: 15px;
	padding: .5rem 0.5rem;
}

.nav-tabs {
    display:none;
}

@media(min-width:1200px) {
    .nav-tabs {
        display: flex;
    }

    .card {
        border: none;
    }

    .card .card-header {
        display:none;
    }  

    .card .collapse{
        display:block;
    }
}

@media(max-width:1199px){
    /* 
     * Changed selector to `.tab-content > .tab-pane` in order to override `.fade:not(.show)`
     * In BS4 Beta `.tab-pane`s were rendered hidden by just `.fade`
     */
    .tab-content > .tab-pane {
        display: block;
        opacity: 1;
		padding: 0;
    }
}

.youtube-review {
    display: inline-block;
    margin-right: 25px;
}

@media (max-width: 576px) {
    .youtube-review iframe {
        max-width: 100% !important;
    }
}

@media (max-width: 576px) {
    .youtube-review {
        margin-right: 0;
    }
}

.mscategory-subcategory-element > a {
    border: 1px solid color(display-p3 0.207 0.477 0.81 / 0.52);
    padding: 5px 10px;
    border-radius: 40px;
    display: inline-block;
    margin-top: 5px;
    margin-right: -5px;
    font-size: 15px;
	word-break: keep-all;
}

.mscategory-subcategory-element > a:hover {
   text-decoration: none;
   background: color(display-p3 0.207 0.477 0.81 / 0.94);
   color: #fff;
}

.arrow {
    border: solid var(--color-b);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.btn-filter-collapse {
    text-align: left;
    width: 100%;
    margin-bottom: 1rem;
}

.btn-filter-collapse > .arrow {
    float: right;
    position: relative;
    top: 6px;
}

.filter-collapse-rows {
    padding: 0rem 1rem 1rem 1rem;
}

.btn-sort {
    margin-bottom: 1rem;
}

@media (max-width: 992px) {
    .btn-sort {
        width: 100%;
        text-align: left;
    }
}

.btn-light-custom {
	background: #fff;
	border: 1px solid rgb(206, 212, 218);
}

.dropdown-category-sort {
	column-count: 1;
}

.dropdown-category-sort a {
	font-size: 16px;
	color: var(--color-b);
	text-decoration: none;
}

.dropdown-category-sort .dropdown-item:hover {
	text-decoration: underline;
}

.ms2_product-wrapper {
    margin-bottom: 1rem;
}

#mse2_results {
	margin-bottom: 0 !important;
}

.mse2_pagination {
	margin-bottom: 2rem;
}

.page-link {
	color: var(--color-a);
}

.page-item.active .page-link {
	background-color: var(--color-a);
  	border-color: var(--color-a);
}



@media (min-width: 1140px) {
	.mse2_number_inputs input {
		font-size: 13px;
		padding: 0 0.5rem;
	}
}

@media (min-width: 992px) and (max-width: 1200px) {
	.btn-filter-collapse {
		font-size: 14px;
	}

	.arrow {
		border-width: 0 2px 2px 0;
	}

	.btn-filter-collapse > .arrow {
		top: 5px;
	}

	.filter-collapse-rows {
		font-size: 14px;
	}
}

.mse2_pagination > ul > li:first-child {
	display: none;
}

.mse2_pagination > ul > li:last-child {
	display: none;
}

.polylang-links-wrapper {
	position: relative;
}

.privacy_form {
    font-size: 13px;
    color: #fff;
}

.privacy_form a {
    color: #fff;
} 

/* ===== cookies ===== */
.cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: none;
}
.cookies___body {
    background-color: white;
    box-shadow: 0 0 40px rgba(196, 196, 196, 0.25);
    padding: 15px 0;
}
@media screen and (max-width: 575.5px) {
    .cookies___body {
        padding: 10px 0;
    }
}
.cookies__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 575.5px) {
    .cookies__row {
        flex-direction: column;
    }
}
.cookies__text {
    font-weight: 300;
    font-size: 12px;
    line-height: 150%;
    color: #212121;
    flex: 1 1 auto;
    margin-right: 30px;
}
.cookies__text a {
    color: #007CD6;
}

.cookies__text a:hover {
    color: #007CD6;
    text-decoration: underline;
}
@media screen and (max-width: 575.5px) {
    .cookies__text {
        margin: 0 0 20px 0;
        font-size: 10px;
    }
}
.cookies__btn {
    justify-content: center;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #007CD6;
    border: 2px solid #007CD6;
    border-radius: 5px;
    font-size: 16px;
    padding: 12px 30px;
    font-weight: 500;
    width: fit-content;
    display: inline-block;
    cursor: pointer;
    transition: background-color ease 0.3s;
}
.cookies__btn:hover {
    background-color: #007CD6;
    border: 2px solid #007CD6;
    color: #ffffff;
}
@media screen and (min-width: 1920px) {
    .cookies__btn {
        padding: 0.78125vw 2.0833333333vw;
        font-size: 14px;
    }
}    