/*
1. Глобальные стили
2. Шапка сайта
3. Контент
4. Подвал
5. Елементы
*/

/* 1. Глобальные стили */
@font-face {
	font-family: BebasNeue;
	src: url(../dist/fonts/BebasNeue.ttf) format("truetype");
	font-display: swap
}
a,address,body,caption,code,dd,div,dl,em,font,form,h1,h2,h3,h4,h5,h6,html,iframe,kbd,label,li,object,ol,p,q,s,small,span,strong,table,tbody,td,th,tr,tt,ul,var {
	border: 0 none;
	font-family: inherit;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0 none;
	padding: 0;
	vertical-align: baseline
}

*,
:after,
:before {
	box-sizing: border-box
}

body {
    scroll-behavior: smooth;
}

body,html {
	margin: 0;	
	background-color: #fbfbfb;
	font-size: 1rem;
	font-weight: 400;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif
}

.body {
	overflow-x: hidden;
}

article,aside,details,footer,header,main,nav,section {
	display: block
}

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

caption,
td,
th {
	font-weight: 400;
	text-align: left
}

q:after,
q:before {
	content: ""
}

q {
	quotes: """"
}

a:focus {
	outline: 0 none
}

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

a img {
	border: 0 none
}

li {
	list-style-type: none
}

button,input,select {
	color: #444;
	font-size: .875rem;
	font-weight: 400;
	line-height: 1.8rem
}

h1,h2,h3,h4,h5,h6 {
	clear: both;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 15px;
	text-transform: uppercase
}

p {
	margin-bottom: 20px
}

b,
strong {
	font-weight: 700
}

em,
i {
	font-style: italic
}

address {
	margin: 0 0 15px
}

code,kbd,tt,var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace
}

small {
	font-size: 75%
}

h1 {
	font-size: 1.875rem
}

h2 {
	font-size: 1.625rem
}

h3 {
	font-size: 1.375rem
}

h4 {
	font-size: 1.25rem
}

h5 {
	font-size: 1.125rem
}

h6 {
	font-size: 1rem
}

hr {
	background-color: #ccc;
	border: 0 none;
	height: 1px;
	margin-bottom: 15px
}

.featurette-divider {
    margin: 2rem 0;
}

ol {
	list-style: decimal
}

li>ol,li>ul {
	margin-bottom: 0;
	margin-left: 15px
}

dd {
	margin: 0 15px 15px
}

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

table {
	border-collapse: collapse;
	margin: 0 0 15px;
	width: 100%
}

th {
	border: 1px solid #ccc;
	font-weight: 700;
	padding: 5px 10px
}

td {
	border: 1px solid #ccc;
	padding: 5px 10px;
	color: #000
}

button,input,select {
	font-size: 100%;
	margin: 0;
	vertical-align: middle
}

input[type=button],input[type=reset],input[type=submit] {
	color: #000;
	border: 2px solid;
	cursor: pointer;
	display: inline-block;
	font-size: .875rem;
	font-weight: 400;
	line-height: 1;
	padding: 15px 35px;
	position: relative;
	text-shadow: none;
	text-transform: uppercase;
	background: 0 0;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s
}

input[type=checkbox],input[type=radio] {
	padding: 0
}

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

input[type=email],input[type=password],input[type=search],input[type=text],input[type=url],input[type=tel] {
	border: 1px solid #ccc;
	color: #666;
	height: 36px;
	width: 100%;
	border-radius: 3px
}

input[type=email]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=url]:focus,input[type=tel]:focus {
	border: 1px solid #aaa
}

input[type=email],input[type=password],input[type=search],input[type=text],input[type=url],input[type=tel] {
	padding: 3px 6px
}

a {
	text-decoration: none;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s
}

*::-webkit-scrollbar,
*::-webkit-scrollbar-thumb {
	width: 25px;
    padding: 0;
    height: 15px;
    border-radius: 0;
    background-clip: padding-box;
    border: 10px solid transparent;
    color: #c4c0c0;
    background-color: #f5f5f5;
}

*::-webkit-scrollbar-thumb {        
  box-shadow: inset 0 0 0 10px;
}

/* 2. Шапка сайта */
.header {
    position: sticky;
    height: 100px;
    top: 0;
    transition: height 0.3s ease, opacity 0.3s ease;
    background-color: #fbfbfb;
    z-index: 10;
}

         .top-header  {
	height: 30px;
    margin-bottom: 5px;
    line-height: 2.5;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    background-color: #0fb166;
    font-family: sans-serif;
         }
		 
		 .mainhead {
			 padding: 5px 10px;
		 }
		 
         .top-header .topmenu {
         display: flex;
         justify-content: flex-end;
         }
         .top-header li {
         margin: 0px 10px 0px 10px;
         }
         .top-header a {
         color: #003045;
         font-size: 0.75rem;
         font-weight: 600;
         text-transform: uppercase;
         -webkit-transition: all .3s ease-in-out 0s;
         -moz-transition: all .3s ease-in-out 0s;
         transition: all .3s ease-in-out 0s;
         }
         .top-header a:hover {
         text-decoration: underline;
		 color: #fff;
         }
         .top-header .current-menu-item a {
         text-decoration: underline;
         }
         .top-header .pll-switcher-select {
width: 50px;
    height: 20px;
    background-color: transparent;
    padding-right: 0px;
    border: none;
    color: #003045;
    font-weight: 900;
    text-transform: uppercase;
         }
         .top-header .lang-switch {
         margin-right:0;
         }
		 
		 .top-header .ocompany {
font-size: 0.75rem;
    font-weight: 600;
		 }

.headbl .row {
	justify-content: flex-end;
}

.custom-logo-link {
    width: 200px;
    display: block;
}
@media (max-width:468px) {
.custom-logo-link {
    max-width: 125px;
}
}
.header .logo {
	padding-left: 5px;
	line-height: 0.7;
}

.header .logo small{
    display: block;
    text-transform: uppercase;
    margin-left: 40px;
    font-size: 10px;
    color: #0fb166;
    font-weight: 900;
}

@media (max-width:468px) {
.header .logo small{
	margin: 0;
    font-size: 0.45rem;
    text-align: center;
}
.mainhead {
padding: 5px 15px;
}
}

#site-header .head_btn {
	padding: 0 2px;
}

#site-header .head_btn:last-child {
	border-right: none
}

#site-header .mngCall {
	width:100%;
	cursor: pointer;
    color: #fff;
    background-color: #0fb166;
    border-radius: 5px;
    padding: 15px 10px;
    position: relative;
    top: 0px;
    display: inline-block;
    line-height: 1;
    text-align: center;
    font-size: 1.15rem;
    font-family: BebasNeue, Arial, sans-serif;
}

#site-header .mngCall #textMail {
    font-size: 1.15rem;
    color: #de4040;
}

#site-header .head_btn .product-search-field{
	height: 50px;
    background-color: #f4f7f9;
    border-radius: 0;
    border-color: #f4f7f9;
    font-size: 0.850rem;
    text-align: center;
	text-transform: uppercase;
}

#site-header .adm-info {
	font-size: 1.25rem;
    padding: 5px;
    line-height: 1;
    font-family: BebasNeue, Arial, sans-serif;
}

#site-header .headb2 {
	height: 50px;
	width: 100%;
	cursor: pointer;
	font-size: 1.125rem;
	padding: 5px;
	text-align: center;
	line-height: 1;
	border-radius: 5px;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
	font-family: BebasNeue, Arial, sans-serif
}

@media (max-width:468px) {
.header {
    position: fixed;
    height: 80px;
    width: 100%;
}

.top-header .ocompany {
    text-align: center;
    width: 100%;
    display: block;
}

#site-header .headb2 {
	height: 30px;
}
}

#site-header #hide-search {
    width: 100%;
    z-index: 9;
    background-color: #fbfbfb;
    padding: 15px;
}

#site-header #hide-menu {
    z-index: 10;
    background-color: #fbfbfb;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 15px;
    gap: 10px;
}

#site-header #hide-menu li {
	text-align:center;
	line-height: 1.2;
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 12px 11px 5px -6px rgba(0, 0, 0, .1);
    -moz-box-shadow: 12px 11px 5px -6px rgba(0, 0, 0, .1);
    box-shadow: 12px 11px 5px -6px rgba(0, 0, 0, .1);
}

#site-header #hide-menu a {
    display: block;
    padding: 15px 5px;
    font-size: 0.85rem;
    font-weight: 400;
    color: #003045;
}

#site-header #hide-menu a:hover {
    color: #fbae3f;
}

#site-header #hide-menu .current-menu-item a {
    color: #fbae3f;
}

#site-menu #cdropdown {
	margin: 5px auto 0
}

#site-menu #cdropdown .btn:active, #cdropdown .btn:focus {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	outline: 0
}

#site-menu #cdropdown .dropdown-link {
	cursor: pointer;
	font-size: 1.4rem;
	text-align: center;
	margin: 0;
	text-transform: uppercase;
	font-family: BebasNeue, Arial, sans-serif
}

#site-menu #cdropdown #hide-menu {
	position: absolute;
	border: 1px solid transparent !important;
	-webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, .2);
	box-shadow: 0 15px 30px 0 rgba(0, 0, 0, .2);
	border-radius: 0;
	background: #f3f3f3;
	z-index:9999
}

#site-menu #cdropdown #hide-menu a {
	border-bottom: 1px solid rgb(0 0 0 / 15%);
	font-size: .875rem;
	padding: 5px 15px;
	position: relative
}

#site-menu #cdropdown #hide-menu a:active,
#site-menu #cdropdown #hide-menu a:focus,
#site-menu #cdropdown #hide-menu a:hover {
	background: #33f
}

#site-menu #cdropdown #hide-menu a>span {
	color: #333
}

#site-menu #cdropdown .dropdown-item {
	white-space: initial
}

#site-menu #main-m {
	text-align: center
}

#site-menu .deskMenu {
	margin: 5px auto 0;
	position: relative;
	width: 100%;
	height: 35px;
}

#site-menu .deskMenu li {
	margin: 0 15px;
    height: 100%;
    font-size: 1.25rem;
    font-family: BebasNeue, Arial, sans-serif;
    display: inline-block;
}

/* 3. Контент */
@media (max-width:468px) {
	body, html {
	overflow-x:hidden;
	}
}

@media (min-width: 992px) {
.headbl {
    padding: 0 20px;
}
}
/* 4. Подвал */

.footer #site-info span {
	color: #FFD700;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.footer #site-info a {
	color: #fff;
	font-size: .875rem;
	font-weight: 400
}

.footer #site-info a:hover {
	color:#FFD700;
}

.footer .widget_polylang {
	display: flex;
    align-items: center;
}

.footer .widget_polylang .current-lang {
	background-color: #ffc107!important;
}

.footer .widget_polylang .lang-item {
	border: 1px solid;
    padding: 5px;
    border-radius: 50%;
    background-color: #503EC6;
    width: 35px;
    text-align: center;
}

.footer .widget_polylang .lang-item a {
    color: #fff;
    font-weight: bold;
}

.footer .widget_polylang ul {
	display: flex;
	 margin-left: 10px;
}

.footer .widget_polylang ul .lang-item-first {
	margin-right: 5px;
}

.footer .widget_recent_entries li {
	line-height: 1;
    margin-bottom: 15px;
}

.footer .adm-info {
	font-size: 1rem;
    line-height: 1;
    background-color: #fff;
    color: #000;
    padding: 10px;
    border-radius: 5px;
}

.copyseo {
	padding: 10px 0 0 0;
	color: #4a4a4a
}
/* 5. Елементы */
.lang-switch {
	display:none;
}