/*#region reset.css*/
html, body, div, span, h1, h2, h3, h4, h5, h6, p, em, img, strong, sub, sup, b, u, i,  dl, dt, dd, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, legend{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
	font-size: 100%;
}

html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	outline:none;
}
input, select, button, textarea {
	margin: 0;
	font-size: 100%;
	outline: none;
}
input[type="checkbox"] {
	vertical-align: bottom;
}
input[type="radio"] {
	vertical-align: text-bottom;
}
sub {
	vertical-align: sub;
	font-size: smaller;
}
sup {
	vertical-align: super;
	font-size: smaller;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display:block;
}
address{
	font-style: normal;
}
nav ul {
	 list-style:none;
}
.clr{
	clear:both;
}
.clearfix:after {
    clear: both;
    content: "";
    display: table;
}
input[type="text"], input[type="password"], input[type="email"], input[type="button"], textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
/*#endregion*/

/*#region fonts*/
@font-face {
	
	src: url('../fonts/ProximaNova-Black.otf');
	font-style: normal;
	font-weight: 900;
	}
@font-face {
	font-family:'ProximaNova';
	src: url('../fonts/ProximaNova-Bold.otf');
	font-style: normal;
	font-weight: 700;
	}
@font-face {
	font-family:'ProximaNova';
	src: url('../fonts/ProximaNova-Semibold.otf');
	font-style: normal;
	font-weight: 600;
	}
@font-face {
	font-family:'ProximaNova';
	src: url('../fonts/ProximaNova-Medium.otf');
	font-style: normal;
	font-weight: 500;
	}
@font-face {
	font-family:'ProximaNova';
	src: url('../fonts/ProximaNova-Regular.otf');
	font-style: normal;
	font-weight: 400;
	}
@font-face {
	font-family:'ProximaNova';
	src: url('../fonts/ProximaNova-Light.otf');
	font-style: normal;
	font-weight: 300;
	}
@font-face {
	font-family:'ProximaNova';
	src: url('../fonts/ProximaNova-LightItalic.otf');
	font-style: italic;
	font-weight: 300;
	}
/*#endregion*/

/*#region root:*/
:root {
	--mainfont: 'ProximaNova';
	--iconfont: 'Font Awesome 5 Pro';
	--bodycolor: #717171;
	--black: #1D1D1D;
	--orange: #E08E39;
	--blue: #1D3354;
	--green: #119B3B;
	--yellow: #FFFAED;
}
/*#endregion*/

/*#region template.css*/
html {
	min-height:100%;
}
body {
	font-family: var(--mainfont);
	font-style: normal;
	font-weight: 400;
	font-size: 1em;
	line-height: 1.5;
	color: var(--bodycolor);
}
a{
	color: var(--orange);
	text-decoration: underline;
	transition: .4s;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
}
a:hover, a:focus {
	text-decoration:none;
}
p:not(:last-child){
	margin-bottom: 25px;
}
strong, b{
	font-weight: 700;
}
img{
	max-width: 100%;
	display: block;
}
.intro{
	font-size: 1.25rem;
	line-height: 1.6;
	color: var(--black);
}
.btn-block{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-left: -7px;
	margin-right: -7px;
	margin-bottom: -7px;
}
.btn-block a{
	margin: 0 7px 14px 7px;
}
.container{
	max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 20px;
    padding-left: 20px;
}
.container.small{
	max-width: 1420px;
}
.container.less{
	max-width: 1140px;
}
.full-grid{
	display: grid;
	grid-template-columns: 1fr repeat(12, minmax(1px, 120px)) 1fr;
	grid-auto-flow: dense;
	gap: 20px;
}
/*#endregion*/

/*#region title*/
h1, h2, h3, h4, h5, h6{
	color: var(--black);
	font-weight: 600;
	line-height: 1.2;
}
h1{
	font-size: 3.5rem;
	font-weight: 600;
	color: #1D1D1B;
}
h1:not(:last-child){
	margin-bottom: 60px;
}
.title-line{
	position: relative;
	padding-bottom: 20px;
}
h1.title-line{
	padding-bottom: 35px;
}
.title-line::before{
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 3px;
	width: 50px;
	background: var(--green);
}
h2{
	font-size: 2.25rem;
}
h2:not(:last-child){
	margin-bottom: 27px;
}
h2.title-line{
	padding-bottom: 37px;
}
h3{
	font-size: 1.625rem;
}
h3:not(:last-child){
	margin-bottom: 23px;
}
h4{
	font-size: 1.25rem;
}
h4:not(:last-child){
	margin-bottom: 25px;
}
h5{
	font-size: 0.75rem;
	color: var(--green);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.subtitle{
	font-weight: 500;
	margin-bottom: 21px;
}
h5:not(:last-child){
	margin-bottom: 26px;
}
/*#endregion*/

/*#region btn*/
.btn{
	font-family: var(--mainfont);
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	padding: 5px 30px;
	min-height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	text-decoration: none;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	white-space: nowrap;
	transition: .4s;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
	border-radius: 23px;
	-webkit-border-radius: 23px;
	-moz-border-radius: 23px;
	-ms-border-radius: 23px;
	-o-border-radius: 23px;
}
.btn.orange {
    color: #fff;
	background: var(--orange);
}
.btn.opacity-orange {
	color: var(--orange);
	background: transparent;
	border-color: var(--orange);
}
.btn.opacity-white {
    color: #fff;
	background: transparent;
	border-color: #fff;
}
.btn:hover,
.btn:focus{
	color: #fff;
	background: var(--green);
	border-color: var(--green);
}
.btn.back{
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}
.btn.back i{
	margin-right: 20px;
}
/*#endregion*/

/*#region form*/
input,
textarea,
select {
    width: 100%;
	height: 40px;
    border: none;
    outline: none;
    box-shadow: none;
    border-bottom: 1px solid #707070;
    font-family: var(--mainfont);
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    padding: 10px;
    color: #2F2F2F;
    background: #fff;
    display: block;
	border-radius: 0;
	line-height: 1;
}
textarea{
    resize: vertical;
}
input:focus,
textarea:focus,
select:focus{
	border-color: var(--green);
}
input::placeholder,
textarea::placeholder{
	font-family: var(--mainfont);
	font-weight: 600;
	font-size: 12px;
	color: #A7A7A7;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
input[type="radio"],
input[type="checkbox"] {
    display: none;
}
input[type="radio"]:required,
input[type="checkbox"]:required {
    display: block;
    height: 16px;
    width: 16px;
    margin-bottom: -16px;
    opacity: 0;
}
input[type="radio"] + label,
input[type="checkbox"] + label{
    position: relative;
    padding-left: 31px;
	font-size: 14px;
	line-height: 1.5;
    display: block;
	color: var(--bodycolor);
    cursor: pointer;
}
input[type="checkbox"] + label a{
	color: var(--orange);
}
input[type="radio"] + label::before,
input[type="checkbox"] + label::before{
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    border: 1px solid #707070;
    top: 0;
    left: 0;
    cursor: pointer;
}
input[type="radio"]:checked + label::before,
input[type="checkbox"]:checked + label::before{
    content: "\f00c";
    font-family: var(--iconfont);
    font-size: 12px;
    text-align: center;
    line-height: 14px;
    color: var(--orange);
}
/*form-block*/
.form-block{
	padding: 70px 100px;
	background: #fff;
	max-width: 1380px;
	margin-left: auto;
	margin-right: auto;
}
.form-block .btn{
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
}
.form-row{
	display: grid;
	grid-template-columns: repeat(6, minmax(1px, 1fr));
	gap: 40px 50px;
}
.form-row + .form-row{
	margin-top: 40px;
}
.form-row.col1 .col{
	grid-column: span 6;
}
.form-row.col2 .col{
	grid-column: span 3;
}
.form-row.col3 .col{
	grid-column: span 2;
}
.form-row .col{
	position: relative;
	padding-top: 10px;
}
.form-row .col label{
	position: absolute;
	left: 0;
	top: 15px;
	font-size: 12px;
	line-height: 1;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--green);
	z-index: -1;
	transition: .4s;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
}
.form-row .col input:focus + label,
.form-row .col textarea:focus + label{
	top: 0;
	z-index: 0;
}
.chec-row:not(:first-child){
	margin-top: 24px;
}
/*#endregion*/

/*#region hamburger*/
#hamburger {
	display: none;
}
#hamburger {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;    
    display: none;
    flex-shrink: 0;
}
#hamburger > span {
    display: block;
    height: 2px;
    background-color: var(--green);
	position: absolute;
	left: 0;
   /*  transform: translateY(-50%); */
    -webkit-transition: transform ease 0.4s;
    -moz-transition: transform ease 0.4s;
    -o-transition: transform ease 0.4s;
    transition: transform ease 0.4s;
    -ms-transition: transform ease 0.4s;
}
#hamburger > span:nth-child(1) {
    width: 75%;
    top: calc(50% - 8px);
}
#hamburger > span:nth-child(2) {
    width: 60%;
    top: 50%;
}
#hamburger > span:nth-child(3) {
    width: 100%;
    top: calc(50% + 8px);
}
.menu-active #hamburger> span {
    width: 100%;
    top: 50%;
    left: 0;
}
.menu-active  #hamburger> span:nth-child(1) {
    transform: translate(0, -50%) rotate(45deg);
}
.menu-active  #hamburger> span:nth-child(2) {
    opacity: 0;
    transform: translate(0, -50%);
}
.menu-active  #hamburger> span:nth-child(3) {
    transform: translate(0, -50%) rotate(-45deg);
}
/*#endregion*/

/* #region header-menu*/
#header-menu{
	background: #fff;
	z-index: 555;
	position: sticky;
	top: 0;
	transition: .4s;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
}
#menu-overley{
	display: none;
}
#header-menu .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#header-menu .logo{
	max-width: 180px;
	margin-right: 20px;
}
.header-nav{
	display: flex;
	flex-direction: column-reverse;
}
.header-nav__top,
.header-nav__bottom{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.header-nav__top{
	line-height: 1.2;
	margin-bottom: 7px;
}
#topmenu{
	display: flex;
	margin-left: -15px;
	margin-right: -15px;
}
#topmenu li a{
	display: block;
	font-size: 14px;
	color: var(--black);
	text-decoration: none;
	margin: 0 15px;
	padding: 14px 0;
}
#topmenu li a:hover,
#topmenu li a:focus,
#topmenu li.active a{
	color: var(--orange);
}
#topmenu li.active a{
	font-weight: 700;
}

/*#region change-language*/
.change-language{
	position: relative;
	margin-left: 30px;
	text-transform: uppercase;
	font-size: 14px;
	color: var(--black);
	cursor: pointer;
}
.active-language{
	position: relative;
	padding-right: 17px;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}
.active-language::before{
	position: absolute;
	content: "\f078";
	font-family: var(--iconfont);
	color: var(--black);
	top: 0;
	right: 0;
}
.language-menu{
	position: absolute;
	opacity: 0;
	visibility: hidden;
	top: 100%;
	left: 0;
	width: 100%;
	padding: 5px;
	list-style: none;
	text-align: center;
	background: #fff;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	z-index: 1;
}
.change-language.active .language-menu{
	opacity: 1;
	visibility: visible;
}
.language-menu li a{
	display: block;
	color: var(--black);
	text-decoration: none;
	padding: 2px 0;
}
.language-menu li a:hover,
.language-menu li a:focus{
	color: var(--orange);
}
/*#endregion*/

.header-nav__bottom{
	padding-bottom: 17px;
}
#mainmenu{
	display: flex;
}
#mainmenu>li{
	margin-right: 5px;
}
#mainmenu>li.submenu{
	position: relative;
}
#mainmenu li a{
	display: block;
	font-size: 16px;
	font-weight: 500;
	color: var(--black);
	line-height: 1;
	padding: 8px 20px;
	text-transform: uppercase;
	text-decoration: none;
}
#mainmenu>li>a:hover,
#mainmenu>li>a:focus,
#mainmenu>li.active>a{
	background: var(--orange);
	color: #fff;
}
#mainmenu>li.home>a{
	font-size: 25px;
	font-weight: 300;
	padding: 0;
	height: 100%;
	color: var(--green);
	padding: 2px 5px;
}
#mainmenu>li.home.active>a{
	background: transparent;
	color: var(--green);
}
#mainmenu>li.home>a:hover,
#mainmenu>li.home>a:focus{
	background: transparent;
	color: var(--orange);
}
#mainmenu>li.submenu>a{
	padding-right: 40px;
	position: relative;
}
#mainmenu>li.submenu>a::before{
	position: absolute;
	content: "\f078";
	font-family: var(--iconfont);
	font-weight: 400;
	top: 7px;
	right: 20px;
}
@media (min-width: 1025px){
	.submenu-child {
		position: absolute;
		opacity: 0;
		visibility: hidden;
		top: 100%;
		left: 0;
		z-index: 40;
		padding: 15px 0 5px 0;
		transition: .4s;
		-webkit-transition: .4s;
		-moz-transition: .4s;
		-ms-transition: .4s;
		-o-transition: .4s;
	}
	.submenu-child::before{
		position: absolute;
		content: "";
		top: 10px;
		left: 0;
		width: 100%;
		height: calc(100% - 10px);
		background: #fff;
		box-shadow: 0 3px 6px rgba(0,0,0,0.16);
		z-index: -1;
	}
	li.submenu:hover > .submenu-child {
		opacity: 1;
		visibility: visible;
	}
	.submenu-child li a{
		white-space: nowrap;
		padding: 10px 20px;
	}
	#mainmenu .submenu-child li a:hover,
	#mainmenu .submenu-child li a:focus{
		color: var(--orange);
	}
}

/*#region search*/
.top-search {
    position: relative;
    height: 100%;
    display: flex;
	align-items: center;
	margin-left: 5px;
}
.top-search__btn {
	position: relative;
	color: var(--green);
	width: 25px;
	height: 25px;
	font-size: 25px;
	line-height: 1;
	font-weight: 400;
	cursor: pointer;
	transition: .4s;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
}
.top-search__btn::before {
    position: absolute;
    width: 100%;
    height: 100%;
	content: "\f00d";
    font-family: var(--iconfont);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
	opacity: 0;
	visibility: hidden;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}
.top-search.active .top-search__btn::before {
	opacity: 1;
	visibility: visible;
}
.top-search__body {
    position: absolute;
    top: 100%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
	-o-transition: 0.4s;
	width: 300px;
	padding-top: 12px;
	z-index: 1;
}
.top-search.active .top-search__body {
    opacity: 1;
    visibility: visible;
}
.top-search__body input {
    width: 100%;
    height: 45px;
    border: none;
	padding: 10px 40px 10px 10px;
	font-size: 16px;
	color: var(--bodycolor);
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
.top-search__body button {
    position: absolute;
    width: 40px;
    height: 45px;
    right: 0;
    bottom: 0;
    background: #fff;
    border: none;
    display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

/*#endregion*/

/*#endregion*/

/*#region cta*/
#cta{
	background-position: center;
	background-size: cover;
	position: relative;
	color: #fff;
	padding: 110px 0;
}
#cta::before{
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, rgba(29, 51, 84, 0.9) 37%, transparent 75%);
}
#cta .container{
	position: relative;
	z-index: 1;
}
.cta {
	margin-left: 70px;
	max-width: 37%;
}
.cta .title-line{
	color: #fff;
	padding-bottom: 20px;
	margin-bottom: 65px;
}
.cta h5{
	margin-bottom: 16px;
}
.cta .btn{
	margin-top: 40px;
}
/*#endregion*/
/*recaptcha*/
.grecaptcha-badge {
	display: none;
}

.errorlist {
	color: #bd0000;
	list-style: none;
	font-family: 'Gotham', sans-serif;
	font-size: 18px;
	margin-bottom: 15px;
}

.success {
	color: #009000;
	font-family: 'Gotham', sans-serif;
	margin-bottom: 15px;
}
/*#region footer*/
#page-up {
	width: 45px;
	height: 45px;
	line-height: 1;
	position: fixed;
	right: 30px;
	bottom: 30px;
	background: #fff;
	color: #1D1D1B;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	z-index: 30;
	text-align: center;
	display: none;
	cursor: pointer;
	transition: background .4s;
	border: 1px solid #1D1D1B;
	-webkit-transition: background .4s;
	-moz-transition: background .4s;
	-ms-transition: background .4s;
	-o-transition: background .4s;
}
#page-up i{
	display: block;
	font-size: 16px;
	font-weight: 400;
	margin: 5px 0 3px 0;
}
#page-up:hover{
	background: var(--orange);
	border-color: var(--orange);
	color: #fff;
}
.footer-top{
	background: #fff;
	padding: 59px 0;
}
.footer-top .container{
	display: grid;
	grid-template-columns: auto minmax(170px, 25%);
	justify-content: space-between;
	gap: 20px;
}
.footer-bottom{
	background: var(--black);
	padding: 19px 0;
	color: #919191;
	font-size: 0.875em;
}
.footer-bottom a{
	color: #919191;
	text-decoration: none;
}
.footer-bottom a:hover,
.footer-bottom a:focus{
	color: var(--green);
}
.footer-bottom .container{
	display: flex;
	flex-wrap: wrap;
}
.footer-bottom .left{
	margin-right: 27px;
}
.footer-bottom ul{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.footer-bottom ul li a{
	color: #fff;
}
.footer-bottom ul li:not(:last-child)::after{
	content: "|";
	margin: 0 5px;
	color: #fff;
}
.footer-bottom .icon-heart{
	color: var(--green);
}
/*Heart beat animation*/
.footer-bottom .icon-heart{
	animation: beat 1300ms ease 0s infinite normal;
	transform-origin: center;
}
@keyframes beat{	
	0% { transform: scale(1);}
	14%{ transform: scale(1.3);}
	28% { transform: scale(1);}
	42% { transform: scale(1.3);}
	50% { transform: scale(1);}
}
/*#endregion*/

/*#region showcase*/
.showcase__sleder{
	position: relative;
}
.showcase-slide{
	background: var(--blue);
	min-height: 600px;
}
.showcase-slide__img{
	grid-column: 7 / 15;
	margin-left: -20px;
}
.showcase-slide__img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.showcase-slide__cont{
	grid-column: 2 / 7;
	padding: 180px 20px 100px 70px;
	align-self: end;
}
.showcase-slide__cont h1,
.showcase-slide__cont .intro{
	color: #fff;
}
.scroll-down{
	width: 45px;
	padding: 0;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}
.showcase-slide__cont .scroll-down{
	margin-top: 70px;
}
.showcase__dots{
	position: absolute;
	bottom: 30px;
	left: 0;
	right: 0;
	display: grid;
	grid-template-columns: 1fr repeat(12, minmax(1px, 120px)) 1fr;
	gap: 20px;
	z-index: 1;
}
.slick-dots {
	grid-column: 2 / -2;
	justify-self: end;
	display: flex;
	list-style: none;
	margin-left: -5px;
	margin-right: -5px;
}
.slick-dots li{
	background: #fff;
	width: 10px;
	height: 10px;
	margin: 0 5px;
}
.slick-dots .slick-active{
	background: var(--orange);
}
.slick-dots button{
	display: none;
}
/*#endregion*/

/*#region who-we-are*/
#who-we-are{
	padding-top: 90px;
	margin-bottom: 90px;
}
.who-we-are{
	text-align: center;
}
.who-we-are h5:not(:last-child) {
    margin-bottom: 35px;
}
.who-we-are .title-line::before{
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}
.who-we-are .intro{
	max-width: 790px;
	margin: 0 auto;
	color: var(--bodycolor);
}
.who-we-are .btn{
	margin: 60px auto 0 auto;
}
/*#endregion*/

/*#region other-pages*/
#other-pages{
	margin: 90px 0 120px 0;
}
.other-pages{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.page-single{
	display: flex;
	align-items: flex-end;
	text-decoration: none;
	position: relative;
	height: 25vw;
	max-height: 406px;
	color: #fff;
	padding: 30px;
	background-position: center;
	background-size: cover;
}
.page-single::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-image: linear-gradient(to top, #000, transparent 40%);
	opacity: 0.7;
	z-index: 1;
	transition: .4s;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
}
.page-single:hover::before,
.page-single:focus::before{
	background-color: var(--blue);
	opacity: 0.8;
}
.page-single h2{
	font-size: 34px;
	color: #fff;
}
.page-single > *{
	position: relative;
	z-index: 2;
}
/*#endregion*/

/*#region locations*/
#locations{
	margin: 120px 0 10px 0;
}
.locations{
	background: var(--blue);
}
.locations__map{
	grid-column: 1 / 8;
	background: var(--bodycolor);
}
.locations__cont{
	grid-column: 9 / 14;
	padding: 90px 0 100px 0;
	color: #fff;
}
.locations__cont h5{
	margin-bottom: 20px;
}
.locations__cont .title-line{
	margin-bottom: 65px;
	color: #fff;
}
.locations__cont .desc{
	max-width: 500px;
}
.locations__cont .btn{
	margin-top: 65px;
}
/*#endregion*/

/*#region header-page*/
.header-page__img img{
	width: 100%;
	height: 100%;
	max-height: 500px;
	object-fit: cover;
}
.breadcrumbs{
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	list-style: none;
	font-size: 0.875rem;
	color: var(--black);
	line-height: 1;
	margin: 20px 0;	
}
.breadcrumbs li:not(:first-child)::before{
	content: "\f105";
	font-family: var(--iconfont);
	margin: 0 10px;
}
.breadcrumbs a{
	color: var(--black);
}
.breadcrumbs li:first-child a{
	text-decoration: none;
	font-size: 1rem;
}
/*#endregion*/

/*#region content-article*/
.content-article{
	margin: 80px 0 90px 0;
}
.logo-bg{
	position: relative;
}
.logo-bg::before{
	position: absolute;
	content: "";
	right: 20px;
	top: 30px;
	width: 35%;
	max-width: 560px;
	height: 40vw;
	max-height: 650px;
	background-image: url('../images/logo-bg.svg');
	background-position: top center;
	background-size: contain;
	background-repeat: no-repeat;
	opacity: 0.03;
	z-index: -1;
}
.content-header{
	max-width: 1100px;
	margin: 0 auto 90px auto;
}
.content-block{
	display: grid;
	grid-template-columns: repeat(10, minmax(1px, 120px));
	gap: 20px;
	max-width: 1380px;
	margin: 0 auto;
}
.content-block__col{
	grid-column: span 5;
}
.content-block__col > *{
	max-width: 500px;
}
.content-block__col.left > *{
	margin-left: auto;
	margin-right: 40px;
}
.content-block__col.right > *{
	margin-left: 40px;
	margin-right: auto;
}
.content-block__col .img{
	max-width: 100%;
	margin: 0;
}
.content-block__col .img:not(:first-child){
	margin-top: 60px;
}
.content-block__col .img:not(:last-child){
	margin-bottom: 60px;
}
.content-block__col .img img{
	width: 100%;
	height: 100%;
	max-height: 500px;
	object-fit: cover;
}
.content-block__col.left .img{
	margin-left: 0;
	margin-right: 20px;
}
.content-block__col.right .img{
	margin-left: 20px;
	margin-right: 0;
}
.content-block__col ul{
	list-style: none;
}
.content-block__col ul:not(:last-child){
	margin-bottom: 30px;
}
.content-block__col ul li{
	position: relative;
	padding-left: 20px;
}
.content-block__col ul li:not(:last-child){
	margin-bottom: 1em;
}
.content-block__col ul li::before{
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	left: 0;
	top: 10px;
	background: var(--orange);
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
}
.content-block__col ul li ul{
	margin-top: 10px;
	margin-left: 20px;
}
.content-block__col ul li ul li::before{
	border: 2px solid var(--orange);
	background: transparent;
}
/*#endregion*/

/*#region page-list*/
#subpages{
	margin-bottom: 90px;
	padding-top: 75px;
	background-image: linear-gradient(to bottom, var(--yellow) calc(50% + 103px), transparent calc(50% + 103px));
}
#subpages h2{
	text-align: center;
	margin-bottom: 60px;
}
.page-list{
	display: grid;
	gap: 20px;
	justify-content: center;
}
.page-list.col4{
	grid-template-columns: repeat(4, 1fr);
}
.page-list.col3{
	grid-template-columns: repeat(3, minmax(200px, 400px));
	justify-content: center;
}
.page-list.col2{
	grid-template-columns: repeat(2, minmax(200px, 1fr));
	justify-content: center;
}
.page-single h3{
	color: #fff;
}
.page-list .page-single{
	padding: 24px;
	max-height: 300px;
}
.page-list.col4 .page-single{
	height: 18vw;
}
.page-list.col3 .page-single{
	height: 23vw;
}
.page-list.col2 .page-single{
	height: 30vw;
	max-height: 500px;
}
/*#endregion*/
.cgreen {
	color: #07AA51;
}
/*#region timeline*/
#timeline{
	background: var(--blue);
	color: #fff;
	padding: 90px 0;
}
#timeline h2{
	text-align: center;
	margin-bottom: 55px;
}
#timeline h2,
#timeline h3{
	color: #fff;
}
#timeline .btn{
	margin: 0 auto;
}
.timeline{
	position: relative;
	padding-bottom: 90px;
}
.timeline::before{
	position: absolute;
	content: "";
	left: 50%;
	top: 0;
	width: 2px;
	height: 100%;
	background: var(--green);
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}
.timeline__single{
	position: relative;
}
.timeline__single::before{
	position: absolute;
	content: "";
	top: -5px;
	width: 30px;
	height: 35px;
	background-image: url('../images/hexagon.svg');
	background-position: top;
	background-repeat: no-repeat;
	background-size: contain;
}
.timeline__single:not(:last-child){
	margin-bottom: 45px;
}
.timeline__single:nth-child(2n){
	margin-right: 50%;
	padding-right: 50px;
	text-align: right;
}
.timeline__single:nth-child(2n - 1){
	margin-left: 50%;
	padding-left: 50px;
}
.timeline__single:nth-child(2n)::before{
	right: 0;
	transform: translateX(50%);
	-webkit-transform: translateX(50%);
	-moz-transform: translateX(50%);
	-ms-transform: translateX(50%);
	-o-transform: translateX(50%);
}
.timeline__single:nth-child(2n - 1)::before{
	left: 0;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}
.timeline__single ul{
	list-style: none;
	font-size: 1.25rem;
	line-height: 1.4;
}
/*#endregion*/

/*#region manufacturing-page*/
#manufacturing{
	margin-bottom: 120px;
}
#numbers{
	background: var(--blue);
	padding: 80px 0;
	color: #fff;
}
.numbers{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	text-align: center;
	max-width: 1380px;
	margin: 0 auto;
}
.numbers-single__ico{
	width: 100%;
	height: 43px;
	font-size: 43px;
	line-height: 1;
	color: var(--green);
	margin: 0 auto 20px auto;
}
.numbers-single__titel{
	font-size: 46px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 10px;
}
.numbers-single__subtitel{
	font-size: 20px;
	font-weight: 700;
}
.gallery-section{
	margin: 120px 0;
}
.gallery-section h2{
	text-align: center;
	margin-bottom: 60px;
}
.gallery{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.gallery__item {
	height: 18vw;
	max-height: 300px;
	position: relative;
	cursor: pointer;
}
.gallery__item::before{
	position: absolute;
	content: "\f320";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: rgba(17, 155, 58, 0.76);
	font-size: 43px;
	font-family: var(--iconfont);
	opacity: 0;
	visibility: hidden;
	transition: .4s;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
}
.gallery__item:hover::before,
.gallery__item:focus::before{
	opacity: 1;
	visibility: visible;
}
.gallery__item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gallery__item.big{
	grid-column: span 2;
	grid-row: span 2;
	height: 100%;
	max-height: 615px;
}

.gallery-popup{
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(29, 51, 84, 0.9);
	z-index: 600;
	align-items: center;
	justify-content: center;
}
.gallery-popup img{
	max-width: 100%;
	max-height: 100%;
	padding: 10px;
}
.gallery-popup__close,
.gallery-popup__nav{
	position: absolute;
	width: 30px;
	height: 30px;
	font-size: 30px;
	line-height: 1;
	color: #fff;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gallery-popup__close{
	right: 20px;
	top: 20px;
}
.gallery-popup__nav{
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}
.gallery-popup__nav.prev{
	left: 20px;
}
.gallery-popup__nav.next{
	right: 20px;
}
/*#endregion*/

/*#region products-page*/
#product{
	margin: 120px 0 90px 0;
}
#filter-menu{
	margin-top: 50px;
	margin-bottom: 50px;
}
.filter-menu{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	margin-left: -5px;
	margin-right: -5px;
	margin-bottom: 30px;
}
.filter-menu li a{
	display: block;
	font-size: 16px;
	line-height: 1.2;
	color: #1D1D1B;
	font-weight: 500;
	text-decoration: none;
	text-transform: uppercase;
	padding: 7px 20px 6px 20px;
	margin: 0 5px;
	margin-bottom: 10px;
}
.filter-menu li a:hover,
.filter-menu li a:focus,
.filter-menu li.active a{
	color: #fff;
	background: var(--orange);
}

.product-content{
	display: grid;
	grid-template-columns: 260px auto;
	gap: 20px;
}

/*#region product-filter*/
.show-product-filter{
	display: none;
}
.product-filter h5{
	font-size: 14px;
	color: #6C6C6C;
}
.filter-title{
	padding-bottom: 9px;
	border-bottom: 1px solid #707070;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.clear-filter{
	display: block;
	text-decoration: underline;
	font-size: 14px;
	color: var(--orange);
	cursor: pointer;
}
.check-list{
	margin-bottom: 40px;
}
.check-list:last-child{
	margin-bottom: 0;
}
.check-single{
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}
.check-single input[type="checkbox"] + label,
.check-single input[type="radio"] + label{
	font-size: 15px;
	flex-grow: 1;
}
.check-single .amount{
	font-size: 15px;
	color: #A7A7A7;
}
/*#endregion*/

.product-content > .right{
	width: 100%;
	max-width: 1030px;
	margin-left: auto;
}
.product-list{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
	gap: 20px;
}
.product-single{
	position: relative;
	height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #fff;
}
.product-single img{
	display: block;
	width: 90%;
	height: 90%;
	object-fit: contain;
	padding: 20px;
	margin: auto;
}
.pr-logo-hover{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(29, 51, 84, 0.8);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
	padding: 15px;
}
.product-single:hover .pr-logo-hover,
.product-single:focus .pr-logo-hover{
	opacity: 1;
	visibility: visible;
}
.pagination{
	list-style: none;
	display: flex;
	justify-content: center;
	font-size: 16px;
	font-weight: 500;
	margin-top: 50px;
}
.pagination li a{
	display: block;
	text-align: center;
	width: 28px;
	height: 28px;
	line-height: 28px;
	color: #A7A7A7;
	border: 1px solid #A7A7A7;
	text-decoration: none;
	margin: 0 7px;
}
.pagination li:not(.more) a:hover,
.pagination li:not(.more) a:focus,
.pagination li.active a{
	background: var(--orange);
	border-color: var(--orange);
	color: #fff;
}
.pagination li.prev a,
.pagination li.next a,
.pagination li.more a{
	border: none;
	font-size: 14px;
	font-weight: 400;
	vertical-align: middle;
	line-height: 30px;
}
/*#endregion*/

/*#region product-item-page*/
#product-item{
	margin-top: 30px;
}
#product-item .breadcrumbs{
	margin-bottom: 40px;
}
h1.title-line img{
	display: block;
	max-width: 300px;
	max-height: 100px;
	object-fit: contain;
	object-position: left center;
}
.product-item-content{
	display: grid;
	grid-template-columns: repeat(2, minmax(100px, 600px));
	gap: 60px 30px;
	justify-content: space-between;
	padding-bottom: 50px;
	margin-bottom: 60px;
	border-bottom: 1px solid #707070;
}
.product-item-content > .col1{
	grid-column: span 2;
}
.product-item-content h5:not(:last-child){
	margin-bottom: 16px;
}
.product-item-content h5:not(:first-child){
	margin-top: 50px;
}
.product-item-content .intro{
	color: var(--bodycolor);
}
.green-list{
	list-style: none;
	margin-bottom: 30px;
}
.green-list:last-child{
	margin-bottom: 0;
}
.green-list li{
	padding-left: 33px;
	margin-bottom: 15px;
	position: relative;
}
.green-list li:last-child{
	margin-bottom: 0;
}
.green-list li::before{
	position: absolute;
	top: 0;
	left: 0;
	content: "\f00c";
	font-family: var(--iconfont);
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	line-height: 20px;
	color: #07AA51;
}
.species:not(:first-child){
	margin-top: 50px;
}
.species:not(:last-child){
	margin-bottom: 50px;
}
h6 + .species{
	margin-top: 0;
}
.species-list{
	display: grid;
	grid-template-columns: repeat(auto-fill, 50px);
	gap: 15px;
}
.species-single{
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: #748CAB;
	display: block;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	overflow: hidden;
}
.species-single img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.product-item-content .btn-block:not(:first-child){
	margin-top: 50px;
}
.product-item-content .btn-block a:not(.btn){
	color: var(--bodycolor);
}
.point-list{
	list-style: none;
	margin-bottom: 30px;
}
.point-list:last-child {
	margin-bottom: 0;
}
.point-list li{
	padding-left: 25px;
	position: relative;
}
.point-list li::before{
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	top: 8px;
	left: 0;
	background: var(--orange);
	border-radius: 6px;
}
.file-list{
	list-style: none;
	margin-bottom: 30px;
	display: grid;
	grid-template-columns: fit-content(290px) fit-content(290px);
	justify-content: space-between;
	gap: 10px;
}
.file-list:last-child{
	margin-bottom: 0;
}
.file-list li{
	padding-left: 30px;
	position: relative;
}
.file-list li a{
	color: var(--bodycolor);
}
.file-list li::before{
	position: absolute;
	top: 0;
	left: 0;
	content: "\f1c1";
	font-family: var(--iconfont);
	font-size: 20px;
	font-weight: 300;
	text-align: center;
	line-height: 20px;
	color: #CB0000;
}

#related-products{
	margin: 60px 0;
}

.form-section{
	background: #F8F8F8;
	padding: 100px 0;
}
.form-section h2{
	text-align: center;
	margin-bottom: 70px;
}

/*#endregion*/

/*#region news-page*/
#news{
	margin: 120px 0 80px 0;
}
#news .intro{
	max-width: 1100px;
	margin-bottom: 60px;
}
#news .pagination{
	margin-top: 60px;
}
.news-list{
	display: grid;
	grid-template-columns: repeat(10, 1fr);
	gap: 20px;
}
.news-single {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: #fff;
	min-height: 300px;
	background-position: center;
	background-size: cover;
}
.news-list .news-single.first{
	grid-column: 1 / -1;
}
.news-list .news-single.small,
.news-list .news-single.small-img{
	grid-column: span 3;
}
.news-list .news-single.big{
	grid-column: span 7;
	grid-row: span 2;
}
.news-list .news-single.long{
	grid-column: span 4;
	grid-row: span 2;
}
.news-single.first{
	background: var(--blue);
	flex-direction: row;
	min-height: 460px;
}
.news-single.small{
	color: var(--black);
	background: #F8F8F8;
}
.news-single.small:hover,
.news-single.small:focus{
	background: var(--orange);
	color: #fff;
}
.news-single.big,
.news-single.long{
	padding: 44px 40px;
}
.news-single.small-img{
	padding: 22px 20px;
}
.news-single.big,
.news-single.long,
.news-single.small-img{
	justify-content: flex-end;
	position: relative;
}
.news-single.big::before,
.news-single.long::before,
.news-single.small-img::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: linear-gradient(to top, #000000, transparent 50%);
	transition: .4s;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
	z-index: 0;
}
.news-single.big > *,
.news-single.long > *,
.news-single.small-img > *{
	position: relative;
	z-index: 1;
}
.news-single.big:hover::before,
.news-single.big:focus::before,
.news-single.long:hover::before,
.news-single.long:focus::before,
.news-single.small-img:hover::before,
.news-single.small-img:focus::before{
	background-color: var(--blue);
	opacity: 0.8;
}
.news-single.first .img{
	flex-grow: 1;
	background-position: center;
	background-size: cover;
}
.news-single.first .content{
	display: flex;
	flex-direction: column;
	flex-basis: 560px;
	padding: 70px 35px 35px 50px;
}
.more-btn{
	width: 45px;
	height: 45px;
	padding: 0;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}
.news-single .more-btn{
	margin-left: auto;
	margin-top: auto;
}
.category-date{
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 14px;
	color: var(--green);
	transition: .4s;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
}
.news-single.big .category-date,
.news-single.long .category-date,
.news-single.small-img .category-date{
	color: #fff;
}
.news-single.small:hover .category-date,
.news-single.small:focus .category-date{
	color: #fff;
}
.news-tetel{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
}
.news-single.small .news-tetel{
	margin-bottom: 30px;
}
.news-single.first .news-tetel,
.news-single.big .news-tetel,
.news-single.long .news-tetel{
	font-size: 26px;
}
.news-tetel.title-line{
	padding-bottom: 16px;
	margin-bottom: 70px;
}
.news-single.first .description{
	max-height: 4.5rem;
	margin-bottom: 20px;
	overflow: hidden;
}
.news-single.small .description{
	max-height: 5.9rem;
	overflow: hidden;
}
.news-single.big .description,
.news-single.long .description,
.news-single.small-img .description{
	display: none;
}
.news-single.small{
	padding: 40px;
}
.news-single.small-img{
}
/*#endregion*/

/*#region news-item-page*/
.news-item-header__banner{
	min-height: 400px;
	padding: 40px 0 140px 0;
	background-position: center;
	background-size: cover;
	position: relative;
}
.news-item-header__banner::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(29, 29, 27, 0.1);
}
.news-item-header__banner > *{
	position: relative;
	z-index: 1;
}
.news-item-header__titel{
	max-width: 1420px;
	margin: -110px auto 0 auto;
	background: #fff;
	padding-top: 80px;
	position: relative;
	z-index: 2;
}
.news-item-header__titel .title-line{
	max-width: 800px;
	margin-bottom: 35px;
}
.time-share{
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.reading-time{
	display: block;
    padding-right: 25px;
    margin-right: 15px;
    border-right: 1px solid #707070;
}
.reading-time i{
	margin-right: 10px;
}
.soc-block{
	display: flex;
}
.soc-block a{
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #B7B7B7;
}
.soc-block a:hover,
.soc-block a:focus{
	color: var(--green);
}
.header-news .intro p{
	margin-bottom: 0;
}

.news-item__body{
	margin: 70px 0 90px 0;
}
.news-item__body .img,
.news-item__body .video,
.news-item__body .youtube{
	margin-top: 50px;
	margin-bottom: 60px;
	position: relative;
}
.news-item__body .img:first-child,
.news-item__body .video:first-child,
.news-item__body .youtube:first-child{
	margin-top: 0;
}
.news-item__body .img:last-child,
.news-item__body .video:last-child,
.news-item__body .youtube:last-child{
	margin-bottom: 0;
}
.news-item__body .alt{
	position: relative;
	margin-top: 20px;
	padding-bottom: 20px;
}
.news-item__body .alt::before{
	position: absolute;
	content: "";
	width: 120px;
	height: 3px;
	bottom: 0;
	left: 0;
	background: var(--green);
}
.news-item__body .img img,
.news-item__body .video video,
.news-item__body .youtube iframe{
	max-width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
}
.map iframe {
	display: block;
}
.related-products{
	padding-top: 60px;
	margin-bottom: 50px;
	border-top: 1px solid #707070;
}
.related-products h3{
	margin-bottom: 45px;
}
.rp-single{
	display: grid;
	grid-template-columns: minmax(150px, 300px) minmax(250px, 460px) fit-content(200px);
	gap: 30px;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 50px;
	margin-bottom: 30px;
	border-bottom: 1px solid #F2F2F2;
}
.rp-single:last-child{
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}
.article-nav{
	display: grid;
	grid-template-columns: repeat(2, fit-content(150px));
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #717171;
	padding-top: 10px;
	margin-bottom: 40px;
}
.article-nav a {
    display: block;
    color: var(--black);
    text-decoration: none;
	padding: 20px 0;
	font-size: 16px;
}
.article-nav a:hover,
.article-nav a:focus{
	color: var(--green);
}
.article-nav .prev i{
	margin-right: 20px;
}
.article-nav .next i{
	margin-left: 20px;
}
/*#endregion*/

/*#region join-us-page*/
#join-us{
	margin: 80px 0 90px 0;
}
.jobs-list{
	margin-top: 60px;
}
#join-us .pagination{
	margin-top: 60px;
}
.jobs-list{
	display: grid;
	gap: 20px;
}
.jobs-single{
	background: #F8F8F8;
	padding: 40px;
}
.jobs-single__titel{
	display: grid;
	grid-template-columns: auto fit-content(200px);
	gap: 20px;
	align-items: start;
	margin-bottom: 5px;
}
.jobs-single__titel h3{
	margin-bottom: 0;
}
.jobs-single .intro{
	color: var(--bodycolor);
	margin-bottom: 30px;
}
.jobs-single__info{
	display: grid;
	grid-template-columns: 150px 95px 130px 190px;
	gap: 20px;
	font-size: 16px;
}
.jobs-single__info h5{
	margin-bottom: 10px;
	font-size: 12px;
}
.jobs-quote{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	min-height: 360px;
	background: var(--blue);
	color: #fff;
	font-size: 36px;
	line-height: 1.2;
	font-weight: 600;
}
.jobs-quote .img{
	background-size: cover;
	background-position: center;
}
.jobs-quote .quote{
	padding: 40px;
	align-self: center;
	justify-self: center;
}
.jobs-quote .quote h2{
	max-width: 450px;
	padding-left: 60px;
	color: #fff;
	position: relative;
}
.jobs-quote .quote h2::before{
	position: absolute;
	content: "\201c";
	left: 0;
	top: -20px;
	color: var(--green);
	font-size: 75px;
	line-height: 1;
}
/*#endregion*/

/*#region join-us-item-page*/
.content-header .jobs-single__info{
	margin-top: 50px;
}
.content-footer > *{
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}
.content-footer > *:first-child{
	margin-top: 90px;
	padding-top: 65px;
	border-top: 1px solid #A7A7A7;
}
.content-footer h2{
	margin-bottom: 25px;
}
.content-footer .intro p{
	margin-bottom: 0;
}
.content-footer .img{
	max-width: 1380px;
	margin-top: 90px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px;
	align-items: stretch;
}
.content-footer .img img{
	object-fit: cover;
}
/*#endregion*/


/*#region media*/
@media (max-width: 1500px){
	.news-item-header__titel{
		margin-top: 0;
	}
	.news-item-header__banner{
		padding: 40px 0;
	}
}
@media (max-width: 1440px){
	.page-single h2{
		font-size: 25px;
	}
}
@media (max-width: 1200px){
	#mainmenu li a{
		padding: 8px 10px;
	}
	#mainmenu>li.submenu>a {
		padding-right: 35px;
	}
	#mainmenu>li.submenu>a::before{
		right: 10px;
	}
	.showcase-slide__cont {
		grid-column: 2 / 7;
		padding: 50px 20px 50px 0;
		align-self: center;
	}
}
@media (min-width: 1025px){
	.hide-desktop{
		display: none;
	}
}
@media (max-width: 1024px){
	.hide-mobile{
		display: none;
	}
	/*#region header/footer*/
	#hamburger{
		display: block;
	}
	.change-language{
		margin-left: auto;
	}
	.top-search{
		margin: 0 10px;
	}
	#header-menu .logo img{
		height: 46px;
		margin: 2px 0;
	}
	.header-nav{
		position: absolute;
		left: -300px;
		top: 50px;
		width: 300px;
		height: calc(100vh - 50px);
		overflow: auto;
		flex-direction: column;
		padding: 30px 15px;
		background: #fff;
		transition: .4s;
		-webkit-transition: .4s;
		-moz-transition: .4s;
		-ms-transition: .4s;
		-o-transition: .4s;
		z-index: 1;
	}
	.menu-active .header-nav{
		left: 0;
	}
	.menu-active #menu-overley {
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		top: 50px;
		height: calc(100vh - 50px);
		background: rgba(0,0,0,0.7);
		z-index: 0;
	}
	.header-nav__top,
	.header-nav__bottom{
		flex-direction: column;
		align-items: flex-start;
	}
	#topmenu{
		flex-direction: column;
		margin: 0;
	}
	#topmenu li a{
		margin: 0;
		padding: 10px 0;
	}
	#mainmenu{
		flex-direction: column;
		width: 100%;
	}
	.submenu-child{
		display: none;
		padding-left: 15px;
	}
	#mainmenu>li {
		margin-right: 0;
		margin-bottom: 10px;
	}
	/*#endregion*/

	#cta{
		padding: 50px 0;
	}
	#cta::before{
		background-image: linear-gradient(to right, rgba(29, 51, 84, 0.9) 50%, transparent);
	}
	.cta{
		max-width: 50%;
		margin-left: 0;
	}
	.other-pages {
		grid-template-columns: repeat(2, 1fr);
	}
	.page-single{
		height: 40vw;
	}
	.page-single::before{
		background-image: linear-gradient(to top, #000, transparent 50%);
	}
	h1{
		font-size: 3rem;
	}
	.showcase-slide{
		min-height: auto;
	}
	.showcase-slide__img{
		grid-column: 1 / -1;
		grid-row: 1;
		opacity: 0.2;
		margin-left: 0;
	}
	.showcase-slide__cont{
		grid-column: 2 / -2;
		grid-row: 1;
		z-index: 2;
	}
	#who-we-are{
		padding-top: 50px;
		margin-bottom: 50px;
	}
	.locations__cont{
		grid-column: 8 / 14;
		padding: 50px 0;
	}
	.content-block__col.left > * {
		margin-right: 20px;
	}
	.content-block__col.right > * {
		margin-left: 20px;
	}
	.content-block__col.right .img,
	.content-block__col.left .img{
		margin-left: 0;
		margin-right: 0;
	}
	.content-block__col .img:not(:first-child){
		margin-top: 40px;
	}
	.content-block__col .img:not(:last-child) {
		margin-bottom: 40px;
	}
	#subpages{
		padding-top: 50px;
		margin-bottom: 50px;
		background-image: linear-gradient(to bottom, var(--yellow) 350px, transparent 350px);
	}
	.page-list.col4{
		grid-template-columns: repeat(2, minmax(100px, 400px));
		justify-content: center;
	}
	.page-list.col4 .page-single {
		height: 35vw;
	}
	.numbers-single__titel{
		font-size: 30px;
	}
	.numbers-single__subtitel{
		font-size: 18px;
	}
	.gallery{
		gap: 10px;
	}
	.filter-menu{
		justify-content: center;
	}
	.filter-menu li a{
		padding-left: 10px;
		padding-right: 10px;
	}
	.product-content{
		grid-template-columns: 200px auto;
	}
	.pr-logo-hover{
		opacity: 1;
		visibility: visible;
	}
	.file-list{
		grid-template-columns: 1fr;
	}
	.form-block{
		padding: 30px 20px;
	}
	.form-row{
		gap: 20px;
	}
	.form-row + .form-row {
		margin-top: 20px;
	}
	#related-products h3{
		text-align: center;
	}
	.news-list{
		grid-auto-flow: dense;
		gap: 10px;
	}
	.news-list .news-single.small,
	.news-list .news-single.small-img,
	.news-list .news-single.big,
	.news-list .news-single.long{
		grid-column: span 5;
	}
	.news-list .news-single.small,
	.news-list .news-single.small-img,
	.news-list .news-single.big,
	.news-list .news-single.long{
		padding: 20px;
	}
	.news-list .news-single.small{
		justify-content: center;
	}
	.news-single{
		min-height: 260px;
	}
	
	.news-single.first{
		min-height: auto;
	}
	.news-single.first .content{
		padding: 30px 20px;
		flex-basis: 50%;
	}
	.news-item-header__banner{
		min-height: 200px;
	}
	.news-tetel.title-line{
		margin-bottom: 20px;
	}
	.news-item-header__titel,
	.related-products{
		padding-top: 50px;
	}
	.jobs-quote .quote{
		padding: 40px 20px;
	}
	.jobs-quote .quote h2{
		padding-left: 40px;
	}
	.content-footer > *:first-child{
		margin-top: 50px;
		padding-top: 50px;
	}
	.content-footer .img{
		gap: 20px;
	}


	h1:not(:last-child),
	.locations__cont .title-line,
	.cta .title-line,
	#subpages h2,
	.gallery-section h2,
	.form-section h2,
	#news .intro {
		margin-bottom: 40px;
	}
	.showcase-slide__cont .scroll-down,
	.who-we-are .btn,
	.locations__cont .btn {
		margin-top: 40px;
	}
	#other-pages,
	.content-article,
	.gallery-section,
	#product,
	#related-products,
	#news,
	.news-item__body,
	#join-us{
		margin: 50px 0;
	}
	#timeline,
	#numbers,
	.form-section{
		padding: 50px 0;
	}
	#locations,
	.jobs-list,
	.content-footer .img{
		margin-top: 50px;
	}
	.content-header,
	#manufacturing,
	.product-item-content{
		margin-bottom: 50px;
	}
	.who-we-are h5:not(:last-child) {
		margin-bottom: 20px;
	}
	h1.title-line,
	h2.title-line {
		padding-bottom: 20px;
	}
}
@media (max-width: 768px){
	.top-search__body{
		position: fixed;
		left: 10px;
		right: 10px;
		top: 50px;
		width: calc(100% - 20px);
	}
	#cta::before{
		background: rgba(29, 51, 84, 0.9) ;
	}
	.cta{
		max-width: 575px;
	}
	.locations {
		row-gap: 0;
	}
	.locations__map{
		grid-column: 1 / -1;
		height: 500px;
	}
	.locations__cont{
		grid-column: 2 / -2;
	}
	.locations__cont .desc {
		max-width: 100%;
	}
	.content-block__col{
		grid-column: 1 / -1
	}
	.content-block__col > * {
		max-width: 100%;
	}
	.content-block__col.left > * ,
	.content-block__col.right > * {
		margin-right: 0;
		margin-left: 0;
	}
	.content-block__col .img img{
		width: auto;
		height: auto;
		margin-left: auto;
		margin-right: auto;
	}
	.content-block{
		row-gap: 40px;
	}
	.page-list.col3 {
		grid-template-columns: repeat(auto-fill, minmax(200px, 400px));
	}
	.page-list.col3 .page-single {
		height: 70vw;
	}
	.timeline{
		padding-bottom: 0;
	}
	#timeline .btn{
		margin-top: 40px;
	}
	.timeline::before{
		left: 15px;
	}
	.timeline__single:nth-child(2n - 1),
	.timeline__single:nth-child(2n){
		margin-left: 0;
		margin-right: 0;
		padding-right: 0;
		padding-left: 50px;
		text-align: left;
	}
	.timeline__single:nth-child(2n - 1)::before,
	.timeline__single:nth-child(2n)::before{
		left: 0;
		right: inherit;
		transform: none;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		-o-transform: none;
	}
	.numbers{
		grid-template-columns: repeat(2, 1fr);
		row-gap: 40px;
	}
	.gallery{
		grid-template-columns: repeat(2, 1fr);
	}
	.gallery__item{
		height: 35vw;
	}
	#filter-menu{
		margin: 30px 0;
	}
	.product-content{
		grid-template-columns: 1fr;
	}
	.show-product-filter {
		display: flex;
		margin: 0 auto 20px auto;
	}
	.product-filter{
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
		display: none;
	}
	.product-item-content > .col2 {
		grid-column: span 2;
	}
	.form-row.col3 .col {
		grid-column: span 6;
	}
	.rp-single{
		grid-template-columns: 1fr;
		padding-bottom: 30px;
	}
	.rp-single > *{
		justify-self: center;
		text-align: center;
	}
	.rp-single .img{
		width: 100%;
		max-width: 300px;
	}
	.jobs-single{
		padding: 30px 20px;
	}
	.jobs-single__info{
		grid-template-columns: repeat(4, 1fr);
		gap: 30px 20px;
	}
}
@media (max-width: 600px){
	.other-pages {
		grid-template-columns: 1fr;
	}
	.page-single{
		height: 70vw;
	}
	
	.page-list.col4,
	.page-list.col2 {
		grid-template-columns: repeat(auto-fill, minmax(200px, 400px));
	}
	.page-list.col2 .page-single,
	.page-list.col4 .page-single {
		height: 70vw;
		max-height: 300px;
	}
	.news-single.first{
		position: relative;
	}
	.news-single.first .img{
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
	}
	.news-single.first .content{
		flex-basis: 100%;
		position: relative;
		z-index: 2;
		background: rgba(29, 51, 84, 0.8);
	}
	.news-list .news-single.small,
	.news-list .news-single.small-img,
	.news-list .news-single.big,
	.news-list .news-single.long {
		grid-column: 1 / -1;
		grid-row: span 1;
	}
	.news-single.big .news-tetel,
	.news-single.long .news-tetel {
		font-size: 20px;
	}
	.jobs-single__titel{
		grid-template-columns: 1fr;
		gap: 10px;
		margin-bottom: 20px;
	}
	.jobs-quote{
		min-height: 200px;
	}
	.jobs-quote .img{
		grid-row: 1;
		grid-column: 1 / -1;
		opacity: 0.1;
	}
	.jobs-quote .quote{
		grid-row: 1;
		grid-column: 1 / -1;
		z-index: 2;
		position: relative;
	}
	.jobs-single__info {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 425px){
	.container{
		padding-left: 15px;
		padding-right: 15px;
	}
	.footer-top {
		padding: 30px 0;
	}
	.footer-top .container{
		grid-template-columns: 1fr;
		text-align: center;
	}
	.footer-top .logo{
		margin: 0 auto;
	}
	.footer-bottom .container{
		text-align: center;
		justify-content: center;
	}
	.footer-bottom .left {
		margin-right: 0;
		margin-bottom: 3px;
		width: 100%;
	}
	.footer-bottom ul{
		justify-content: center;
	}
	#page-up{
		right: 10px;
	}
	.page-single{
		padding: 15px;
	}
	h1 {
		font-size: 2.1875rem;
	}
	h2 {
		font-size: 1.875rem;
	}
	h3 {
		font-size: 1.5rem;
	}
	.numbers{
		grid-template-columns: 1fr;
	}
	.pagination li a{
		margin: 0 2px;
	}
	.product-list{
		gap: 15px;
	}
	.content-footer .img{
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.intro{
		font-size: 1.125rem;
	}
	.gallery{
		display: block;
	}
	.gallery__item{
		height: auto;
	}
	.gallery__item::before{
		display: none;
	}
	.gallery .slick-dots{
		justify-content: center;
		margin-top: 10px;
	}
	.gallery .slick-dots li{
		background: var(--blue);
	}
	.gallery .slick-dots .slick-active {
		background: var(--orange);
	}
	.map iframe {
		height: 400px!important;
	}
}
/*#endregion*/