@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Rubik:wght@300;400;500;600;700&display=swap');
/* ------------------------------------------------------------- *
 * Global variables
/* ------------------------------------------------------------- */

:root {
	--color-dark: #2F2F2F;
	--color-green: #148147;
	--color-vimek: #0580C4;
	--light-grey: #F7F7F7;
}

/* ------------------------------------------------------------- *
 * General
/* ------------------------------------------------------------- */

* { box-sizing: border-box; }

html, body { padding: 0; margin: 0; }

body {
	position: relative;
	background-color: #fff;
	line-height: 1.7;
	font-family: 'Open Sans';
	font-size: 14px;
	font-weight: normal;
	color: #2f2f2f;
}

main {
	overflow: hidden auto;
}

p { 
	color: var(--white-color);
	margin: 0 0 10px; 
}

a {
	color: currentColor;
	text-decoration: none;
	outline: none;
}
a {
	transition: .2s ease-in;
}
a:hover, a:focus {
	color: currentColor;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans';
    font-weight: normal;
	margin: 0;
}


img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

b, {
	font-weight: bold;
	font-weight: 700;
}

button {
	outline: none;
	border: 0;
}
button:focus { 
	outline: none; 
}

.small, small {
	font-size: 80%;
}

.no-scroll {
	overflow: hidden;
}

.main {
	padding-top: 85.50px;
}
@media (max-width: 992px) {
	.main {
		padding-top: 75.84px;
	}
}
/* Selection */
::selection {
	color: #FFF;
	text-shadow: none;
	background: var(--color-vimek);
}
::-moz-selection {
	color: #FFF;
	text-shadow: none;
	background: var(--color-vimek);
}
::-webkit-selection {
	color: #FFF;
	text-shadow: none;
	background: var(--color-vimek);
}

/* Lists */
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.list-inline {
	padding-left: 0;
	margin-left: -5px;
	list-style: none;
}
.list-inline > li {
	display: inline-block;
	padding-right: 5px;
	padding-left: 5px;
}

figure {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

section {
	position: relative;
	padding: 40px 0;
}
@media (max-width: 767px) {
	section {
		padding: 40px 0;
	}
}
.container {
	width: 100%;
	max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 60px;
    padding-right: 60px;
}
.container-fluid {
	width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
@media (max-width: 1200px) {
	.container {
		padding-left: 30px;
		padding-right: 30px;
	}
}
@media (max-width: 767px) {
	.container {
		padding-left: 15px;
		padding-right: 15px;
	}
}

.section-title {
	margin-bottom: 20px;
}
.section-title h1 {
	color: #2f2f2f;
    font-size: 26px;
    line-height: 100%;
    font-weight: 300;
    margin-bottom: 15px;
	letter-spacing: -0.65px;
	margin-bottom: 0;
}
.section-title p {
	color: #2F2F2F;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 110%; /* 14.8px */
	letter-spacing: -0.16px;
}
.section-page-title h1 {
	font-size: 75px;
}
@media (max-width: 1200px) {
	.section-title h1 {
/*		font-size: 45px;*/
	}
	.section-page-title h1 {
/*		font-size: 64px;*/
	}
}
@media (max-width: 767px) {
	.section-title {
		margin-bottom: 30px;
	}
	.section-title h1 {
/*		font-size: 36px;*/
	}
	.section-page-title h1 {
/*		font-size: 36px;*/
	}
}

.color-vimek {color: var(--color-vimek)!important}
.color-green {color: var(--color-green)}


/* ------------------------------------------------------------- *
 * Buttons
/* ------------------------------------------------------------- */
.btn {
	background: var(--color-vimek);
	padding: 20px 30px;
	color: #FFF;
	font-family: 'Open Sans';
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFF;
}
.btn:focus {color: #fff;}
.btn-solid {
	padding: 20px 30px;
	background: #FFF;
	color: var(--color-dark);
}
.btn-solid img {
	width: auto;
	max-width: 50px;
	margin-left: 10px;
	transition: .2s linear;
}
.btn-solid:hover img {
	transform: translateX(7px);
}
.btn-solid:focus {color: var(--color-dark);}
.btn-green {
	background: var(--color-vimek);
	color: #FFF;
}
.btn-green:hover {
	color: #fff;
}
.btn-solid:focus {color: #fff;}
.btn-bordered {
	border: 1px solid #FFF;
	background: transparent;
}
.btn-bordered:hover {
	background: #fff;
	color: var(--color-dark);
}
.btn-link {
	color: var(--green-main, #148147);
	font-family: Avenir Next;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 92.5%; /* 16.65px */
	letter-spacing: -0.18px;
	text-decoration-line: underline;
}
.button-wrap {
	display: flex;
}
@media (max-width: 1200px) {
	.btn {
		font-size: 18px;
		padding: 15px 18px;
	}
	.btn-link {
		font-size: 16px;
	}
}
@media (max-width: 992px) {
	.btn {
		font-size: 16px;
	}
}
@media (max-width: 767px) {
	.btn {
		padding: 14px 20px;
	}
	.btn-solid img {
		max-width: 38px;
	}
}


/* ------------------------------------------------------------- *
 * Header
/* ------------------------------------------------------------- */
.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 998;
	border-top: 4px solid var(--color-vimek);
	transition: .2s ease-in;
}
.header .header-inner{
	padding: 8px 0;
	justify-content: space-between;
}
.header.header-scroll {
	top: 0;
	position: fixed;
}
.header .logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 135px;
}
.header .header-menu {
	display: flex;
    align-items: center;
    background: #FFF;
    padding: 0 15px;
    margin-right: 5px;
}
.header .header-menu ul.menu-nav {
	display: flex;
	justify-content: space-between;
}
.header .header-menu ul.menu-nav > li {
	padding-right: 40px;
	padding-top: 20px;
    padding-bottom: 20px;
}
.header .header-menu ul.menu-nav li:last-child {
	padding-right: 0;
}
.header .header-menu ul.menu-nav > li.dropdown-item > a {
	position: relative;
}
.header .header-menu ul.menu-nav > li.dropdown-item > a:after { 
	content:  ' ⌄';
	position: absolute;
    top: 13px;
    right: -14px;
}
.header .header-menu ul.menu-nav li a:only-child:after { 
	content: ''; 
}
.header .header-menu ul.menu-nav li > a {
	color: #2F2F2F;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	padding: 17px 0;
}
.header .header-menu ul.menu-nav li:hover > a {
	color: var(--color-vimek);
	text-decoration: underline;
}

.header .header-menu ul.menu-nav ul.dropdown {
	display: none;
	position: absolute; 
	top: 70px;
	background: #FFF;
	border: 1px solid #eeeeee;
}
/* Display Dropdowns on Hover */
.header .header-menu ul.menu-nav li:hover > ul.dropdown {
	display: flex;
    flex-direction: column;
    padding: 20px;
}
.header .header-menu ul.menu-nav ul.dropdown li {
	display: block;
	position: relative;
	border-bottom: 1px solid #e1e4e6;
}
.header .header-menu ul.menu-nav ul.dropdown li a {
	display: flex;
    align-items: center;
    justify-content: flex-start;
}
.header .header-menu ul.menu-nav ul.dropdown li a img {
	width: 60px;
	margin-right: 10px;
}
.header .header-menu ul.menu-nav ul.dropdown li a {
	font-size: 14px;
	text-transform: none;
	font-weight: normal;
	padding: 6px;
}
.header .header-menu ul.menu-nav ul.dropdown li:hover {
	border-bottom: 1px solid var(--color-vimek);
}
.header .header-menu ul.menu-nav ul.dropdown li:hover a {
	text-decoration: none;
	color: inherit;
}


.header .header-phone {
	display: flex;
	align-items: center;
	background: #FFF;
	padding: 0 20px;
}
.header .header-phone svg {
	margin-right: 10px;
}
.header .header-phone a {
	color: #2F2F2F;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.header .header-button {
	display: flex;
	align-items: center;
	margin-left: 5px;
}
.header .header-button .btn {
	padding: 15px 30px;
	border: none;
}

.header .burger-menu {
    position: relative;
 	background-color: transparent;
 	border: none;
 	cursor: pointer;
 	display: none;
 	padding: 0;
 	z-index: 9999;
 	margin-left: 15px;
}
.header .burger-menu .line {
	fill: none;
	stroke: #2F2F2F;
	stroke-width: 6;
	transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header .burger-menu .line1 {
  	stroke-dasharray: 60 207;
  	stroke-width: 5;
}
.header .burger-menu .line2 {
	stroke-dasharray: 60 60;
	stroke-width: 5;
}
.header .burger-menu .line3 {
  	stroke-dasharray: 60 207;
  	stroke-width: 5;
}
.header .burger-menu.opened .line1 {
  	stroke-dasharray: 90 207;
  	stroke-dashoffset: -134;
  	stroke-width: 5;
}
.header .burger-menu.opened .line2 {
  	stroke-dasharray: 1 60;
  	stroke-dashoffset: -30;
  	stroke-width: 5;
}
.header .burger-menu.opened .line3 {
  	stroke-dasharray: 90 207;
  	stroke-dashoffset: -134;
  	stroke-width: 5;
}

.lang-switcher-dropdown {
  position: relative;
}

p.lang-switcher-dropdown-trigger {
	margin-top: 0;
	margin-bottom: 0;
}

.lang-switcher-dropdown-trigger {
	position: relative;
	z-index: 999;
}

.lang-switcher-dropdown-trigger:after {
	display: block;
	position: absolute;
	content: '';
	right: 5px;
	top: 14px;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #2F2F2F;
}

.lang-switcher-dropdown-trigger,
.lang-switcher-dropdown ul a {
	display: block;
	width: 50px;
	cursor: pointer;
	padding: 6px 4px;
	color: #2F2F2F;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.lang-switcher-dropdown ul {
	display: none;
	position: absolute;
    top: 55px;
	left: 6px;
	margin-top: 0;
	padding: 0;
	z-index: 1000;
}

.lang-switcher-dropdown li {
	list-style-type: none;
}

.lang-switcher-dropdown ul a,
.lang-switcher-dropdown ul a:link,
.lang-switcher-dropdown ul a:visited {
	position: relative;
	display: block;
	float: right;
	background-color: var(--color-vimek);
	min-width: 60px;
}

.lang-switcher-dropdown ul a:hover,
.lang-switcher-dropdown ul a:focus {
	border-bottom: none;
	background-color: #009AFF;
	color: #fff;
}

/* JS interactivity */
.no-js .lang-switcher-dropdown ul,
.lang-switcher-dropdown.active ul {
	display: block;
}
.lang-switcher-dropdown.active {
/*	color: #fff;*/
}
.lang-switcher-dropdown.active:after {
	border-top-color: #fff;
}
#lang-switcher a,
#lang-switcher {
	padding-left: 30px;
	background-image: url(../images/icons/ua.png);
	background-repeat: no-repeat;
	background-position: 8px center;
	color: #FFF;
}
#lang-switcher a.en,
#lang-switcher .en {
	background-image: url(../images/icons/en.png);
}
#lang-switcher {
	display: flex;
    align-items: center;
}
@media (max-width: 1450px) {
	.header .header-menu ul.menu-nav li {
		padding-right: 30px;
	}
}
@media (max-width: 1300px) {
	.header .header-phone {
		padding: 0 15px;
	}
	.header .header-phone svg {
		margin-right: 0;
	}
	.header .header-phone span {
		display: none;
	}
	.header .header-button .btn {
		padding: 15px;
		font-size: 15px;
	}
	.header .header-menu ul.menu-nav li {
		padding-right: 30px;
	}
	.header .header-menu ul.menu-nav li a {
		font-size: 15px;
	}
	.header .header-menu ul.menu-nav ul.dropdown {
		top: 47.5px;
	}
	.header .header-menu ul.menu-nav ul.dropdown li a {
		font-size: 14px;
	}
}
@media (max-width: 992px) {
	.header .header-menu {
		display: none;
	}
	.header .burger-menu {
		display: flex!important;
		align-items: center;
		margin: 0 7.5px;
	}
}
@media (max-width: 767px) {
	.header .logo {
		width: 120px;
		padding: 3px 5px;
	}
	.header .header-phone {
		padding: 0 10px;
	}
	.header .header-button .btn {
		padding: 10px;
		font-size: 14px;
	}
	.header .burger-menu {
		margin-left: 10px;
	}
	.header.header-scroll {
		padding: 8px 0;
		background: #FFF;
		border-bottom: 1px solid #d9d9d9;
		box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.15);
	}
	.header.header-scroll .header-inner {
		border: 0;
	}
	#lang-switcher {
		margin-left: auto;
	}
}
@media (max-width: 350px) {
	.header .logo {
		width: 125px;
	}
	.header .burger-menu {
		margin-left: 5px;
	}
}

/* ------------------------------------------------------------- *
 * Mobile Menu
/* ------------------------------------------------------------- */
.sidebar-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 990;
    width: 100%;
    height: 200%;
    background: rgb(0 0 0 / 80%);
}
.sidebar-background.active {
    display: block;
    z-index: 990;
}
.sidebar {
    position: fixed;
    width: 320px;
    top: 0;
    right: -100%;
    height: 100%;
    background: #fff;
    z-index: 999;
    transition: .3s;
    overflow-y: auto;
}
@media screen and (max-width: 600px) {
    .sidebar {
        width:90%
    }
}
.sidebar-active {
    top: 0;
    right: 0;
    height: 100%;
    background: #fff;
    z-index: 999;
    transition: .3s;
    padding-bottom: 20px;
}
.sidebar-info {
    padding: 0 20px 80px
}
.sidebar-info span {
    font-size: 16px;
    width: 100%;
    color: var(--color-dark);
    margin-bottom: 10px;
    display: block
}
.sidebar-info a {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    text-decoration: none;
    margin-bottom: 2px
}
.sidebar-info p {
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    color: var(--color-dark);
    margin-bottom: 20px
}
.sidebar-info_title {
    line-height: 25px;
    font-size: 20px;
    font-weight: 500;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 10px
}
.sidebar-info .sidebar-time span {
    margin-top: 0;
    margin-bottom: 0;
    color: #2f2f2f;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%
}
.sidebar-info .sidebar-phone i {
    align-self: flex-start
}
.sidebar-info .sidebar-feedback div p,.sidebar-info .sidebar-phone div p,.sidebar-info .sidebar-time div p {
    color: #2f2f2f;
    font-size: 12px;
    font-style: normal;
    font-weight: 200;
    line-height: 150%;
    margin-top: 3px;
    margin-bottom: 0
}
.sidebar-info .sidebar-feedback,.sidebar-info .sidebar-phone,.sidebar-info .sidebar-time {
    display: flex;
    margin-bottom: 10px
}
.sidebar-info .sidebar-feedback i,.sidebar-info .sidebar-phone i,.sidebar-info .sidebar-time i {
    position: relative;
    top: 4px
}
.sidebar-info .sidebar-feedback div,.sidebar-info .sidebar-phone div,.sidebar-info .sidebar-time div {
    display: inline-block;
    width: calc(100% - 50px);
    margin-left: 10px
}
.sidebar-info .sidebar-feedback div a,.sidebar-info .sidebar-phone div a,.sidebar-info .sidebar-time div a {
    font-size: 14px;
    font-weight: 700;
    color: #2f2f2f;
    line-height: 150%;
    text-decoration: underline;
    cursor: pointer
}
.sidebar-info .sidebar-phone div a.a_call_me,.sidebar-info .sidebar-time div a.a_call_me {
    display: block;
    margin-top: 8px
}
.sidebar-info .sidebar-feedback_center,.sidebar-info .sidebar-phone_center,.sidebar-info .sidebar-time_center {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 30px
}
.sidebar-info .sidebar-feedback_center i,.sidebar-info .sidebar-phone_center i,.sidebar-info .sidebar-time_center i {
    margin-bottom: 12px
}
.sidebar-info .sidebar-feedback_center div a,.sidebar-info .sidebar-phone_center div a,.sidebar-info .sidebar-time_center div a {
    font-size: 14px;
    font-weight: 600;
    color: #346da6;
    line-height: 17px;
    text-decoration: underline;
    cursor: pointer
}
.sidebar-info .sidebar-feedback_center div a.a_call_me,.sidebar-info .sidebar-phone_center div a.a_call_me,.sidebar-info .sidebar-time_center div a.a_call_me {
    display: block;
    margin-top: 8px
}
.sidebar-info .sidebar-feedback_center div p,.sidebar-info .sidebar-phone_center div p,.sidebar-info .sidebar-time_center div p {
    margin-bottom: 0
}
.sidebar-list {
    top: 0;
    flex-direction: column;
    position: relative;
    align-items: flex-start;
    padding: 0 20px 8px
}
.sidebar-list:after {
    content: "";
    position: absolute;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    background: #dce2eb;
    bottom: 3px;
}
.sidebar-list li {
    padding: 0 0 10px
}
.sidebar-list li:last-child {
    margin-bottom: 0
}
.sidebar-list li img {
    height: 13px;
    width: 7px;
    margin-left: auto
}
.sidebar-list a {
    text-decoration: none;
    color: var(--color-dark);
    font-size: 14px;
    display: flex;
    align-items: center;
    line-height: 140%
}
.sidebar-list a.active span {
    font-weight: 600
}
.sidebar-list .sidebar__account a {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-dark);
    line-height: 140%;
    margin-right: 10px;
    display: flex;
    align-items: center
}
.sidebar-list .sidebar__account img {
    margin-left: 10px;
    transform: rotate(180deg)
}
.sidebar-wrap {
    overflow-x: hidden;
    padding-top: 15px;
}
.sidebar .mobile-menu-header {
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    padding: 10px 20px;
    background: none;
/*    margin-bottom: 10px;*/
}
.sidebar .mobile-menu-header:last-child {
    margin-bottom: 0
}
.sidebar .mobile-menu-header i {
    margin-right: 0
}
.sidebar .mobile-menu-header span {
    float: left
}
.sidebar .mobile-menu-header.light {
    background: #fff
}

.sidebar-info .messengers-wrap {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding-bottom: 15px;
    border-bottom: 1px solid #dce2eb;
    margin-bottom: 15px;
}
.sidebar-info .messengers-wrap .messengers-title {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    padding: 10px 0;
    background: none;
    margin-bottom: 10px;
}
.sidebar-info .messengers-wrap .messengers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.sidebar-info .messengers-wrap .messengers a {
    font-size: 16px;
    font-weight: 700;
    color: var(--light-grey);
    text-decoration: none;
    margin-bottom: 2px;
    width: 32%;
    border-radius: 5px;
    background: #efefef;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px 6px 4px;
    text-decoration: none;
}
.sidebar-info .messengers-wrap .messengers a span {
    color: var(--color-dark);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    margin-top: 5px;
    text-decoration: none;
    margin-bottom: 0;
    width: auto;
}
.sidebar-info .messengers-wrap .messengers a .icon {
    width: 20px;
    height: 20px;
    background-size: 100%;
}
.sidebar-info .messengers-wrap .messengers a .icon.icon-telegram {
    background-image: url('../images/icons/telegram.svg');
}
.sidebar-info .messengers-wrap .messengers a .icon.icon-messenger {
    background-image: url('../images/icons/messenger.svg');
}
.sidebar-info .messengers-wrap .messengers a .icon.icon-facebook {
    background-image: url('../images/icons/facebook.svg');
}
.sidebar-info .messengers-wrap .messengers a .icon.icon-viber {
    background-image: url('../images/icons/viber.svg');
}

.sidebar-info .sidebar-contact .icon {
    width: 15px;
    height: 15px;
    background-size: 100%;
}
.sidebar-info .sidebar-contact .icon.icon-phone {
    background-image: url('../images/icons/ico-phone.svg')
}
.sidebar-info .sidebar-contact .icon.icon-email {
    background-image: url('../images/icons/ico-envelope.svg')
}
.sidebar-info .sidebar-contact .icon.icon-clock {
    background-image: url('../images/icons/ico-clock.svg')
}
.sidebar-info .sidebar-contact .icon.icon-time {
    background-image: url('../images/icons/ico-time.svg')
}

/* ------------------------------------------------------------- *
 * Section Intro
/* ------------------------------------------------------------- */
.section-intro {
	padding: 0;
}
.section-intro .intro-slider {
	width: 100%;
	height: 100%;
	position: relative;
}
.section-intro .intro-slider .swiper-slide {
	min-height: 345px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.section-intro .intro-slider .swiper-slide {
	display: flex;
	align-items: flex-end;
	text-align: left;
}
.section-intro .intro-slider .slide-caption {
	background: rgb(0 0 0 / 50%);
	max-width: 800px;
	padding: 12px;
	margin-bottom: 5px;
} 
.section-intro .intro-slider .slide-caption h1 {
	font-size: 130%;
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 100%;
	color: #fff;
}
.section-intro .intro-slider .slide-caption p {
	font-size: 14px;
	color: #fff;
	margin-bottom: 0;
}
/* ------------------------------------------------------------- *
 * Section About
/* ------------------------------------------------------------- */
.section-about .tabs-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.section-about .tabs-menu li {
	width: calc(33.3% - 5px);
}
.section-about .tabs-menu li a {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	font-weight: 600;
	padding: 10px 0;
	background: var(--color-vimek);
	color: #FFF;
}
.section-about .tabs-menu li a:hover {
	background-color: #000;
}
.section-about .tabs-menu li a img {
	width: 30px;
	margin-right: 10px;
}
.section-about .about-text {
	margin-top: 40px;
}
.section-about .about-text h3 {
	color: #2f2f2f;
    font-size: 26px;
    line-height: 100%;
    font-weight: 300;
    margin-bottom: 15px;
}
@media (max-width: 992px) {
	.section-about .tabs-menu li a {
		flex-direction: column;
		text-align: center;
		font-size: 14px;
	}
	.section-about .tabs-menu li a img {
		margin-right: 0;
	}
}
/* ------------------------------------------------------------- *
 * Section Products Main
/* ------------------------------------------------------------- */
.section-products-main {
	background: var(--light-grey);
}
.section-products-main .products-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.section-products-main .products-inner .product-wrap {
	width: calc(50% - 10px);
	display: flex;
	flex-direction: column;
}
.section-products-main .product-wrap .product-banner {
	position: relative;
}
.section-products-main .product-wrap .product-banner img {
	transform: scale(1.0);
	transition: .2s ease-in;
}
.section-products-main .product-wrap:hover .product-banner img {
	transform: scale(1.05);
}
.section-products-main .product-wrap .product-banner-title {
	position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: rgba(42, 129, 198, 0.7);
    width: 100%;
    color: #fff;
    padding: 5px 10px;
    font-size: 20px;
    font-weight: 600;
}
.section-products-main .product-wrap .product-info {
	background: #fff;
	padding: 15px 10px;
	margin-bottom: 30px;
}
.section-products-main .product-wrap .product-info p {
	margin-bottom: 0;
}
@media (max-width: 992px) {
	.section-products-main .products-inner .product-wrap {
		width: 100%;
	}
	.section-products-main .products-inner .product-wrap:last-child .product-info {
		margin-bottom: 0;
	}
}
/* ------------------------------------------------------------- *
 * Section Services Main
/* ------------------------------------------------------------- */
.section-services .services-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.section-services .services-inner .service-wrap {
	width: calc(50% - 10px);
	display: flex;
	flex-direction: column;
	cursor: pointer;
}
.section-services .service-wrap .service-banner {
	position: relative;
	display: flex;
	overflow: hidden;
}
.section-services .service-wrap .service-banner img {
	transform: scale(1.05);
	transition: .2s ease-in;
}
.section-services .service-wrap:hover .service-banner img {
	transform: scale(1.0);
}
.section-services .service-wrap .service-banner-title {
	position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: rgba(42, 129, 198, 0.7);
    width: 100%;
    color: #fff;
    padding: 5px 10px;
    font-size: 20px;
    font-weight: 600;
}
.section-services .service-wrap .service-info {
	background: var(--light-grey);
	padding: 15px 10px;
	margin-bottom: 30px;
}
.section-services .service-wrap .service-info p {
	margin-bottom: 0;
}
@media (max-width: 992px) {
	.section-services .services-inner .service-wrap {
		width: 100%;
	}
}
/* ------------------------------------------------------------- *
 * Footer
/* ------------------------------------------------------------- */
.footer {
	background: var(--light-grey);
	padding: 40px 0 0 0;
}
.footer .footer-inner {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.footer .footer-item {
	width: calc(30% - 15px);
	padding-bottom: 20px;
}
.footer .footer-item h4 {
	color: #2F2F2F;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 30px;
}
.footer .footer-item ul li {
	padding-bottom: 15px;
}
.footer .footer-item ul li:last-child {
	padding-bottom: 0;
}
.footer .footer-item ul li a {
	color: #4E4E4E;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.footer .footer-contacts ul li a {
	display: flex;
    align-items: flex-start;
}
.footer .footer-item ul li a .icon {
	margin-right: 10px;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}
.footer .footer-item ul li a .icon.icon-phone {
	background-image: url('../images/icons/ico-phone-2.svg');
}
.footer .footer-item ul li a .icon.icon-send {
	background-image: url('../images/icons/ico-send.svg');
}
.footer .footer-item ul li a .icon.icon-location {
	background-image: url('../images/icons/ico-location.svg');
}

.footer .footer-copyright {
	padding: 20px 0;
	background: #fff;
}
.footer .footer-copyright p {
	margin-bottom: 5px;
	font-size: 12px;
}
.footer .footer-copyright p a:hover {
	color: var(--color-vimek);
	text-decoration: underline;
}
.footer .footer-copyright ul li a {
	font-size: 12px;
	color: var(--color-vimek);
}
@media (max-width: 992px) {
	.footer .footer-inner {
		flex-direction: column;
	}
	.footer .footer-item {
		width: 100%;
		padding-bottom: 25px;
	}
	.footer .footer-item p {
		margin-bottom: 0;
	}
	.footer .footer-item ul li {
		padding-bottom: 10px;
	}
	.footer .footer-item h4 {
		margin-bottom: 20px;
	}
}
/* ------------------------------------------------------------- *
 * Section Page Header / BreadCrumb
/* ------------------------------------------------------------- */
.section-page-header {
	min-height: 345px;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.section-breadcrumb {
	background: var(--light-grey);
}
.section-breadcrumb ul {
	display: flex;
	flex-direction: row;
}
.section-breadcrumb ul li {
	position: relative;
	padding-right: 15px;
}
.section-breadcrumb ul li:nth-child(1):before {
	content: "/";
	position: absolute;
	right: 5px;
	top: 0;
}
.section-breadcrumb ul li a:hover {
	text-decoration: underline;
}
/* ------------------------------------------------------------- *
 * Section Product Page
/* ------------------------------------------------------------- */
.section-product .product-wrapper {
	display: flex;
	flex-direction: row;
}
.section-product .product-category {
	width: calc(30% - 70px);
	margin-right: 50px;
}
.section-product .product-category ul {
	padding-right: 50px;
}
.section-product .product-category ul li {
	border-bottom: 1px solid #eee;
    font-size: 16px;
    margin: 12px 0;
}
.section-product .product-category ul li a {
	display: block;
	padding: 14px 0;
    color: #2f2f2f;
    line-height: 16px;
}
.section-product .product-category ul li a.active {
	color: var(--color-vimek);
}
.section-product .product-category ul li a:hover {
	color: var(--color-vimek);
}

.section-product .product-wrap {
	width: 70%;
	border-right: 1px solid #eee;
	border-left: 1px solid #eee;
	padding: 0 50px;
}
.section-product .product-wrap .product-title {
	font-size: 24px;
    line-height: 26px;
    font-weight: 400;
    color: var(--color-vimek);
    margin-bottom: 30px;
}
.section-product .product-wrap .product-banner {
	border: 1px solid #eee;
}
.section-product .product-wrap .product-info h3 {
	margin-top: 25px;
    margin-bottom: 12px;
    color: var(--color-vimek);
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
}
.section-product .product-wrap .product-info p {}

ul.swiper-wrapper {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
/* Swiper styles */
.swiper-container {
	position: relative;
	max-width: 100%;
	overflow: hidden;
}
/* responive image */
.swiper-container img {
	width: 100%;
	height: auto;
}
.swiper-slide {
	text-align: center;
	width: 100%;
}
/* Swiper custom pagination */
.swiper-pagination-bullet {
	width: 34px;
	height: 34px;
	text-align: center;
	line-height: 34px;
	font-size: 14px;
	color: #000;
	opacity: 1;
	background: rgba(0, 0, 0, 0.3);
}
.swiper-pagination-bullet-active {
	color: #fff;
	background: black;
}
.swiper-button-next, .swiper-button-prev {
	color: var(--color-vimek);
}
/* Product Features */
.product-features {
	width: 100%;
	margin-top: 30px;
}
.product-features .heading {
	color: #1D1D1D;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 22.2px */
	letter-spacing: -0.24px;
	text-transform: uppercase;
	margin-bottom: 30px;
}
.product-table {
	text-align: left;
	overflow: hidden;
	width: 100%;
	display: table;
}
.product-table thead tr,
.product-table thead th {
	background-color: transparent;
}
.product-table thead th {
	padding-bottom: 12px;
}
.product-table th h1 {
	margin-top: 25px;
    color: var(--color-vimek);
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    line-height: 1.5;
}
.product-table tbody td {
	font-weight: normal;
	font-size: .8em;
  	-webkit-box-shadow: 0 2px 2px -2px #0E1119;
	-moz-box-shadow: 0 2px 2px -2px #0E1119;
	box-shadow: 0 2px 2px -2px #0E1119;
}
.product-table tbody td {
	padding-bottom: 2%;
	padding-top: 2%;
  	padding-left:2%;  
}
/* Background-color of the odd rows */
.product-table tbody tr:nth-child(odd) {
	background-color: var(--light-grey);
}
/* Background-color of the even rows */
.product-table tbody tr:nth-child(even) {
	background-color: var(--light-grey);
}
.product-table tbody td:first-child { 
	color: var(--color-dark); 
	width: 35%;
}
.product-table tbody td a {
	text-decoration: underline;
	color: var(--color-vimek)
}
.product-table tbody tr:hover {
	background-color: var(--color-vimek);
	-webkit-box-shadow: 0 6px 6px -6px #0E1119;
 	-moz-box-shadow: 0 6px 6px -6px #0E1119;
	box-shadow: 0 6px 6px -6px #0E1119;
}
.product-table tbody tr:hover a,
.product-table tbody tr:hover td {
   	color: #fff;
}
.product-table tbody ::selection {
	color: var(--color-dark);
	text-shadow: none;
	background: var(--light-grey);
}
.product-table tbody ::-moz-selection {
	color: var(--color-dark);
	text-shadow: none;
	background: var(--light-grey);
}
.product-table tbody ::-webkit-selection {
	color: var(--color-dark);
	text-shadow: none;
	background: var(--light-grey);
}
.product-table tfoot tr {
	background-color: var(--light-grey);
}
.product-table tfoot tr th {
	padding-bottom: 2%;
    padding-top: 2%;
    padding-left: 2%;
}
.product-table tfoot tr th p {
	margin-bottom: 0;
	font-size: 14px;
	font-weight: normal;
}
/* Catalog PDF Item */
.catalog-pdf {
	display: inline-flex;
	margin-right: 20px;
	margin-top: 20px;
}
.catalog-pdf a {
	color: #1D1D1D;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 16.65px */
	letter-spacing: -0.18px;
	display: flex;
	align-items: center;
}
.catalog-pdf a img {
	width: 35px;
	margin-right: 15px;
}
@media (max-width: 1200px) {
	.product-table tbody td {
		font-size: 14px;
	}
}
@media (max-width: 992px) {
	.desktop-column-reverse {
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}
	.section-product .product-wrapper {
		flex-direction: column;
	}
	.section-product .product-category,
	.section-product .product-wrap {
		width: 100%;
		border: 0;
		padding: 0;
	}
	.section-product .product-wrap {
		margin-top: 40px;
	}
	.section-product .product-category ul {
		padding-right: 0;
	}
	.section-product .product-category ul li {
		margin: 0;
		background: #eee;
    	border-bottom: 1px solid #fff;
	}
	.section-product .product-category ul li a {
		color: #2f2f2f;
    	padding-left: 10px;
    	font-size: 14px;
	}
	.section-product .product-category ul li a.active {
		color: #fff;
    	background: var(--color-vimek);
	}
}
@media (max-width: 768px) {
	.product-table tbody tr:nth-child(odd),
	.product-table tbody tr:nth-child(even) {
		display: flex;
	}
	.product-table tbody td {
		width: 50%;
	}
	.product-table tbody td:first-child {
		width: 50%;
		font-weight: 500;
	}
	.mobile-column-reverse {
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}
}
@media (max-width: 350px) {
	.product-table tbody tr:nth-child(odd),
	.product-table tbody tr:nth-child(even) {
		display: block;
		margin-bottom: 5px;
	}
	.product-table tbody td {
		display: block;
		font-size: 13px;
		width: 100%;
	}
	.product-table tbody td:first-child {
		width: 100%;
		font-weight: 500;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}
	.product-table tbody td:nth-child(2) {
		padding-top: 0;
	}
}
/* ------------------------------------------------------------- *
 * Section Contact Page
/* ------------------------------------------------------------- */
.section-contact-page .section-title {
	text-align: center;
}
.section-contact-page .section-title img {
	max-width: 250px;
	margin: 20px auto 0;
}
.section-contact-page .contacts-wrap {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}
.section-contact-page .contacts-wrap .contact-item {
	width: calc(25% - 20px);
	text-align: center;
}
.section-contact-page .contacts-wrap .contact-item h3 {
	font-size: 18px;
	font-weight: 500;
	color: var(--color-vimek);
}
.section-contact-page .contacts-wrap .contact-item a:hover {
	color: var(--color-vimek);
}
@media (max-width: 992px) {
	.section-contact-page .contacts-wrap {
		flex-direction: column;
	}
	.section-contact-page .contacts-wrap .contact-item {
		width: 100%;
		margin-bottom: 20px;
	}
}















