@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&family=JetBrains+Mono:wght@300;400;700;800&display=swap');

/* ==========================================================================
   NORMALIZE
   ========================================================================== */
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

html {
	font-family: 'JetBrains Mono', sans-serif;
	color: #222;
	font-size: 1em;
	line-height: 1.5;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

html * {
	max-height: 1000000px;
}

body {
	margin: 0;
	position: relative;
	background: #fff;
	min-width: 320px;
	font-family: 'JetBrains Mono', sans-serif;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}
h2, .h2 {
    font-size: 1.45rem;
}
h3, .h3 {
    font-size: 1.25rem;
}
mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
	border-radius: 0;
	-webkit-appearance: none;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
	border-radius: 0;
	-webkit-appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	opacity: 1;
	transition: all 0.2s ease-out;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	opacity: 1;
	transition: all 0.2s ease-out;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	opacity: 1;
	transition: all 0.2s ease-out;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	opacity: 1;
	transition: all 0.2s ease-out;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
	color: transparent;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
	color: transparent;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
	color: transparent;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
	color: transparent;
}

/* ==========================================================================
   HELPER CLASSES
   ========================================================================== */
.container {
	margin: auto;
	width: 1060px;
	padding: 0 15px;
}

.wrapper {
	overflow: hidden;
	padding-top: 61px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	background: #3E4249;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.35);
}

.header__row {
	height: 61px;
	display: flex;
	align-items: center;
}

.header__logo {
	width: 64px;
	flex-shrink: 0;
}

.header__logo img {
	display: block;
	max-width: 100%;
	height: auto;
}

.header__phone {
	margin-left: 13px;
}

.header__phone a {
	display: inline-block;
	font-weight: 700;
	font-size: 14px;
	line-height: 18px;
	color: #EC6C2E;
	padding: 5px;
	text-decoration: none;
	border: 2px solid #EC6C2E;
}

.header__nav {
	font-weight: 300;
	font-size: 14px;
	line-height: 18px;
	color: #fff;
	margin-left: auto;
}

.header__nav li + li {
	margin-left: 26px;
}

.header__nav ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.header__nav a {
	font-weight: 300;
	font-size: 14px;
	line-height: 18px;
	color: #fff;
	text-decoration: none;
	transition: all 0.2s ease-out;
}

.header__nav a:hover {
	color: #EC6C2E;
}

.header__nav .header__phone {
	display: none;
}

.header__search {
	width: 18px;
	height: 18px;
	background-repeat: no-repeat;
	background-size: 100%;
	background-image: url(../img/icon-search.svg);
	margin-left: 20px;
	transition: all 0.2s ease-out;
}

.header__telegram {
	width: 25px;
	height: 25px;
	background-repeat: no-repeat;
	background-size: 100%;
	margin-left: 20px;
	transition: all 0.2s ease-out;
}

.header__profile {
	width: 17px;
	height: 20px;
	background-repeat: no-repeat;
	background-size: 100%;
	background-image: url(../img/icon-profile.svg);
	margin-left: 18px;
	transition: all 0.2s ease-out;
}

.header__basket {
	width: 24px;
	height: 16px;
	background-repeat: no-repeat;
	background-size: 100%;
	background-image: url(../img/basket.svg);
	margin-left: 20px;
	transition: all 0.2s ease-out;
}

.header__search:hover {
	background-image: url(../img/icon-search-hover.svg);
}

.header__profile:hover {
	background-image: url(../img/icon-profile-hover.svg);
}

.header__btn {
	margin-left: 0;
	padding: 0 15px;
	display: none;
	cursor: pointer;
	align-items: center;
	position: relative;
	right: -10px;
	top: -1px;
}

.header__btn-icon {
	position: relative;
	width: 22px;
	height: 20px;
	top: 1px;
}

.header__btn-icon i {
	display: block;
	position: absolute;
	width: 100%;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: 0.25s ease-in-out;
	height: 1px;
	background: #fff;
}

.header__btn-icon i:nth-child(1) {
	top: 0;
}

.header__btn-icon i:nth-child(2),
.header__btn-icon i:nth-child(3) {
	top: 9px;
}

.header__btn-icon i:nth-child(4) {
	top: 18px;
}

.header__btn.active .header__btn-icon i:nth-child(1) {
	top: 9px;
	width: 0;
	left: 50%;
}

.header__btn.active .header__btn-icon i:nth-child(2) {
	transform: rotate(45deg);
}

.header__btn.active .header__btn-icon i:nth-child(3) {
	transform: rotate(-45deg);
}

.header__btn.active .header__btn-icon i:nth-child(4) {
	top: 9px;
	width: 0;
	left: 50%;
}

/* ==========================================================================
   SLIDER
   ========================================================================== */
.slider__item {
	background-repeat: no-repeat;
	background-position: center;
}

.slider__content {
	height: 570px;
	display: flex;
	align-items: center;
}

.slider__block {
	max-width: 434px;
	margin-left: auto;
}

.slider__title {
	font-weight: 800;
	font-size: 64px;
	line-height: 75px;
	letter-spacing: 0.045em;
	color: #fff;
}

.slider__description {
	font-weight: 300;
	font-size: 20px;
	line-height: 26px;
	color: #fff;
	border-top: 2px solid #EC6C2E;
	padding-top: 28px;
	margin-top: 25px;
}

.slider .owl-dots {
	position: absolute;
	bottom: 18px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
}

.slider .owl-dot {
	border: 2px solid #fff;
	width: 17px;
	height: 17px;
	transition: all 0.2s ease-out;
}

.slider .owl-dot:hover {
	border-color: #EC6C2E;
}

.slider .owl-dot.active {
	background: #EC6C2E;
	border-color: #EC6C2E;
}

.slider .owl-dot + .owl-dot {
	margin-left: 7px;
}

.slider .owl-prev {
	position: absolute;
	left: 40px;
	top: 50%;
	transform: translate(-50%, 0);
	width: 28px;
	height: 51px;
	background-repeat: no-repeat;
	background-size: 100%;
	background-image: url(../img/slider-prev.svg);
	font-size: 0;
	transition: all 0.2s ease-out;
}

.slider .owl-next {
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translate(-50%, 0);
	width: 28px;
	height: 51px;
	background-repeat: no-repeat;
	background-size: 100%;
	background-image: url(../img/slider-next.svg);
	font-size: 0;
	transition: all 0.2s ease-out;
}

.slider .owl-prev:hover {
	background-image: url(../img/slider-prev-hover.svg);
}

.slider .owl-next:hover {
	background-image: url(../img/slider-next-hover.svg);
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.sections {
	margin-top: 58px;
}

.sections__items {
	max-width: 948px;
	margin: auto;
}

.sections__row {
	display: flex;
	flex-wrap: wrap;
	margin: -22px -9px 0;
}

.sections__col {
	margin-top: 22px;
	padding: 0 9px;
	width: 50%;
}

.sections__item {
	background: #fff;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
	text-decoration: none;
	display: block;
	height: 100%;
	padding: 20px 38px 23px 38px;
	transition: all 0.2s ease-out;
}

.sections__item:hover {
	box-shadow: 0px 0px 6px #EC6C2E;
}

.sections__img {
	max-width: 389px;
	margin-bottom: 23px;
}

.sections__img img {
	display: block;
	max-width: 100%;
	height: auto;
}

.sections__name {
	font-weight: 800;
	font-size: 20px;
	line-height: 23px;
	letter-spacing: 0.045em;
	text-transform: uppercase;
	color: #001E4B;
	transition: all 0.2s ease-out;
}

.sections__description {
	font-weight: 300;
	font-size: 16px;
	line-height: 21px;
	color: #001E4B;
	padding-top: 26px;
	margin-top: 11px;
	position: relative;
	transition: all 0.2s ease-out;
}

.sections__item:hover .sections__name,
.sections__item:hover .sections__description {
	color: #EC6C2E;
}

.sections__description:before {
	content: '';
	position: absolute;
	height: 2px;
	top: 0;
	left: 0;
	right: -38px;
	background: #EC6C2E;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
	margin-top: 133px;
}

.about__content {
	max-width: 949px;
	margin: auto;
}

.about__top {
	margin-bottom: 42px;
	display: flex;
	align-items: center;
	border-bottom: 2px solid #EC6C2E;
}

.about__logo {
	width: 208px;
	flex-shrink: 0;
	margin-right: 45px;
}

.about__logo img {
	display: block;
	max-width: 100%;
	height: auto;
}

.about__title {
	font-weight: 800;
	font-size: 24px;
	line-height: 28px;
	letter-spacing: 0.045em;
	text-transform: uppercase;
	color: #001E4B;
}

.about__title span {
	color: #EC6C2E;
}

.about__text {
	font-weight: 300;
	font-size: 16px;
	line-height: 21px;
	color: #001E4B;
}

/* ==========================================================================
   CATEGORIES
   ========================================================================== */
.categories {
	margin-top: 79px;
}

.categories__content {
	max-width: 929px;
	margin: auto;
}

.categories__row {
	display: flex;
	flex-wrap: wrap;
	margin: -54px -21px 0;
}

.categories__col {
	margin-top: 54px;
	padding: 0 21px;
	width: 50%;
}

.categories__item {
	text-decoration: none;
	display: flex;
	align-items: center;
	height: 99px;
	background: #fff;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
	transition: all 0.2s ease-out;
}

.categories__item:hover {
	box-shadow: 0px 0px 6px #EC6C2E;
}

.categories__icon {
	flex-shrink: 0;
	width: 99px;
}

.categories__icon img {
	display: block;
	max-width: 100%;
	height: auto;
}

.categories__name {
	font-weight: 800;
	font-size: 20px;
	line-height: 26px;
	letter-spacing: 0.045em;
	text-transform: uppercase;
	color: #001E4B;
	transition: all 0.2s ease-out;
	padding: 0 32px;
}

.categories__item:hover .categories__name {
	color: #EC6C2E;
}

/* ==========================================================================
   CONTACTS
   ========================================================================== */
.contacts {
	margin-top: 80px;
	font-weight: 300;
	font-size: 16px;
	line-height: 21px;
	color: #001E4B;
}

.contacts__content {
	max-width: 929px;
	margin: auto;
}

/* ==========================================================================
   COLUMNS
   ========================================================================== */
.columns {
	padding-top: 38px;
}

.columns__row {
	display: flex;
}

.columns__left {
	width: 64px;
	margin-right: 38px;
	position: relative;
	flex-shrink: 0;
}

.columns__right {
	flex-grow: 1;
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.breadсrumbs {
	font-weight: 300;
	font-size: 12px;
	line-height: 16px;
	color: #3E4249;
	margin-bottom: 63px;
}

.breadсrumbs a {
	color: #3E4249;
	text-decoration: none;
	transition: all 0.2s ease-out;
}

.breadсrumbs a:hover {
	color: #EC6C2E;
}

.breadсrumbs span {
	margin: 0 8px;
}

/* ==========================================================================
   DIVIDE
   ========================================================================== */
.divide {
	
}

.divide__row {
	display: flex;
	flex-wrap: wrap;
	/*margin: -22px -11px 0;*/
	margin: 0px;
}

.divide__col {
	margin-top: 22px;
	padding: 0 11px;
	width: 50%;
}

.divide__item {
	display: flex;
	align-items: center;
	background: #fff;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
	text-decoration: none;
	transition: all 0.2s ease-out;
}

.divide__item:hover {
	box-shadow: 0px 0px 6px #EC6C2E;
}

.divide__img {
	width: 238px;
	flex-shrink: 0;
}

.divide__img img {
	display: block;
	max-width: 100%;
	height: auto;
}

.divide__name {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 132.19%;
	text-transform: uppercase;
	color: #001E4B;
	padding: 0 29px;
	transition: all 0.2s ease-out;
}

.divide__item:hover .divide__name {
	color: #EC6C2E;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
	margin-top: 63px;
}

.faq__row {
	display: flex;
}

.faq__icon {
	width: 208px;
	flex-shrink: 0;
}

.faq__icon img {
	display: block;
	max-width: 100%;
	height: auto;
}

.faq__title {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 132.19%;
	letter-spacing: 0.045em;
	text-transform: uppercase;
	color: #001E4B;
	border-bottom: 2px solid #EC6C2E;
	padding-bottom: 12px;
	padding-left: 30px;
}

.faq__text {
	margin-top: 17px;
	font-weight: 300;
	font-size: 15px;
	line-height: 20px;
	color: #001E4B;
	padding-left: 30px;
}

/* ==========================================================================
   INFO
   ========================================================================== */
.info {
	border-top: 1px solid #CBCBCB;
	padding-top: 45px;
	margin-top: 45px;
}

.info__row {
	display: flex;
}

.info__icon {
	width: 131px;
	flex-shrink: 0;
}

.info__icon img {
	display: block;
	max-width: 100%;
	height: auto;
}

.info__title {
	padding-left: 106px;
	padding-bottom: 8px;
	border-bottom: 2px solid #EC6C2E;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 132.19%;
	letter-spacing: 0.045em;
	text-transform: uppercase;
	color: #001E4B;
	margin-bottom: 28px;
}

.info__text {
	padding-left: 106px;
	font-weight: 300;
	font-size: 15px;
	line-height: 20px;
	color: #001E4B;
}

/* ==========================================================================
   MENU
   ========================================================================== */
.menu {
	width: 63px;
	overflow: hidden;
	position: relative;
	z-index: 5;
	background: #fff;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
	transition: all 0.2s ease-out;
}

.menu__item {
	display: flex;
	align-items: center;
	text-decoration: none;
	width: 218px;
}

.menu__icon {
	width: 53px;
	flex-shrink: 0;
	margin: 0 5px;
}

.menu__icon img {
	display: block;
	max-width: 100%;
	height: auto;
}

.menu__name {
	font-weight: 300;
	font-size: 15px;
	line-height: 20px;
	color: #001E4B;
	margin-right: 27px;
	margin-left: 2px;
	transition: all 0.2s ease-out;
}

.menu:hover {
	width: 218px;
}

.menu__item:hover .menu__name {
	color: #EC6C2E;
}

/* ==========================================================================
   submenu
   ========================================================================== */
.submenu {
	/*max-width: 834px;*/
	margin-bottom:50px;
}

.submenu__row {
	display: flex;
	flex-wrap: wrap;
	margin: -18px -17px 0;
}

.submenu__col {
	margin-top: 18px;
	padding: 0 17px;
	width: 50%;
}

.submenu__item {
	display: flex;
	align-items: center;
	text-decoration: none;
	background: #fff;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
	transition: all 0.2s ease-out;
	min-height:100px;
}

.submenu__item:hover {
	box-shadow: 0px 0px 6px #EC6C2E;
}

.submenu__img {
	width: 100px;
	flex-shrink: 0;
}

.submenu__img img {
	display: block;
	max-width: 100%;
	height: auto;
	margin-left: 10px;
}

.submenu__name {
	font-weight: 800;
	font-size: 18px;
	line-height: 132.19%;
	letter-spacing: 0.045em;
	text-transform: uppercase;
	color: #001E4B;
	padding: 0 19px;
	transition: all 0.2s ease-out;
}

.submenu__item:hover .submenu__name {
	color: #EC6C2E;
}

/* ==========================================================================
   PRODUCTS
   ========================================================================== */
.submenu + .products {
	margin-top: 105px;
}

.products {
	/*max-width: 834px;*/
}

.products__item {
	display: flex;
	overflow: hidden;
}

.products__img {
	width: 383px;
	flex-shrink: 0;
	margin-right: 32px;
	background: #fff;
	position: relative;
	z-index: 1;
}

.products__img img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: auto;
}

.products__name {
	font-weight: 800;
	font-size: 18px;
	line-height: 132.19%;
	letter-spacing: 0.045em;
	text-transform: uppercase;
	color: #001E4B;
	margin-bottom: 32px;
	padding-bottom: 2px;
	position: relative;
}

.products__name:after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	height: 2px;
	background: #EC6C2E;
}

.products__name a {
	color: #001E4B;
	text-decoration: none;
	transition: all 0.2s ease-out;
}

.products__name a:hover {
	color: #EC6C2E;
}

.products__text {
	font-weight: 300;
	font-size: 16px;
	line-height: 21px;
	color: #001E4B;
	flex-grow: 1;
}

.products__more {
	font-weight: 300;
	font-size: 16px;
	line-height: 21px;
	color: #001E4B;
	margin-top: 32px;
}

.products__more a {
	color: #EC6C2E;
	text-decoration: none;
	transition: all 0.2s ease-out;
}

.products__more a:hover {
	color: #001E4B;
}

.products__block {
	display: flex;
	flex-direction: column;
}

.products__item + .products__item {
	border-top: 1px solid #CBCBCB;
	padding-top: 50px;
	margin-top: 50px;
}

/* ==========================================================================
   CARD
   ========================================================================== */
.card {
	border:0;
}

.card__row {
	display: flex;
	align-items: center;
}

.card__img {
	width: 383px;
	flex-shrink: 0;
	margin-right: 32px;
	background: #fff;
	position: relative;
	z-index: 1;
}

.card__img img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: auto;
}

.card__name {
	font-weight: 800;
	font-size: 18px;
	line-height: 132.19%;
	letter-spacing: 0.045em;
	text-transform: uppercase;
	color: #001E4B;
	margin-bottom: 32px;
	padding-bottom: 2px;
	position: relative;
}

.card__name:after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	height: 2px;
	background: #EC6C2E;
}

.card__tabs {
	margin-top: 64px;
	margin-bottom: 56px;
	display: flex;
	border-bottom: 1px solid #001E4B;
}

.card__tab {
	font-weight: 300;
	font-size: 16px;
	line-height: 21px;
	color: #001E4B;
	padding: 5px 22px;
	border-top: 1px solid transparent;
	border-right: 1px solid transparent;
	border-left: 1px solid transparent;
	border-bottom: 1px solid #001E4B;
	margin-bottom: -1px;
	cursor: pointer;
	user-select: none;
	transition: all 0.2s ease-out;
}

.card__tab:hover {
	color: #EC6C2E;
}

.card__tab.active {
	color: #EC6C2E;
	border-bottom-color: #fff;
	border-top-color: #001E4B;
	border-right-color: #001E4B;
	border-left-color: #001E4B;
}

.card__tab:first-child {
	border-left-color: transparent;
}

.card__block {
	display: none;
}

.card__block.active {
	display: block;
}

.card__text {
	font-weight: 300;
	font-size: 16px;
	line-height: 21px;
	color: #001E4B;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
	margin-top: 100px;
	padding: 12px 0 32px;
	background: #3E4249;
	box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.35);
}

.footer__top {
	display: flex;
	align-items: center;
}

.footer__logo {
	width: 64px;
	flex-shrink: 0;
}

.footer__logo img {
	display: block;
	max-width: 100%;
	height: auto;
}

.footer__nav {
	font-weight: 300;
	font-size: 14px;
	line-height: 18px;
	color: #fff;
	margin-left: auto;
}

.footer__nav li + li {
	margin-left: 26px;
}

.footer__nav ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.footer__nav a {
	font-weight: 300;
	font-size: 14px;
	line-height: 18px;
	color: #fff;
	text-decoration: none;
	transition: all 0.2s ease-out;
}

.footer__nav a:hover {
	color: #EC6C2E;
}

.footer__middle {
	display: flex;
	align-items: center;
	margin-top: 16px;
}

.footer__phone a {
	display: inline-block;
	font-weight: 700;
	font-size: 14px;
	line-height: 18px;
	color: #EC6C2E;
	padding: 5px;
	text-decoration: none;
	border: 2px solid #EC6C2E;
}

.footer__search {
	width: 18px;
	height: 18px;
	background-repeat: no-repeat;
	background-size: 100%;
	background-image: url(../img/icon-search.svg);
	margin-left: auto;
	transition: all 0.2s ease-out;
}

.footer__profile {
	width: 17px;
	height: 20px;
	background-repeat: no-repeat;
	background-size: 100%;
	background-image: url(../img/icon-profile.svg);
	margin-left: 18px;
	transition: all 0.2s ease-out;
}

.footer__search:hover {
	background-image: url(../img/icon-search-hover.svg);
}

.footer__profile:hover {
	background-image: url(../img/icon-profile-hover.svg);
}

.footer__bottom {
	display: flex;
	align-items: flex-start;
	margin-top: 50px;
}

.footer__address {
	order: 2;
	font-weight: 300;
	font-size: 10px;
	line-height: 13px;
	color: #fff;
	width: 162px;
	margin-left: auto;
}

.footer__copyright {
	order: 1;
	font-weight: 300;
	font-size: 10px;
	line-height: 13px;
	color: #fff;
}

/* ==========================================================================
   OWL CAROUSEL
   ========================================================================== */
.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	/* position relative and z-index fix webkit rendering fonts issue */
	position: relative;
	z-index: 1;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	/* fix for flashing background */
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	backface-visibility: hidden;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
	display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
	cursor: pointer;
	cursor: hand;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-hidden {
	opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
	display: none;
}

.owl-carousel.owl-drag .owl-item {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}

/* No Js */
.no-js .owl-carousel {
	display: block;
}

/*
*  Owl Carousel - Animate Plugin
*/
.owl-carousel .animated {
	-webkit-animation-duration: 1000ms;
	animation-duration: 1000ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/*
* 	Owl Carousel - Auto Height Plugin
*/
.owl-height {
	transition: height 500ms ease-in-out;
}

/*
* 	Owl Carousel - Lazy Load Plugin
*/
.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	backface-visibility: hidden;
}

/*
* 	Owl Carousel - Video Plugin
*/
.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000;
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url("owl.video.play.png") no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition: -webkit-transform 100ms ease;
	transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
	-webkit-transform: scale(1.3, 1.3);
	-ms-transform: scale(1.3, 1.3);
	transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
	display: none;
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
}

/* ==========================================================================
   MEDIA
   ========================================================================== */
@media only screen and (max-width : 1059.98px) {
	.container {
		width: 960px;
	}

	.header__nav {
		display: none;
	}

	.header__search {
		margin-left: 20px;
	}
    
    .header__telegram {
		margin-left: auto;
	}

	.header__btn {
		display: flex;
	}


	.header__nav {
		margin: 0;
		width: 260px;
		z-index: 20;
		background: #fff;
		padding: 30px 20px;
		display: block;
		position: fixed;
		left: -290px;
		top: 0;
		bottom: 0;
		overflow-y: auto;
		box-shadow: 0px 5px 10px rgba(24, 24, 24, 0.1);
		transition: all 0.2s ease-out;
	}

	.header__nav.active {
		left: 0;
	}

	.header__nav ul {
		display: block;
	}

	.header__nav li + li {
		margin-left: 0;
		margin-top: 15px;
	}

	.header__nav a {
		color: #3E4249;
	}

	.columns__left {
		margin-right: 30px;
	}

	.divide__img {
		width: 190px;
	}
}

@media only screen and (max-width : 991.98px) {
	* {
		-webkit-tap-highlight-color: transparent;
	}

	.container {
		width: 720px;
	}

	.slider__item {
		background-size: cover;
		position: relative;
	}

	.slider__item:before {
		content: '';
		position: absolute;
		background: #000;
		opacity: 0.3;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
	}

	.slider__block {
		max-width: 100%;
		margin-left: 0;
	}

	.slider__content {
		height: auto;
		padding: 100px 0 150px;
		position: relative;
		z-index: 1;
	}

	.slider .owl-nav {
		display: none;
	}

	.footer__logo {
		margin-bottom: 15px;
	}

	.footer__top {
		display: block;
	}

	.footer__nav ul {
		flex-wrap: wrap;
		margin-left: -15px;
		margin-top: -10px;
	}

	.footer__nav li {
		margin-left: 15px;
		margin-top: 10px;
	}

	.footer__nav li + li {
		margin-left: 15px;
	}

	.divide__col {
		width: 100%;
	}

	.divide__img {
		width: 238px;
	}

	.submenu__col {
		width: 100%;
	}

	.products__img {
		width: 250px;
	}

	.card__img {
		width: 250px;
	}
}

@media only screen and (max-width : 767.98px) {
	.container {
		width: 540px;
	}

	.slider__title {
		font-size: 56px;
	}

	.slider__description {
		font-size: 18px;
		line-height: 1.5;
	}

	.sections__col {
		width: 100%;
	}

	.about__top {
		display: block;
	}

	.about__logo {
		margin-bottom: 15px;
	}

	.categories__row {
		margin-top: -20px;
	}

	.categories__col {
		width: 100%;
		margin-top: 20px;
	}

	.footer {
		margin-top: 80px;
	}

	.about {
		margin-top: 80px;
	}

	.sections {
		margin-top: 80px;
	}

	.columns {
		padding-top: 30px;
	}

	.columns__row {
		display: block;
	}

	.columns__left {
		display: none;
	}

	.breadсrumbs {
		margin-bottom: 30px;
	}

	.info__icon {
		width: 100px;
	}

	.info__title {
		padding-left: 30px;
	}

	.info__text {
		padding-left: 30px;
	}

	.faq__icon {
		width: 100px;
	}

	.faq {
		margin-top: 80px;
	}

	.products__img {
		width: 200px;
	}

	.submenu + .products {
		margin-top: 80px;
	}

	.card__img {
		width: 200px;
	}

	.card__tab {
		padding-left: 15px;
		padding-right: 15px;
	}

	.card__tabs {
		margin: 40px 0 30px;
	}
}

@media only screen and (max-width : 575.98px) {
	.container {
		width: 100%;
	}

	.categories__name {
		font-size: 16px;
		line-height: 1.5;
	}

	.slider__title {
		font-size: 31px;
		line-height: 1.5;
	}

	.slider__description {
		margin-top: 15px;
		padding-top: 15px;
	}

	.slider__description {
		font-size: 16px;
	}

	.header__phone {
		display: none;
	}

	.header__nav .header__phone {
		display: block;
		margin: 0 0 20px 0;
	}

	.header__nav .header__phone a {
		color: #EC6C2E;
	}

	.sections__item {
		padding: 20px;
	}

	.sections__description:before {
		right: -20px;
	}

	.categories__icon {
		width: 80px;
	}

	.categories__item {
		height: 80px;
	}

	.sections__description {
		font-size: 14px;
		line-height: 1.5;
	}

	.about__text {
		font-size: 14px;
		line-height: 1.5;
	}

	.contacts {
		font-size: 14px;
		line-height: 1.5;
	}

	.footer__bottom {
		display: block;
	}

	.footer__address {
		width: auto;
		margin-left: 0;
		margin-bottom: 10px;
	}

	.divide__img {
		width: 120px;
	}

	.divide__name {
		padding: 0 20px;
		font-size: 14px;
		line-height: 1.5;
	}

	.faq__icon {
		width: 80px;
	}

	.info__icon {
		width: 80px;
	}

	.info__text {
		font-size: 14px;
		line-height: 1.5;
		padding-left: 20px;
	}

	.faq__text {
		font-size: 14px;
		line-height: 1.5;
		padding-left: 20px;
	}

	.info__title {
		font-size: 13px;
		line-height: 1.4;
		padding-left: 20px;
		padding-bottom: 5px;
	}

	.faq__title {
		font-size: 13px;
		line-height: 1.4;
		padding-left: 20px;
		padding-bottom: 5px;
	}

	.submenu__img {
		width: 120px;
	}

	.submenu__name {
		padding: 0 20px;
		font-size: 14px;
		line-height: 1.5;
	}

	.products__item {
		display: block;
	}

	.products__img {
		max-width: 383px;
		width: auto;
		margin-bottom: 20px;
	}

	.card__row {
		display: block;
	}

	.card__img {
		max-width: 383px;
		width: auto;
		margin-bottom: 20px;
	}

	.card__tabs {
		overflow-x: auto;
	}

	.card__tabs::-webkit-scrollbar {
		display: none;
	}

	.card__tab {
		flex-shrink: 0;
		font-size: 14px;
		margin-bottom: 0;
		border-bottom: none !important;
		position: relative;
		border: none !important;
		padding-left: 0;
		padding-right: 0;
	}

	.card__tab + .card__tab {
		margin-left: 13px;
	}

	.card__tab.active:after {
/*		content: '';
		position: absolute;
		left: 0;
		right: 0;
		bottom: -1px;
		height: 1px;
		background: #fff;*/
	}

	.card__text {
		font-size: 14px;
		line-height: 1.5;
	}
}

/*==========  Mobile First Method  ==========*/
@media only screen and (min-width : 576px) {

}

@media only screen and (min-width : 768px) {

}

@media only screen and (min-width : 992px) {

}

@media only screen and (min-width : 1200px) {

}