/* ------------------------------------------------------------- *
 * Fonts
/* ------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
/* ------------------------------------------------------------- *
 * Global variables
/* ------------------------------------------------------------- */

:root {
	--dark: #000;
/*	--red: #D93426;*/
/*	--blue: #274060;*/
	--blue: #153A85;
	--blue-text: #061F40;
	--white: #FFFFFF;
	--orange: #F19D41;
	--grey: #F3F3F3;
	--light-grey: #D9D9D9;
	--light-grey-2: #f7f6f6;
	--dark-grey: #838483;
}
/* ------------------------------------------------------------- *
 * General
/* ------------------------------------------------------------- */

* { box-sizing: border-box; }

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

body {
	position: relative;
	background-color: #fff;
	line-height: 1.6;
	font-family: 'Inter';
	font-size: 16px;
	font-weight: normal;
	color: var(--color-dark);
}

main {
	overflow: hidden auto;
}

p { 
	color: var(--blue-text);
	margin: 0 0 30px; 
}

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: 'Inter';
    font-weight: 600;
    line-height: normal;
	margin: 0;
}


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

b, strong {
	font-weight: 600;
}

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

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

.no-scroll {
	overflow: hidden;
}

/* Selection */
::selection {
	color: #FFF;
	text-shadow: none;
	background: var(--orange);
}
::-moz-selection {
	color: #FFF;
	text-shadow: none;
	background: var(--orange);
}
::-webkit-selection {
	color: #FFF;
	text-shadow: none;
	background: var(--orange);
}

/* 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;
}

.list-style-1 {
	margin-left: 2em;
	margin-bottom: 20px;
	list-style: disc;
}

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

section {
	position: relative;
	padding: 75px 0;
}
@media (max-width: 767px) {
	section {
		padding: 50px 0;
	}
}
.container {
	width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
}
.container-sm {
	width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1080px;
}
.container-fluid {
	width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 60px;
    padding-right: 60px;
}
@media (max-width: 1300px) {
	.container {
		padding-left: 30px;
		padding-right: 30px;
		max-width: 1180px;
	}
	.container-fluid {
		padding-left: 30px;
		padding-right: 30px;
	}
}
@media (max-width: 992px) {
	.container-sm {
		padding-left: 30px;
		padding-right: 30px;
	}
}
@media (max-width: 767px) {
	.container,
	.container-sm,
	.container-fluid {
		padding-left: 15px;
		padding-right: 15px;
	}
}

.section-title {
/*	max-width: 800px;*/
	margin: 0 auto 50px;
}
.section-title h1 {
	color: var(--blue-text);
	font-size: 38px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 42.4px */
	margin-bottom: 0;
}
.section-title span {
	display: block;
	color: var(--orange);
}
.section-title p {
	color: var(--blue-text);
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 140%;
	margin-top: 20px;
}
.section-page-title h1 {
	font-size: 75px;
}
.section-title.title-sm h1 {
	font-size: 28px;
}
@media (max-width: 1200px) {
	.section-title h1 {
		font-size: 30px;
	}
	.section-title.title-sm h1 {
		font-size: 25px;
	}
	.section-page-title h1 {
		font-size: 45px;
	}
}
@media (max-width: 992px) {
	.section-title h1 {
		font-size: 35px;
	}
}
@media (max-width: 767px) {
	.section-title {
		margin-bottom: 35px;
	}
	.section-title h1 {
		font-size: 25px;
	}
	.section-title.title-sm h1 {
		font-size: 20px;
	}
	.section-page-title h1 {
		font-size: 25px;
	}
}

.color-red {color: var(--orange)}
.bg-grey {background: var(--light-grey)}
.bg-white {background: #FFF}


/* ------------------------------------------------------------- *
 * Icons
/* ------------------------------------------------------------- */
.icon {
    width: 15px;
    height: 15px;
    background-size: 100%;
}
.icon.icon-phone {
    background-image: url('../images/icons/ico-phone-dark.svg')
}
.icon.icon-email {
    background-image: url('../images/icons/ico-envelope-dark.svg')
}
.icon.icon-arrow {
    background-image: url('../images/icon-arrow-short.svg')
}

/* ------------------------------------------------------------- *
 * Buttons
/* ------------------------------------------------------------- */
.btn {
	background: var(--orange);
	padding: 15px 30px;
	color: #FFF;
	font-family: 'Inter';
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    cursor: pointer;
    border-radius: 50px;
}
.btn:focus {color: #fff;}
.btn-solid img {
	width: auto;
	max-width: 30px;
	margin-left: 10px;
	transition: .2s linear;
}
.btn-solid:hover {
	color: var(--white);
}
.btn-solid:hover img {
	transform: translateX(7px);
}
.btn-solid:focus {color: var(--color-dark);}
.btn-solid:focus {color: #fff;}

.btn svg {
	margin-left: 7px;
}

.btn-link {
	position: relative;
	padding: 3px 0;
	display: inline-flex!important;
}
.btn-link:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 1px;
	background: var(--white);
}

.link {
	display: inline-flex;
	color: var(--blue);
	font-weight: 500;
}


/* ------------------------------------------------------------- *
 * Header
/* ------------------------------------------------------------- */
.header {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	padding: 20px 0;
	z-index: 998;
	transition: .2s ease-in;
	background: transparent;
}
.main-page .header {
	position: fixed;
}
.main-page .header.header-scroll {
	top: 0;
	padding: 14px 0;
	background: var(--blue);
}
.header .header-top {
	display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.header .logo {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 600;
	color: var(--white);
	margin-right: auto;
}
.header .header-menu {
	display: flex;
    align-items: center;
    width: 100%;
    margin-right: auto;
    margin-top: 25px;
}
.header .header-menu ul.menu-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.header .header-menu ul.menu-nav li {
/*	padding: 7px 0 7px 0;*/
	border-top: 1px solid rgb(255 255 255 / 35%);
	width: calc(25% - 30px);
	transition: all .2s ease-in;
}
.header .header-menu ul.menu-nav li.active {
	border-color: var(--white);
}
.header .header-menu ul.menu-nav li:last-child {
	padding-right: 0;
}
.header .header-menu ul.menu-nav li:hover {
	border-color: var(--white);
}

.header .header-menu ul.menu-nav li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: var(--white);
	padding: 7px 0 7px 0;
}
.header .header-menu ul.menu-nav li a img {
	width: 12px;
	opacity: .5;
}
/*.header .header-menu ul.menu-nav li:hover a img {
	opacity: 1;
	transition: all .2s ease-in;
}*/

.header .header-contact {
	display: flex;
	align-items: center;
}
.header .header-contact,
.header .header-contact span {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.header .header-contact svg {
	margin-right: 10px;
}
.header .header-contact.header-messengers svg {
	margin-right: 0;
}

.header .header-phone {
	display: flex;
	align-items: center;
	margin: 0 55px 0 0;
}
.header .header-phone svg {
	margin-right: 6px;
}
.header .header-phone {
	color: var(--white);
	font-size: 14px;
	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: 9px 29px;
	font-size: 13px;
	background: transparent;
	border: 1px solid var(--white);
	border-radius: 50px;
	color: var(--white);
}
.header .header-lang {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 20px;
	border: 1px solid var(--white);
	border-radius: 50px;
	width: 36px;
	height: 36px;
}
.header .header-lang a {
	font-size: 13px;
	color: var(--white);
}

.header .header-menu ul.menu-nav li.dropdown-item {
	position: relative;
}
.header .header-menu ul.menu-nav li .dropdown {
	visibility: hidden;
  	opacity: 0;
	position: absolute;
	top: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	background: #fff;
	margin-top: 12px;
	transform: translateY(40px);
	transition: all .2s ease-in;
	box-shadow: 0 0 14px rgba(0, 0, 0, .06);
}
.header .header-menu ul.menu-nav li.dropdown-item:hover .dropdown {
	visibility: visible;
  	opacity: 1;
	transform: translateY(0);
}
.header .header-menu ul.menu-nav li .dropdown:before {
	content: "";
	display: block;
	position: absolute;
	bottom: 100%;
	width: 0;
	height: 0;
	border-left: 10px solid var(--white);
	border-bottom: 0 solid transparent;
	border-right: 0 solid transparent;
	border-top: 10px solid transparent;
}
.header .header-menu ul.menu-nav li .dropdown a {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 200px;
	height: 200px;
	padding: 20px 20px 20px 30px;
	border-right: 1px solid var(--light-grey);
}
.header .header-menu ul.menu-nav li .dropdown a:last-child {
	border: 0;
}
.header .header-menu ul.menu-nav li .dropdown a span {
	color: var(--dark);
	font-size: 12px;
}
.header .header-menu ul.menu-nav li .dropdown .arrow {
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--orange);
	border-radius: 100px;
	transition: all .2s ease-in;
}
.header .header-menu ul.menu-nav li .dropdown .arrow img {
	width: 8px!important;
	opacity: 1!important;
	-webkit-transform: rotate(-90deg) translateY(.5px);
	transform: rotate(-90deg) translateY(.5px);
}

.header .header-menu ul.menu-nav li .dropdown .dropdown-img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100px;
	opacity: 1;
	transition: all .2s ease-in;
}

.header .header-menu ul.menu-nav li .dropdown a:hover .arrow {
	background: var(--blue);
}
.header .header-menu ul.menu-nav li .dropdown a:hover .dropdown-img {
	opacity: 1;
}

.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: var(--white);
	stroke-width: 3;
	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: 3;
}
.header .burger-menu .line2 {
	stroke-dasharray: 60 60;
	stroke-width: 3;
}
.header .burger-menu .line3 {
  	stroke-dasharray: 60 207;
  	stroke-width: 3;
}
.header .burger-menu.opened .line {
	stroke: var(--white);
}
.header .burger-menu.opened .line1 {
  	stroke-dasharray: 90 207;
  	stroke-dashoffset: -134;
  	stroke-width: 3;
}
.header .burger-menu.opened .line2 {
  	stroke-dasharray: 1 60;
  	stroke-dashoffset: -30;
  	stroke-width: 3;
}
.header .burger-menu.opened .line3 {
  	stroke-dasharray: 90 207;
  	stroke-dashoffset: -134;
  	stroke-width: 3;
}

.main-page .header .logo {
	color: var(--blue);
}
.main-page .header .header-lang a,
.main-page .header .header-phone,
.main-page .header .header-button .btn,
.main-page .header .header-menu ul.menu-nav li a {
	color: var(--blue-text);
}
.main-page .header .header-menu ul.menu-nav li {
	border-top: 1px solid rgb(21 58 133 / 35%);
}
.main-page .header .header-lang,
.main-page .header .header-button .btn {
	border-color: var(--blue-text);
}
.main-page .header .header-menu ul.menu-nav li.active,
.main-page .header .header-menu ul.menu-nav li:hover {
	border-color: var(--blue);
}

.main-page .header.header-scroll .header-menu ul.menu-nav li.active,
.main-page .header.header-scroll .header-menu ul.menu-nav li:hover {
	border-color: var(--white);
}

.main-page .header .burger-menu .line {
	stroke: var(--blue-text);
}

.main-page .header .logo .path-main {
	fill: var(--blue);
}
.main-page .header.header-scroll .logo .path-main {
	fill: var(--white);
}


.header.header-scroll .logo,
.header.header-scroll .header-lang,
.header.header-scroll .header-lang a,
.header.header-scroll .header-phone,
.header.header-scroll .header-button .btn,
.header.header-scroll .header-menu ul.menu-nav li a {
	color: var(--white)!important;
}
.header.header-scroll .header-lang,
.header.header-scroll .header-button .btn,
.header.header-scroll .header-menu ul.menu-nav li.active {
	border-color: var(--white)!important;
}
.header.header-scroll .header-menu ul.menu-nav li {
	border-color: rgb(255 255 255 / 35%);
}
.header.header-scroll .burger-menu .line {
	stroke: #fff;
}
@media (max-width: 1450px) {
	.header .logo {
/*		width: 220px;*/
	}
}
@media (max-width: 1300px) {
	.header .logo {
/*		width: 200px;*/
	}
	.header .header-contact svg {
		margin-right: 10px;
	}
}
@media (max-width: 1200px) {
	.header .logo {
/*		width: 160px;*/
	}
	.header .header-menu {
		margin-left: auto;
		margin-right: 0;
	}
}
@media (max-width: 1070px) and (min-width: 992px) {
	.header .header-button .btn {
		display: none;
	}
}
@media (max-width: 992px) {
	.header .header-phone {
		margin-left: auto;
	}
	.header .header-contact svg {
		margin-right: 0;
		width: 18px;
		height: 18px;
	}
	.header .header-contact.header-messengers svg {
		margin-right: 0;
		width: 20px;
		height: 20px;
	}
	.header .header-contact span {
		display: none;
	}
	.header .header-menu {
		display: none;
	}
	.header .burger-menu {
		display: flex!important;
		align-items: center;
		margin: 0 7.5px;
		margin-right: 0;
	}
	.header .burger-menu.opened {
/*		top: -40px;*/
	}
}
@media (min-width: 767px) {
	.show-on-mobile {
		display: none;
	}
}
@media (max-width: 767px) {
	.hide-on-mobile {
		display: none;
	}
	.header .logo {
		width: 100px;
		justify-content: flex-start;
	}
	.header .header-phone {
		padding: 0;
	}
	.header .header-phone span {
		display: none;
	}
	.header .header-contact {
		padding: 0;
	}
	.header .header-button .btn {
		padding: 10px 15px;
		font-size: 12px;
	}
	.header .header-lang {
		margin-left: 15px;
	}
	.header .burger-menu {
		margin-left: 7px;
	}
	.header.header-scroll {
		padding: 8px 0;
		background: #FFF;
		box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.15);
	}
	.header.header-scroll .header-top {
		border: 0;
	}
}
@media (max-width: 560px) {
	.header .header-button .btn {
		display: none;
	}
	.header .header-lang {
		width: 32px;
		height: 32px;
	}
	.header .header-lang a {
		font-size: 11px;
	}
}
@media (max-width: 350px) {
	.header .logo {
		width: 125px;
	}
	.header .burger-menu {
		margin-left: 12px;
	}
	.header .header-top p {
		display: none;
	}
	.header .header-top ul {
		margin-left: auto;
	}
}

/* ------------------------------------------------------------- *
 * 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: var(--blue);
    z-index: 999;
    transition: .3s;
    padding-bottom: 20px;
}
.sidebar-info {
    padding: 50px 20px 80px
}
.sidebar-info span {
    font-size: 16px;
    width: 100%;
    color: var(--white);
    margin-bottom: 10px;
    display: block
}
.sidebar-info a {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 2px
}
.sidebar-info p {
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    color: var(--white);
    margin-bottom: 20px
}
.sidebar-info_title {
    line-height: 25px;
    font-size: 20px;
    font-weight: 400;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 10px
}
.sidebar-info .sidebar-time span {
    margin-top: 0;
    margin-bottom: 0;
    color: #141414;
    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: #b9b9b9;
    font-size: 12px;
    font-style: normal;
    font-weight: 200;
    line-height: 150%;
    margin-top: 0;
    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: 6px
}
.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: var(--white);
    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 15px
}
.sidebar-list:after {
    content: "";
    position: absolute;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    background: rgb(255 255 255 / 26%);
    bottom: 7px;
}
.sidebar-list li {
    padding: 0 0 14px
}
.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(--white);
    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(--white);
    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: 40px;
}
.sidebar .mobile-menu-header {
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    padding: 10px 20px 20px 20px;
    background: none;
    text-transform: uppercase;
/*    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: 24%;
    border-radius: 0;
    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%;
    background-repeat: no-repeat;
}
.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-youtube {
    background-image: url('../images/icons/youtube.svg');
}
.sidebar-info .messengers-wrap .messengers a .icon.icon-facebook {
    background-image: url('../images/icons/ico-facebook.svg');
}
.sidebar-info .messengers-wrap .messengers a .icon.icon-viber {
    background-image: url('../images/icons/viber.svg');
}
.sidebar-info .messengers-wrap .messengers a .icon.icon-phone {
    background-image: url('../images/icons/ico-phone.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 {
	position: relative;
	background: #fff;
	min-height: 750px;
	padding-top: 220px;
}
.section-intro .container {
	position: relative;
	z-index: 5;
}
.section-intro .button-wrap {
	display: flex;
	margin-top: 50px;
}
.section-intro .section-title {
/*	padding-left: 50px;*/
}
.section-intro .section-title h1 {
	color: var(--blue);
}
.section-intro .section-title p {
	color: var(--blue-text);
}
.section-intro .section-title p {
	font-size: 18px;
}
.section-intro .image-1 {
	position: absolute;
    top: 0;
    left: 200px;
    width: 1000px;
    z-index: 0;
    opacity: 1;
}
.section-intro .image-2 {
	position: absolute;
    bottom: 0;
    right: 0;
    width: 750px;
    z-index: 0;
    opacity: .7;
}
@media (max-width: 767px) {
	.section-intro .section-title {
		text-align: center;
	}
	.section-intro .section-title p {
		font-size: 16px;
	}
	.section-intro .section-title p br {
		display: none;
	}
	.section-intro .button-wrap {
		justify-content: center;
	}
	.section-intro .image-1 {
		left: 0;
		width: 750px;
	}
	.section-intro .image-2 {
		width: 450px;
	}
}
/* ------------------------------------------------------------- *
 * Section Services
/* ------------------------------------------------------------- */
.section-services {
	background: var(--white);
}
.section-services .section-title {
	max-width: 750px;
	margin: 0 auto 50px;
}
.section-services .services-wrap {
	background: var(--grey);
}
.section-services .services-wrap h6 {
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	color: var(--blue-text);
	margin-top: auto;
	-moz-transition: all .2s ease-in;
	-ms-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}
.section-services .services-wrap .arrow-sm {
	width: 30px;
	height: 30px;
	position: absolute;
	bottom: 25px;
	left: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--orange);
	border-radius: 100px;
}
.section-services .services-wrap .arrow-sm img {
	width: 12px;
}
.section-services .services-wrap {
	position: relative;
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	padding: 25px;
	height: 310px;
	overflow: hidden;
	position: relative;
	background: var(--grey);
  	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.section-services .services-wrap.all {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	background: var(--color-orange);
}
.section-services .services-wrap.all img {
	margin: 0 auto;
	width: 40px;
}
.section-services .services-wrap.all h6 {
	max-width: 100%;
	margin-top: 15px;
	margin-bottom: 10px;
	color: #fff;
}
.section-services .services-wrap.all p {
	color: #fff;
	font-size: 15px;
	font-weight: 300;
}
.section-services .services-wrap span {
	position: absolute;
	top: 25px;
	right: 25px;
	color: #ACACAC;
}
.section-services .services-wrap.all .btn {
	border: 1px solid #FFF;
	color: #fff;
	background: transparent;
}
.section-services a.services-wrap:hover {
	background-size: 105%;
}
.section-services a.services-wrap:hover h6 {
	color: var(--orange);
}
.section-services .services-wrap.all .btn:hover {
	background-color: #fff;
	color: var(--color-orange);
}
.section-services a.services-wrap .bg {
	position: absolute;
	right: 25px;
	bottom: 25px;
	transform: translateY(10px);
	transition: all .35s ease-in-out;
/*	opacity: 0;*/
/*	visibility: hidden;*/
	z-index: 2;
}
.section-services a.services-wrap .bg-1 {
	width: 250px;
}
.section-services a.services-wrap .bg-2 {
	width: 160px;
}
.section-services a.services-wrap .bg-3 {
	width: 130px;
}
.section-services a.services-wrap .bg-4 {
	width: 170px;
}
.section-services a.services-wrap:hover .bg {
	transform: translateY(-20px);
	opacity: 1;
	visibility: visible;
}
@media only screen and (max-width: 1200px) {
	.section-services .services-wrap h6 {
		font-size: 20px;
	}
	.section-services .services-wrap.all {
		padding: 25px 10px;
	}
}
@media (max-width: 992px) {
	.section-services a.services-wrap .bg-1 {
		width: 175px;
	}
	.section-services a.services-wrap .bg-2,
	.section-services a.services-wrap .bg-3 {
		width: 100px;
	}
	.section-services a.services-wrap .bg-4 {
		width: 130px;
	}
}
@media (max-width: 767px) {
	.section-services a.services-wrap .bg {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}
/* ------------------------------------------------------------- *
 * Section Page Title
/* ------------------------------------------------------------- */
.section-page {
	background: var(--blue);
	padding-top: 220px;
	padding-bottom: 40px;
}
.section-page .section-title {
	margin-bottom: 0;
}
.section-page .section-title h1 {
	font-size: 35px;
}
@media (max-width: 1200px) {
	.section-page .section-title h1 {
		font-size: 30px;
	}
}
@media (max-width: 992px) {
	.section-page .section-title h1 {
		font-size: 28px;
	}
}
@media (max-width: 767px) {
	.section-page .section-title h1 {
		font-size: 22px;
	}
}
/* ------------------------------------------------------------- *
 * Section Features
/* ------------------------------------------------------------- */
.section-features {
	padding-top: 0;
	padding-bottom: 120px;
}
.section-features .section-title {
	padding-top: 25px;
}
.section-features .features-wrap {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.section-features .features-item {
	width: 50%;
	padding: 40px;
	min-height: 550px;
}
.section-features .features-item h3 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 20px;
	color: var(--blue-text);
}
.section-features .features-item p {
	font-size: 14px;
}
.section-features .features-item:nth-child(2),
.section-features .features-item:nth-child(3) {
	background: var(--orange);
}
.section-features .features-item:nth-child(2) h3,
.section-features .features-item:nth-child(3) h3,
.section-features .features-item:nth-child(2) p,
.section-features .features-item:nth-child(3) p {
	color: var(--white);
}
@media (max-width: 767px) {
	.section-features .features-item {
		width: 100%;
		padding: 30px 20px;
		min-height: initial;
	}
	.section-features .features-item:nth-child(1) {
    	background: var(--orange);
	}
	.section-features .features-item:nth-child(2) {
    	background: transparent;
	}
	.section-features .features-item:nth-child(2) h3 {
		color: var(--blue-text);
	}
	.section-features .features-item:nth-child(2) p {
		color: var(--blue-text);
	}
	.section-features .features-item:nth-child(1) h3,
	.section-features .features-item:nth-child(1) p {
		color: var(--white);
	}
	.section-features .features-item p {
		margin-bottom: 0;
	}
	.section-features .features-item h3 {
		font-size: 18px;
	}
}

/* ------------------------------------------------------------- *
 * Clients
/* ------------------------------------------------------------- */
.section-clients {
	background: var(--grey);
}
.section-clients .section-title {
	margin: 0 0 50px 0;
}
.section-clients .client-image {
	display: flex;
	justify-content: center;
	align-items: center;
	border: .5px solid #DADADA;
	padding: 20px 35px;
	width: 16.6%;
}
/*.section-clients .client-image:nth-child(2n) {
	border-left: 0;
}
.section-clients .client-image:nth-child(1),
.section-clients .client-image:nth-child(2),
.section-clients .client-image:nth-child(3),
.section-clients .client-image:nth-child(4) {
	border-bottom: 0;
}
.section-clients .client-image:nth-child(3),
.section-clients .client-image:nth-child(7) {
	border-left: 0;
}*/
.section-clients .client-image img {
	width: 150px;
	filter: grayscale(1);
	transition: .3s ease-in-out;
}
.section-clients .client-image:hover img {
	filter: grayscale(0);
}
@media (max-width: 992px) {
	.section-clients .row {
		justify-content: center;
	}
	.section-clients .client-image {
		width: 33.3%;
	}
}
@media (max-width: 767px) {
	.section-clients .client-image {
		padding: 20px 15px;
	}
}
/* ------------------------------------------------------------- *
 * Footer
/* ------------------------------------------------------------- */
.footer {
	background: var(--blue);
	padding: 50px 0;
}
.footer [class*="col-"] {
	padding-left: 15px;
	padding-right: 15px;
}
.footer .footer-logo {
/*	max-width: 200px;*/
	font-size: 20px;
	font-weight: 600;
}
.footer .footer-logo a {
	display: inline-flex;
	color: var(--white);
}
.footer .footer-item h5 {
	font-size: 16px;
	font-weight: 600;
	padding-bottom: 15px;
	color: var(--white);
}
.footer .footer-menu ul {
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.footer .footer-menu ul li {
	padding: 2px 0;
	text-align: left;
}
.footer .footer-menu ul li a {
	color: #fff;
	font-size: 14px;
	font-weight: 300;
}
.footer .footer-menu ul li a:hover,
.footer .footer-contacts ul li a:hover {
	text-decoration: underline;
}
.footer .footer-contacts ul li {
	margin-bottom: 20px;
	text-align: left;
}
.footer .footer-contacts ul li span {
	font-size: 14px;
	font-weight: 400;
	color: var(--white);
	opacity: .5;
}
.footer .footer-contacts ul li a {
	display: flex;
    align-items: flex-start;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-align: left;
}
.footer .footer-contacts ul li .btn-link {
	margin-top: 7px;
	text-decoration: none!important;
}
.footer .footer-item ul li a .icon {
	margin-right: 10px;
    flex: 0 0 23px;
    width: 23px;
    height: 23px;
    background-size: contain;
    background-repeat: no-repeat;
}
.footer .footer-item ul li a .icon.icon-phone {
	background-image: url('../images/ico-phone-2.svg');
}
.footer .footer-item ul li a .icon.icon-send {
	background-image: url('../images/ico-send.svg');
}
.footer .footer-item ul li a .icon.icon-location {
	background-image: url('../images/ico-location.svg');
}
.footer .footer-item ul li.socials ul li {
	display: inline-block;
	margin-right: 10px;
}
.footer .footer-item ul li.socials ul {
	margin-top: 7px;
}
.footer .footer-item ul li.socials ul li:last-child {
	margin-right: 0;
}
.footer .footer-item ul li.socials ul li a {
	background: #fff;
	width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer .footer-item ul li.socials ul li a svg {
	width: 20px;
	height: 20px;
}

.footer .footer-item .social-item a {
	align-items: center;
}
.footer .footer-item .social-item a img {
	width: 25px;
	margin-right: 5px;
}

.footer .footer-copyright {
	padding: 28px 0;
	margin-top: 75px;
	align-items: center;
}
.footer .footer-copyright p {
	color: #DBDBDB;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 92.5%; /* 12.95px */
	letter-spacing: -0.14px;
	text-align: left;
	margin-bottom: 0;
}
.footer .footer-copyright .dev {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #C8C8C8;
	text-align: center;
    font-family: 'Avenir Next Cyr';
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 92.5%;
	padding: 2.5px 5px;
	letter-spacing: -0.14px;
	border-radius: 4px;
    transition: .3s ease;
}
.footer .footer-copyright .dev img {
	width: 20px;
    margin-left: 3px;
    -moz-filter: grayscale(1);
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: .45;
    transition: .3s ease;
}
.footer .footer-copyright .dev:hover {
	color: #faff00;
	background: #0d0d0d;
}
.footer .footer-copyright .dev:hover img {
	opacity: 1;
	-moz-filter: grayscale(0);
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
.footer .footer-copyright ul {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}
.footer .footer-copyright ul li {
	position: relative;
}
.footer .footer-copyright ul li a {
	color: #D8D8D8;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 92.5%; /* 12.95px */
	letter-spacing: -0.14px;
}
.footer .footer-copyright ul li a:hover {
	text-decoration: underline;
}
@media (max-width: 992px) {
	.footer .footer-logo {
		display: flex;
		margin: 0 auto;
	}
	.footer .footer-menu {
		margin: 25px 0;
	}
	.footer .footer-contacts ul li a {
		justify-content: flex-start;
	}
}
@media (max-width: 767px) {
	.footer {
		margin-top: 0;
	}
	.footer .footer-menu ul {
		flex-direction: column;
		text-align: center;
	}
	.footer .footer-menu ul li {
		padding: 5px 0;
	}
	.footer .footer-copyright ul,
	.footer .footer-copyright p {
		justify-content: center;
		text-align: center;
	}
	.footer .footer-copyright p {
		margin-bottom: 5px;
	}
}
/* ------------------------------------------------------------- *
 * Section Privacy
/* ------------------------------------------------------------- */
.section-privacy {
	background: var(--white);
	padding-top: 75px;
	width: 100%;
}
.section-privacy .privacy-title {
	color: #1F1F1F;
	font-family: 'Inter';
	font-size: 25px;
	font-style: normal;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: -0.65px;
	margin-bottom: 50px;
	text-transform: uppercase;
} 
.section-privacy .privacy-text h2 {
	font-weight: 600;
	margin-bottom: 15px;
}
.section-privacy .privacy-text p {
	font-size: 16px;
}
.section-privacy .privacy-text a {
	color: var(--orange);
	font-weight: 400;
}
@media (max-width: 1200px) {
	.section-privacy {
		padding-right: 250px;
	}
}
@media (max-width: 992px) {
	.section-privacy {
		padding-right: 0
	}
	.section-privacy .privacy-title {
		font-size: 22px;
	}
}
/* ------------------------------------------------------------- *
 * Section Catalog
/* ------------------------------------------------------------- */
.section-catalog h2 {
	margin-bottom: 40px;
}
.catalog {
  	border-collapse: collapse;
  	width: 100%;
}

.catalog td {;
  	border-top: 1px solid #ddd;
  	padding: 8px 25px 8px 0;
  	vertical-align: middle;
  	margin-right: 40px;
}

.catalog th {
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: left;
	background-color: transparent;
	font-size: 16px;
	font-weight: 400;
	color: #505050;
	border: 0;
}
.catalog td:nth-child(1) .img-wrap {
	background: var(--light-grey-2);
	padding: 0;
	overflow: hidden;
}
.catalog td:nth-child(1) .img-wrap img {
	transition: all .2s ease-in;
}
.catalog td:nth-child(1) .img-wrap:hover img {
	transform: scale(1.05);
}
.catalog td:nth-child(1),
.catalog td:nth-child(1) img {
	width: 120px;
	vertical-align: middle;
	max-width: initial;
}
.catalog td:nth-child(2) {
	width: 40%;
}
.catalog td:nth-child(3) img {
	width: 60px;
	max-width: initial;
	vertical-align: middle;
}
.catalog tr td:last-child {
	padding-right: 0;
}
.catalog td a {
	display: block;
	font-size: 18px;
	padding: 15px 0;
	text-decoration: underline;
}
.catalog td a:hover {
	color: var(--orange);
}
.catalog td:nth-child(4),
.catalog td:nth-child(5),
.catalog td:nth-child(6) {
	min-width: 100px;
}

.catalog .img-wrap {
	position: relative;
}

.catalog td a img {
	width: 100px;
}

@media (max-width: 992px) {
	.catalog td {
		font-size: 15px;
	}
	.catalog td a {
		font-size: 16px;
	}
	
	.catalog td:nth-child(3) img {
		width: 50px;
	}
	.catalog td:nth-child(1) .img-wrap img {
		width: 100px;
	}
	.catalog th:nth-child(3),
	.catalog th:nth-child(4),
	.catalog th:nth-child(5),
	.catalog th:nth-child(6),
	.catalog td:nth-child(3),
	.catalog td:nth-child(4),
	.catalog td:nth-child(5),
	.catalog td:nth-child(6) {
		display: none;
	}
	.catalog td:nth-child(2) {
		width: auto;
	}
} 
/* ------------------------------------------------------------- *
 * Section Products
/* ------------------------------------------------------------- */
.section-products {
	padding-top: 0;
}
.section-products .products-wrap {
	display: block;
	overflow: hidden;
	margin-bottom: 40px;
}
.section-products .products-wrap:hover img {
	transform: scale(1.05);
}
.section-products .products-inner {
	position: relative;
	display: flex;
    justify-content: center;
    align-items: center;
	background-color: var(--light-grey-2);
	overflow: hidden;
}
.section-products .products-inner img {
	transition: all .2s ease-in;
}
.section-products .products-title {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	font-size: 60px;
	font-weight: 600;
	color: var(--dark-grey);
	transition: .2s ease-in;
}
.section-products .products-top {
	position: absolute;
	top: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0 15px;
}
.section-products .products-top img {
	width: 20px;
	height: 20px;
}
.section-products .products-bottom {
	position: absolute;
	left: 50%;
	bottom: 15px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	max-width: 110px;
}
.section-products .products-bottom.title {
	max-width: 100%;
	width: 100%;
	text-align: center;
}
.section-products .products-bottom h3 {
	font-size: 30px;
	color: var(--orange);
}
.section-products .products-heading {
	margin-top: 12px;
	line-height: 120%;
	text-align: center;
	transition: .2s ease-in;
}
.section-products .products-heading span {
	display: block;
	font-weight: 500;
}
.section-products .products-wrap:hover .products-title,
.section-products .products-wrap:hover .products-heading {
	color: var(--orange);
}
.section-products .products-wrap .products-image {
	display: flex;
	overflow: hidden;
}
.section-products .products-wrap .products-image img {
	transition: .2s ease-in;
}
.section-products .products-wrap:hover .products-image img {
	transform: scale(1.05);
}
.section-products .section-title h1 {
	font-size: 30px;
}
.section-products .section-title span {
	display: inline-block;
}

.products-text {
	margin-top: 50px;
}
.products-item {
	padding: 25px 0;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid var(--light-grey);
}
.products-item h4 {
	font-size: 24px;
	font-weight: 400;
}
.products-item h4 a {
	color: var(--color-orange);
	font-weight: 600;
}
.products-item h4 a:hover {
	text-decoration: underline;
}
.products-item p {
	position: relative;
	max-width: 550px;
	margin-bottom: 0;
}
.products-item p:before {
	content: '';
	position: absolute;
	top: 8px;
	left: -40px;
	width: 9px;
	height: 9px;
	border-radius: 100%;
	background: var(--color-orange);
}
@media (max-width: 1200px) {
	.section-products .products-wrap {
	}
	.section-products .products-title {
		font-size: 45px;
	}
	.section-products .products-bottom {
		max-width: 90px;
	}
	.section-products .products-top img {
		width: 17px;
		height: 17px;
	}
	.products-item {
		flex-direction: column;
	}
	.products-item h4 {
		margin-bottom: 20px;
	}
	.products-item h4 a {
		text-decoration: underline;
	}
}
@media (max-width: 767px) {
	.section-products .section-title h1 {
		font-size: 20px;
	}
	.section-products .products-wrap {
		margin-bottom: 25px;
	}
	.section-products .products-heading {
		font-size: 14px;
	}
	.section-products .products-heading span {
		display: block!important;
	}
	.padding-bottom-150 {
		padding-bottom: 50px!important;
	}
}
/* ------------------------------------------------------------- *
 * Section Product Inner
/* ------------------------------------------------------------- */
.section-product-inner .products-wrap {
	display: block;
	overflow: hidden;
	margin-bottom: 40px;
}
.section-product-inner .products-inner{
	position: relative;
	display: flex;
    justify-content: center;
    align-items: center;
	background-color: var(--light-grey-2);
}
.section-product-inner .products-banner {
	position: relative;
	display: flex;
    justify-content: center;
    align-items: center;
	background-color: var(--light-grey-2);
}
.section-product-inner .products-title {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	font-size: 60px;
	font-weight: 600;
	color: var(--dark-grey);
	transition: .2s ease-in;
}
.section-product-inner .products-top {
	position: absolute;
	top: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0 15px;
}
.section-product-inner .products-top img {
	width: 25px;
	height: 25px;
}
.section-product-inner .products-bottom {
	position: absolute;
	left: 50%;
	bottom: 25px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	max-width: 110px;
}

.section-product-inner .products-info {
	padding-left: 50px;
}
.section-product-inner .products-info h2 {
	font-size: 22px;
	margin-bottom: 20px;
}
.section-product-inner .products-info h3 {
	font-size: 18px;
	margin-bottom: 20px;
}
.section-product-inner .products-info p {
	font-size: 14px;
	margin-bottom: 15px;
	color: var(--dark);
}
.section-product-inner .products-info .image-holder img {
	width: 300px;
}
.section-product-inner .products-form  {
	padding: 30px 20px 15px 20px;
	border: 1px solid var(--light-grey);
	margin-bottom: 30px;
	margin-top: 30px;
}
.section-product-inner .products-form h4 {
	color: var(--orange);
	margin-bottom: 15px;
	font-size: 20px;
}
.section-product-inner form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.section-product-inner form .input-holder {
	width: calc(33% - 7px);
	position: relative;
}
.section-product-inner form .button-wrap .btn {
	height: 43.5px;
	width: 100%;
	font-size: 14px;
}
.section-product-inner form input {
	font-size: 13px;
}
.section-product-inner .products-heading {
	margin-top: 12px;
	line-height: 120%;
	text-align: center;
	transition: .2s ease-in;
}
.section-product-inner .products-heading span {
	display: block;
	font-weight: 500;
}

.pdf-item {
	margin: 20px 0 30px 0;
}
.pdf-item a {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 14px;
    background: var(--light-grey-2);
    padding: 12px;
    border-radius: 5px;
}
.pdf-item a:before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 12px;
	width: 10px;
	height: 15px;
	background-image: url("../images/round-arrow-right.svg");
	background-size: cover;
}
.pdf-item a img {
	width: 28px;
	height: 28px;
	margin-right: 8px;
}
.pdf-item a:hover {
	text-decoration: underline;
}



.product-spec li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	border-top: 1px solid var(--light-grey);
}
.product-spec li:first-child {
	border: 0;
}
.product-spec li span {
	font-size: 13px;
}
.product-spec li span:nth-child(1) {
	width: 40%;
	color: #616161;
	padding-right: 15px;
}
.product-spec li span:nth-child(2) {
	width: 60%;
	font-weight: 600;
}
.product-spec li span.w-100 {
	width: 100%!important;
}
.product-spec li span.w-100 b {
	color: red;
}


.section-product-inner .products-banner-two {
	position: relative;
	display: flex;
	align-items: flex-end;
	margin-bottom: 20px;
	padding: 25px;
	height: 340px;
	overflow: hidden;
	position: relative;
	background-repeat: no-repeat;
	background-position: top;
	background-size: cover;
	background-color: #F6F6F6;
  	-moz-transition: all .2s ease-in;
	-ms-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}

.input-holder {
	position: relative;
}
.input {
	background: var(--light-grey-2);
    color: var(--color-dark);
    padding: 14px 30px 14px 14px;
    width: 100%;
    outline: 0;
    border: 0;
    margin-bottom: 15px;
    font-size: 16px;
}
@media (max-width: 1200px) {
	.section-product-inner .products-info {
		padding-left: 20px;
	}
	.section-product-inner form .input-holder {
		width: calc(50% - 10px);
	}
	.section-product-inner form .input-holder.button-wrap {
		width: 100%;
	}
}
@media (max-width: 992px) {
	.section-product-inner {
/*		padding: 0;*/
	}
	.section-product-inner .products-info {
		padding-left: 0;
		margin-top: 30px;
	}
	.section-product-inner .products-info h2 {
		font-size: 22px;
	}
	.section-product-inner .products-form {
		padding: 15px;
		margin-bottom: 20px;
	}
	.section-product-inner .products-form h4 {
		font-size: 16px;
	}
	.section-product-inner form .input-holder {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.section-product-inner .products-info {
		margin-top: 40px;
	}
	.section-product-inner .products-info h2 {
		font-size: 20px;
	}
}
/* ------------------------------------------------------------- *
 * Section Products
/* ------------------------------------------------------------- */
.product-slider .slick-slide {
	background: var(--light-grey);
}
/* Product Slider */
.item-slick.slick-slide.slick-current.slick-active {
  outline: none !important;
}
.slider-for {
	background: #f7f7f7;
}
.slider-for img {
	width: 100%;
	min-height: 100%;
}

.slider-nav {
	width: 100%;
  	margin: auto;
  	margin-top: 15px;
}
.slider-nav .item-slick {
	width: auto;
	margin: 0 7px;
	outline: none !important;
	cursor: pointer;
	border: 1px solid #e6e6e6;
}
.slider-nav .item-slick img {
	max-width: 100%;
	background-size: cover;
	background-position: center;
}
.slider-nav-wrap {
	position: relative;
}
.slider-wrapper {
	position: relative;
}
.slider-arrows {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.slider-arrows button {
	position: relative;
	z-index: 20;
	font-size: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	background: transparent;
	justify-content: center;
	cursor: pointer;
}
.slider-arrows button.prev-btn {
	margin-right: 5px;
}
.slider-arrows button:hover {
	background: var(--light-grey);
}
@media (max-width: 767px) {
	.slider-arrows {
		right: 10px;
	}
}
/* ------------------------------------------------------------- *
 * Section About
/* ------------------------------------------------------------- */
.section-about {
	background: var(--grey);
}
.section-about .row {
	margin-right: calc(((100vw - 1280px) / 2* -1));
}
.section-about .section-title {
	max-width: 750px;
	margin: 0 auto 50px;
}
.section-about .about-left {
	padding: 100px 75px 100px 0;
}
.section-about .about-left p {
	font-size: 14px;
}
.section-about .about-left p:last-child {
	margin-bottom: 0;
}
.section-about .about-right {
	position: relative;
	background: var(--blue);
}
.section-about .about-right:before {
/*	content: "";*/
	position: absolute;
	background: var(--blue);
	top: 0;
	left: 0;
	width: 150%;
	height: 100%;
	z-index: 0;
}
.section-about .about-right .inner {
	position: relative;
	z-index: 10;
	height: 100%;
	padding: 100px 30px;
}
.section-about .about-right .inner img {
	position: absolute;
	bottom: 0;
	right: -15px;
	width: 450px;
}
.section-about .about-right .inner p {
	color: var(--white);
	font-weight: 300;
	font-style: italic;
}
@media (max-width: 1300px) {
	.section-about .row {
		margin-right: calc(((100vw - 1120px) / 2* -1));
	}
}
@media (max-width: 1200px) {
	.section-about .row {
		margin-right: calc(((100vw - 992px) / 2* -1));
	}
	.section-about .about-right .inner p br {
		display: none;
	}
	.section-about .about-right .inner img {
		width: 350px;
	}
}
@media (max-width: 992px) {
	.section-about .row {
		margin-right: -15px;
	}
	.section-about .about-left {
		padding: 75px 30px 75px 0;
	}
	.row {
		margin-left: -15px;
		margin-right: -15px;
	}
}
@media (max-width: 767px) {
	.section-about .about-right .inner {
		padding: 75px 0;
	}
	.section-about .about-right .inner p {
		margin-bottom: 0;
		text-align: center;
	}
	.section-about .text-inner p {
		width: 100%;
	}
	.section-about .about-left {
		padding: 50px 15px 50px 15px;
	}
}

/* ------------------------------------------------------------- *
 * Modal Window
/* ------------------------------------------------------------- */
.modal {
	opacity: 0;
	visibility: hidden;
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99998;
	padding: 30px;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	transition: visibility 0s linear 0.1s,opacity 0.3s ease;
}
.modal.open {
	display: block;
	visibility: visible;
	opacity: 1;
	transition-delay: 0s;
}
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 21;
	background-color: rgba(0, 0, 0, 0.7);
}
.modal-close {
	position: absolute;
	top: 20px;
	right: 15px;
	border: none;
	outline: none;
	background: none;
	font-size: 24px;
	color: #d5d5d5;
	font-weight: bold;
	cursor: pointer;
	transition: .2s ease-in;
}
.modal-close:hover {
  	color: #000;
}
.modal-container {
	position: relative;
	z-index: 22;
	width: 450px;
	height: auto;
	top: 50%;
	transform: translateY(-50%);
	margin: 0 auto;
	margin-top: -60px;
	padding: 70px 40px;
	background-color: #fff;
}
.modal-container .modal-title {
	color: var(--color-dark);
	text-align: center;
	font-family: 'Inter';
	font-size: 25px;
	font-style: normal;
	font-weight: 700;
	line-height: 130%;
	letter-spacing: -0.4px;
	margin-bottom: 10px;
	text-transform: uppercase;
}
.modal-container .modal-subtitle {
	color: var(--color-dark);
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: -0.2px;
	max-width: 400px;
	margin: 0 auto 50px;
}
.modal-container .button-holder {
	text-align: center;
	margin-top: 30px;
}
.modal-container .button-holder .btn {
	margin: 0 auto;
	width: 100%;
}
.modal-container .form {
	max-width: 430px;
	margin: 0 auto;
}
.modal-container .form .input {
	background: rgb(242, 242, 241);
    color: rgb(29, 23, 14);
	padding: 14px 20px;
	width: 100%;
	outline: 0;
    border: 0;
    margin-bottom: 15px;
}
.modal-container .form .input-holder:last-child .input {
	margin-bottom: 0;
}
.phone-error {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -10px;
    font-size: 14px;
    color: var(--orange);
}
form {
	position: relative;
}
@media (max-width: 992px) {
	.modal-container {
		width: calc(100% - 15px);
		padding: 50px 30px;
		margin-top: -30px;
	}
	.modal-container .form {
		max-width: 100%;
	}
	.modal-container .modal-title {
		font-size: 24px;
	}
}
@media (max-width: 350px) {
	.modal-container {
		margin-top: 0;
	}
	.modal-container .modal-title {
		font-size: 30px;
	}
	.modal-container .modal-subtitle {
		font-size: 12px;
		margin:  0 auto 25px;
	}
	.modal-container .form .input {
		padding: 12px 20px;
	}
	.modal-container .button-holder {
		margin-top: 25px;
	}
}
/* ------------------------------------------------------------- *
 * Thanks Page
/* ------------------------------------------------------------- */
.thanks-page {
	padding-bottom: 200px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.thanks-page .section-title h1,
.thanks-page .section-subtitle p {
	color: var(--color-dark);
}
.thanks-page .button-wrap {
	margin: 0 auto;
	display: flex;
	justify-content: center;
}
.thanks-page .button-wrap a {
	border: none;
}

/* ------------------------------------------------------------- *
 * Section CTA
/* ------------------------------------------------------------- */
.section-cta {
	position: relative;
	background: var(--light-grey-2);
}
.section-cta .row {
	display: flex;
}
.section-cta .row .col {
	width: 50%;
}
.section-cta .cta-inner .section-title {
	margin-bottom: 25px;
}
.section-cta .cta-inner .section-title h1 {
	color: var(--color-black);
}
.section-cta .cta-inner p {
	color: var(--color-black);
	text-align: left;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 18.5px */
	margin-bottom: 0;
	max-width: 500px;
}
.section-cta .btn-wrap {
	display: flex;
	justify-content: center;
}
.section-cta .btn-wrap .btn {
	min-width: 400px;
	padding: 20px 15px;
}
@media (max-width: 992px) {
	.section-cta .row .col {
		width: 100%;
		padding: 0 15px;
	}
	.section-cta .cta-inner .section-title,
	.section-cta .cta-inner p {
		text-align: center;
	}
	.section-cta .cta-inner p {
		margin: 0 auto 30px;
	}
}
@media (max-width: 767px) {
	.section-cta .cta-inner p {
		font-size: 16px;
	}
	.section-cta .cta-inner p {
		max-width: 100%;
	}
	.section-cta .cta-inner .btn {
		font-size: 17px;
		width: 90%;
	}
	.section-cta .btn-wrap .btn {
		min-width: 100%;
	}
}

/* ------------------------------------------------------------- *
 * Contact Page
/* ------------------------------------------------------------- */
.section-contacts {}
.section-contacts [class*="col-"] {
	position: relative;
	width: 100%;
	padding-left: 5px;
	padding-right: 5px;
}
.section-contacts .container {
	max-width: 1550px;
}
.section-contacts .section-title {
	max-width: 500px;
}
.section-contacts .section-title p {
	margin-top: 15px;
}
.section-contacts form {
	box-shadow: 0 0px 18px rgba(49,49,49,.08);
    background: #fff;
    padding: 30px;
    width: calc(100% - 50px);
    margin-left: auto;
}
.section-contacts form .input-holder {
	margin-bottom: 15px;
}
.section-contacts form input {
	width: 100%;
	background: #f5f5f5;
    border: none;
    font-size: 14px;
    font-weight: 400;
    padding: 14px 24px;
}
.section-contacts form textarea {
	width: 100%;
	background: #f5f5f5;
    border: none;
    font-size: 14px;
    font-weight: 400;
    padding: 14px 24px;
}
.section-contacts form .btn-holder {
	justify-content: flex-end;
}
.section-contacts form .btn-holder .btn {
	padding: 15px 35px;
}
.section-contacts .contacts-list {
}
.section-contacts .contacts-list li {
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 20px 20px;
	background: #fff;
	margin-bottom: 15px;
	box-shadow: 0 0px 18px rgba(49,49,49,.08);
	text-align: center;
}
.section-contacts .contacts-list li img {
	width: 35px;
	margin-bottom: 15px;
}
.section-contacts .contacts-list li .contacts-info {
	display: flex;
	flex-direction: column;
}
.section-contacts .contacts-list li .contacts-info span {
	font-weight: 600;
}
.section-contacts .contacts-list li a:hover {
	color: var(--orange);
}
@media (max-width: 992px) {
	.section-contacts form {
		width: 100%;
	}
}
@media (max-width: 767px) {
	
}
@media (max-width: 350px) {
	
}




.field-error {
    color: #e53935;
    font-size: 13px;
    margin-top: 4px;
}