/**/
/* imports */
/**/
@import url(bootstrap-reboot.min.css);
@import url(bootstrap-grid.min.css);
@import url(animate.css);


/**/
/* fonts */
/**/
@font-face {
	font-family: Futura;
	font-weight: 400;
	src: url(../fnt/FuturaNewBook-Reg.ttf);
}
@font-face {
	font-family: Futura;
	font-style: italic;
	font-weight: 400;
	src: url(../fnt/FuturaNewBook-Obl.ttf);
}
@font-face {
	font-family: Futura;
	font-weight: 500;
	src: url(../fnt/FuturaNewMedium-Reg.ttf);
}
@font-face {
	font-family: Futura;
	font-style: italic;
	font-weight: 500;
	src: url(../fnt/FuturaNewMedium-Obl.ttf);
}
@font-face {
	font-family: Futura;
	font-weight: 700;
	src: url(../fnt/FuturaNewBold-Reg.ttf);
}
@font-face {
	font-family: Futura;
	font-style: italic;
	font-weight: 700;
	src: url(../fnt/FuturaNewBold-Obl.ttf);
}


/**/
/* defaults */
/**/
html, body {
	font: 400 16px/1.5 Futura, sans-serif;
	color: #000;
}
p, .p {
	margin: 0;
	font-size: 28px;
	line-height: 1.5;
}
h1, .h1 {
	margin: 0;
	font-size: 100px;
	line-height: 1;
	font-weight: 500;
	text-transform: uppercase;
}
h2, .h2 {
	margin: 0;
	font-size: 42px;
	line-height: 1.125;
	font-weight: 700;
}
h3, .h3 {
	margin: 0;
	font-size: 34px;
	line-height: 1.25;
	font-weight: 700;
}
hr, .hr {
	margin: 30px 0;
	border: none;
	border-top: 3px solid #000;
}
.tbl {
	display: table;
	width: 100%;
	height: 100%;
}
.tcl {
	display: table-cell;
	vertical-align: middle;
}
.fw500 {
	font-weight: 500;
}
.nobr {
	white-space: nowrap;
}
.c-yellow {
	color: #f3c300;
}
a {
	color: #76bc21;
}
a:hover {
	text-decoration: none;
	color: #76bc21;
}
input:focus,
button:focus {
	outline: none;
}
.hidden {
	display: none;
}
::selection {
	background-color: rgba(125,125,125,0.5);
}
@media screen and (max-width: 991.98px) {
	p, .p {
		font-size: 22px;
	}
	h1, .h1 {
		font-size: 80px;
		line-height: 1.125;
	}
	h2, .h2 {
		font-size: 34px;
	}
	h3, .h3 {
		font-size: 27px;
	}
}
@media screen and (max-width: 575.98px) {
	p, .p {
		font-size: 17px;
	}
	h1, .h1 {
		font-size: 60px;
	}
	h2, .h2 {
		font-size: 25px;
	}
	h3, .h3 {
		font-size: 20px;
	}
	hr, .hr {
		margin: 18px 0;
		border-top-width: 2px;
	}
}


/**/
/* grid */
/**/
@media (min-width: 1200px) {
	.container_sm {
		max-width: 1000px;
	}
}


/**/
/* page */
/**/
#page {
	overflow: hidden;
}
.footer {
	margin-top: 120px;
	padding: 40px 0;
	background-color: #000;
	font-weight: 500;
	color: #fff;
}
.front-page-content + .footer {
	margin-top: 0;
}
@media screen and (max-width: 767.98px) {
	.footer {
		text-align: center;
	}
}
@media screen and (max-width: 575.98px) {
	.footer {
		margin-top: 72px;
	}
}



/*----------------------------------------------*/
/*                    HEADER                    */
/*----------------------------------------------*/

/**/
/* logo */
/**/
.logo {
	display: inline-block;
	vertical-align: top;
	margin: 30px 0;
}
.logo img {
	display: block;
}
.header_fixed .logo {
	margin-bottom: 100px;
}
@media screen and (max-width: 767.98px) {
	.logo {
		margin: 18px 0;
	}
	.logo img 
	{
		width: auto;
		height: 34px;
	}
	.header_fixed .logo {
		margin-bottom: 18px;
	}
}


/**/
/* burger */
/**/
.burger {
	position: relative;
	display: none;
	width: 70px;
	height: 70px;
	margin-right: -15px;
	padding: 0;
	border: none;
	background: none;
}
.burger i {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 2px;
	margin: -1px 0 0 -20px;
	background-color: #76bc21;
	transition-duration: 0.25s;
	transition-property: background-color;
}
.burger i::after,
.burger i::before {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #76bc21;
	transition-duration: 0.25s;
	transition-property: top, bottom, transform;
}
.burger i::after {
	top: 8px;
}
.burger i::before {
	bottom: 8px;
}
.burger_active i {
	background-color: transparent;
}
.burger_active i::after {
	top: 0;
	transform: rotate(45deg);
}
.burger_active i::before {
	bottom: 0;
	transform: rotate(-45deg);
}
@media screen and (max-width: 767.98px) {
	.burger {
		display: block;
	}
}


/**/
/* main nav */
/**/
.main-nav {
	background-color: #76bc21;
	font-size: 0;
	text-align: center;
}
.main-nav__item {
	position: relative;
	display: inline-block;
	vertical-align: top;
	font-size: 20px;
	line-height: 70px;
	font-weight: 500;
	text-transform: uppercase;
}
.main-nav__link {
	display: block;
	padding: 0 20px;
	color: #fff;
	transition-duration: 0.25s;
	transition-property: background-color;
}
.main-nav__link i {
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin-top: 32px;
	margin-left: 0.5em;
	border-top: 0.375em solid currentColor;
	border-right: 0.375em solid transparent;
	border-left: 0.375em solid transparent;
}
.main-nav__link_active {
	color: #000;
}
.main-nav__toggle {
	position: absolute;
	top: 0;
	right: 0;
	display: none;
	width: 40px;
	height: 42px;
	padding: 0;
	border: none;
	background: none;
	transition-duration: 0.25s;
	transition-property: transform;
}
.main-nav__toggle::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -4px 0 0 -8px;
	border-top: 8px solid #fff;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
}
.main-nav__toggle_active {
	transform: scale(1,-1);
}
.main-nav__dropdown {
	position: absolute;
	z-index: 10;
	top: 100%;
	left: 0;
	min-width: 100%;
	border-top: 4px solid #fff;
	background-color: #76bc21;
	text-align: left;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	transition-duration: 0.25s;
	transition-property: opacity;
}
.main-nav__sublink {
	display: block;
	padding: 0 20px;
	border-top: 1px solid #fff;
	line-height: 60px;
	color: #fff;
	transition-duration: 0.25s;
	transition-property: background-color;
}
.main-nav__sublink:hover {
	background-color: rgba(255,255,255,0.125);
	color: #fff;
}
.main-nav__sublink_active,
.main-nav__sublink_active:hover {
	color: #000;
}
.main-nav__item:hover > .main-nav__link {
	background-color: rgba(255,255,255,0.125);
	color: #fff;
}
.main-nav__item:hover > .main-nav__link_active {
	color: #000;
}
.main-nav__item:hover > .main-nav__dropdown {
	pointer-events: auto;
	opacity: 1;
}
.header_fixed .main-nav {
	position: fixed;
	z-index: 10;
	top: 0;
	right: 0;
	left: 0;
	box-shadow: 0 0 0 5px #fff;
}
.admin-bar .header_fixed .main-nav {
	top: 32px;
}
@media screen and (max-width: 991.98px) {
	.main-nav__item {
		font-size: 16px;
	}
	.main-nav__link {
		padding: 0 15px;
	}
}
@media screen and (max-width: 767.98px) {
	.main-nav {
		display: none;
		padding: 12px 0;
		text-align: left;
	}
	.main-nav__item {
		display: block;
		line-height: 42px;
	}
	.main-nav__link {
		padding: 0;
	}
	.main-nav__link i {
		display: none;
	}
	.main-nav__toggle {
		display: block;
	}
	.main-nav__dropdown {
		position: static;
		display: none;
		border: none;
		pointer-events: auto;
		opacity: 1;
	}
	.main-nav__sublink {
		border-top: none;
		line-height: 42px;
	}
	.main-nav__sublink:hover {
		background: none;
	}
	.main-nav__item:hover > .main-nav__link {
		background: none;
	}
	.header_fixed .main-nav {
		position: static;
		box-shadow: none;
	}
}



/*----------------------------------------------*/
/*                    CONTENT                   */
/*----------------------------------------------*/

/**/
/* intro */
/**/
.intro {
	position: relative;
	/*overflow: hidden;*/
	margin-bottom: 80px;
	background-color: #000;
}
.front-page-content .intro {
	height: 100vh;
	margin-bottom: 0;
}
.intro__tcl {
	height: 75vh;
	padding: 60px 0;
}
.intro__logo {
	position: absolute;
	top: 40px;
	right: 50%;
	height: 60px;
	margin-right: -555px;
}
.intro__title {
	position: relative;
	font-size: 120px;
	line-height: 1.125;
	color: #fff;
	transform: scale(1);
}
.intro__title span {
	display: block;
	margin-bottom: 0.75em;
	font-size: 0.375em;
}
.intro__video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%,-50%);
}
@media screen and (max-width: 1199.98px) {
	.front-page-content .intro {
		height: auto;
	}
	.intro__logo {
		margin-right: -465px;
	}
}
@media screen and (max-width: 991.98px) {
	.intro__logo {
		margin-right: -345px;
	}
	.intro__title {
		font-size: 96px;
	}
}
@media screen and (max-width: 767.98px) {
	.intro {
		background: url(../img/bg@tb.jpg) 50% 50% no-repeat;
		background-size: cover;
		text-align: center;
	}
	.intro__tcl {
		padding: 180px 0 80px;
	}
	.intro__logo {
		right: auto;
		left: 50%;
		margin-right: 0;
		transform: translateX(-50%);
	}
	.intro__video {
		display: none;
	}
}
@media screen and (max-width: 575.98px) {
	.intro {
		margin-bottom: 48px;
	}
	.intro__tcl {
		padding: 120px 0 48px;
	}
	.intro__logo {
		top: 24px;
		height: 48px;
	}
	.intro__title {
		font-size: 72px;
	}
}


/**/
/* services */
/**/
.services {
	text-align: center;
	text-transform: uppercase;
}
.services__title {
	margin-bottom: 10px;
	font-weight: 500;
}
.hero-service-list .services__title {
	color: #fff;
}
.services__title span {
	font-size: 0.75em;
	white-space: nowrap;
}
.services__over {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	color: #fff;
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	transition-duration: 0.25s;
}
.services__item {
	position: relative;
	display: block;
	height: 180px;
	margin-top: 30px;
	box-shadow: 2px 2px 4px rgba(0,0,0,0.125);
	text-align: left;
}
.hero-service-list .services__item {
	max-width: 400px;
	height: 140px;
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
}
.services__item img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100px;
	margin: auto;
}
.services__item_blue {
	border: 1px solid #2f7de1;
	background-color: rgba(42,155,255,0.125);
}
.hero-service-list .services__item_blue {
	background-color: rgb(228 242 255);
}
.services__item_blue .services__over {
	background-color: #2f7de1;
}
.services__item_axion img {
	height: 45px;
	top: 10px;
}
.services__item_orange {
	border: 1px solid #f88d2b;
	background-color: rgba(248,141,43,0.125);
}
.hero-service-list .services__item_orange {
	background-color: rgb(254 241 228);
}
.services__item_orange .services__over {
	background-color: #f88d2b;
}
/*.services__item_soliton img {*/
	/*height: 80px;*/
	/*bottom: 20px;*/
/*}*/
.services__item_yellow {
	border: 1px solid #f3c300;
	background-color: rgba(243,195,0,0.125);
}
.hero-service-list .services__item_yellow {
	background-color: rgb(253 247 223);
}
.services__item_yellow .services__over {
	background-color: #f3c300;
}
.services__item:hover .services__over {
	pointer-events: initial;
	visibility: visible;
	opacity: 1;
}
.services__heading {
	position: absolute;
	top: 15px;
	right: 20px;
	left: 20px;
	font-size: 30px;
	line-height: 1.125;
	font-weight: 500;
}
.services__button {
	position: absolute;
	right: 10px;
	bottom: 10px;
	padding: 0 20px;
	background-color: #fff;
	font-size: 1.25rem;
	line-height: 2;
	font-weight: 500;
	color: #000;
}
@media screen and (max-width: 767px) {
	.services__title span {
		display: block;
		margin-top: 10px;
	}
}
@media screen and (max-width: 575.98px) {
	.services__title {
		margin-bottom: 6px;
	}
	.services__title span {
		margin-top: 6px;
	}
	.services__item {
		margin-top: 18px;
	}
}


/**/
/* hero */
/**/
.hero {
	display: flex;
	flex-flow: column;
	justify-content: center;
	height: 490px;
	overflow: hidden;
	margin: 5px 0 80px;
	background-color: #000;
	background-image: url(../img/space.jpg);
	background-position: 50% 50%;
	background-size: cover;
	color: #fff;
}
.hero__logo {
	position: relative;
	z-index: 1;
}
.hero__title sup, .intro__title sup {
	position: static;
	display: inline;
	vertical-align: top;
	margin: 0.325em 0 0 0.25em;
	font-size: 0.25em;
	line-height: 1;
}
.hero__title span {
	display: block;
}
.hero__title_sm {
	position: relative;
	font-size: 72px;
	line-height: 1.125;
}
.hero__title_sm::before {
	content: '';
	position: absolute;
	top: -10px;
	right: -30px;
	bottom: -10px;
	left: calc(-100vw/2 + 970px/2 - 1px);
	background-position: 50% 50%;
	background-size: cover;
}
.hero__title_sm em {
	display: block;
	font-style: normal;
}
.hero__title_sm span {
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.hero__title_sm span::after {
	content: '';
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 100%;
	margin-left: 30px;
}
.hero_axion {
	background-color: #E5F2FF;
	background-image: none;
}
.hero_axion .hero__title::before {
	background-image: url(../img/hero/bg-axion.jpg);
}
/*.hero_axion .hero__title span::after,*/
/*.hero_axion .hero__title span::before {*/
	/*background: #E5F2FF;*/
	/*width: 100%;*/
	/*top: -10px;*/
/*}*/
/*.hero_axion .hero__title span:nth-child(3)::after,*/
/*.hero_axion .hero__title span:nth-child(3)::before {*/
	/*width: 125%;*/
/*}*/
/*.hero_axion .hero__title span:nth-child(5)::after,*/
/*.hero_axion .hero__title span:nth-child(5)::before {*/
	/*top: -10px;*/
	/*width: 50%;*/
/*}*/
/*.hero_axion .hero__title span:nth-child(7)::after,*/
/*.hero_axion .hero__title span:nth-child(7)::before {*/
	/*!*top: -10px;*!*/
	/*top: 10px;*/
	/*bottom: -10px;*/
	/*!*width: 25%;*!*/
/*}*/
.hero_compli {
	background-color: #FDF7E4;
	background-image: none;
	text-align: right;
}
.hero_compli .hero__title::before {
	right: calc(-100vw/2 + 970px/2 - 1px);
	left: -30px;
	background-image: url(../img/hero/bg-compli.jpg);
}
.hero_compli .hero__title span::after {
	right: 100%;
	left: auto;
	margin: 0 30px 0 0;
	background: #FDF7E4;
}
/*.hero_compli .hero__title span::before {*/
	/*background: #FDF7E4;*/
/*}*/
/*.hero_compli .hero__title span:nth-child(3)::after,*/
/*.hero_compli .hero__title span:nth-child(3)::before {*/
	/*width: 125%;*/
/*}*/
/*.hero_compli .hero__title span:nth-child(5)::after,*/
/*.hero_compli .hero__title span:nth-child(5)::before {*/
	/*top: -10px;*/
	/*width: 25%;*/
/*}*/
/*.hero_compli .hero__title span:nth-child(7)::after,*/
/*.hero_compli .hero__title span:nth-child(7)::before {*/
	/*top: -10px;*/
	/*bottom: -10px;*/
	/*width: 25%;*/
/*}*/
.hero_soliton {
	background-color: #FEF1E5;
	background-image: none;
}
.hero_soliton .hero__title::before {
	background-image: url(../img/hero/bg-soliton.jpg);
}
/*.hero_soliton .hero__title span::after,*/
/*.hero_soliton .hero__title span::before {*/
	/*background: #FEF1E5;*/
/*}*/
/*.hero_soliton .hero__title span:nth-child(3)::after,*/
/*.hero_soliton .hero__title span:nth-child(3)::before {*/
	/*bottom: -10px;*/
	/*width: 25%;*/
/*}*/
/*.hero_soliton .hero__title span:nth-child(5)::after,*/
/*.hero_soliton .hero__title span:nth-child(5)::before {*/
	/*width: 175%;*/
/*}*/
/*.hero_soliton .hero__title span:nth-child(7)::after,*/
/*.hero_soliton .hero__title span:nth-child(7)::before {*/
	/*top: -10px;*/
	/*bottom: -10px;*/
	/*width: 25%;*/
/*}*/
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
	.hero {
		background-image: url(../img/space@2x.jpg);
	}
	.hero_axion,
	.hero_compli,
	.hero_soliton {
		background-image: none;
	}
	.hero_soliton .hero__title::before {
		background-image: url(../img/hero/bg-soliton@2x.jpg);
	}
}
@media screen and (max-width: 1199.98px) {
	.hero__title_sm::before {
		left: calc(-100vw/2 + 930px/2 - 1px);
	}
	.hero_compli .hero__title::before {
		right: calc(-100vw/2 + 930px/2 - 1px);
		left: -30px;
	}
}
@media screen and (max-width: 991.98px) {
	.hero_axion .hero__logo {
		width: auto;
		height: 44px;
	}
    .hero_soliton .hero__logo {
		width: auto;
		height: 66px;
	}
    .hero_compli .hero__logo {
		width: auto;
		height: 83px;
	}
	.hero__title_sm {
		font-size: 58px;
	}
	.hero__title_sm::before {
		left: calc(-100vw/2 + 690px/2 - 1px);
	}
	.hero_compli .hero__title::before {
		right: calc(-100vw/2 + 690px/2 - 1px);
		left: -30px;
	}
}
@media screen and (max-width: 767.98px) {
	.hero {
		margin-top: 0;
		text-align: center;
	}
	.hero__logo {
		margin-bottom: 60px;
	}
	.hero__title_sm::before {
		left: -30px;
	}
	.hero__title_sm span::before {
		content: '';
		position: absolute;
		top: 10px;
		bottom: 10px;
		right: 100%;
		margin-right: 30px;
	}
	.hero_compli .hero__title::before {
		right: -30px;
	}
	.hero_compli .hero__title span::before {
		right: auto;
		left: 100%;
		margin: 0;
		margin-left: 30px;
	}
}
@media screen and (max-width: 575.98px) {
	.hero {
		height: 392px;
		margin-bottom: 48px;
	}
	.hero__logo {
		margin-bottom: 36px;
	}
	.hero__title_sm {
		font-size: 43px;
	}
	.hero__title_sm::before {
		top: -6px;
		right: -18px;
		bottom: -6px;
		left: -18px;
	}
	.hero__title_sm span::after {
		margin-left: 18px;
	}
	.hero__title_sm span::before {
		margin-right: 18px;
	}
	.hero_compli .hero__title::before {
		right: -18px;
		left: -18px;
	}
	.hero_compli .hero__title span::after {
		margin-right: 18px;
	}
	.hero_compli .hero__title span::before {
		margin-left: 18px;
	}
}


/**/
/* bread crumbs */
/**/
.bread-crumbs {
	margin-top: -20px;
	margin-bottom: 40px;
	font-size: 22px;
	font-style: italic;
}
.bread-crumbs__sep {
	padding: 0 0.375em;
	color: rgba(0,0,0,0.5);
}
.bread-crumbs__sep::before {
	content: '|';
}
.bread-crumbs__link {
	color: inherit;
	transition-duration: 0.25s;
	transition-property: color;
}
.bread-crumbs__page {
	color: rgba(0,0,0,0.5);
}
.bread-crumbs + .data-table {
	margin-top: 0;
}
.data-table__title + .data-table {
    margin-top: 0;
}
@media screen and (max-width: 991.98px) {
	.bread-crumbs {
		font-size: 18px;
	}
}
@media screen and (max-width: 575.98px) {
	.bread-crumbs {
		margin-top: -12px;
		margin-bottom: 24px;
		font-size: 13px;
	}
}


/**/
/* axion */
/**/
.axion p {
	margin-top: 30px;
}
.axion p a {
	color: #2a7de1;
}
.axion p a:hover {
	text-decoration: underline;
}
@media screen and (max-width: 575.98px) {
	.axion p {
		margin-top: 18px;
	}
	.axion .data-table {
		margin-top: 24px;
	}
}


/**/
/* axion nav */
/**/
.axion-nav {
	margin-top: 60px;
	padding-top: 30px;
	border-top: 3px solid #000;
}
.axion-nav p {
	margin-top: 30px;
}
.axion-nav p a {
	font-weight: 700;
	text-transform: uppercase;
	color: inherit;
	transition-duration: 0.25s;
	transition-property: color;
}
.axion-nav p a:hover {
	color: #2a7de1;
}
.axion-nav__item {
	display: block;
	margin-top: 30px;
	padding: 20px 10px;
	background-color: #2a7de1;
	box-shadow: inset 0 0 0 2px #2a7de1;
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	transition-duration: 0.25s;
	transition-property: background-color;
}
.axion-nav__item:hover {
	background-color: #266ec7;
	color: #fff;
}
.axion-nav__item_alt {
	background-color: rgba(42,155,255,0.125);
	color: #2a7de1;
}
.axion-nav__item_alt:hover {
	background-color: rgba(42,155,255,0.25);
	color: #2a7de1;
}
@media screen and (max-width: 575.98px) {
	.axion-nav {
		margin-top: 36px;
		padding-top: 18px;
		border-top-width: 2px;
	}
	.axion-nav__item {
		margin-top: 18px;
	}
}


/**/
/* axion products */
/**/
.axion-products h2, .axion h2 {
	text-transform: capitalize;
}
.axion-products__cog {
	margin-top: 30px;
	border: 1px solid #2a7de1;
}
.axion-products__cog p {
	padding: 21px 30px;
	font-size: 36px;
	line-height: 1.25;
	color: #2a7de1;
}
.axion-products__cog h3 {
	padding: 20px 30px;
	background-color: #2a7de1;
	color: #fff;
}
.axion-products__cog a {
	font-weight: 700;
	color: inherit;
}
.axion-products__cog a:hover {
	text-decoration: underline;
}
.axion-products__item {
	position: relative;
	display: block;
	margin-top: 30px;
	text-align: center;
    word-spacing: 100vw;;
}
.axion-products__item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(42,155,255,0);
	transition-duration: 0.25s;
	transition-property: background-color;
}
.axion-products__item:hover::before {
	background-color: rgba(42,155,255,0.75);
}
.axion-products__heading {
	position: absolute;
	top: 50%;
	right: 5px;
	left: 5px;
	font-size: 50px;
	line-height: 1.125;
	font-weight: 500;
	text-transform: uppercase;
	color: #fff;
	opacity: 0;
	transform: translateY(-37.5%);
	transition-duration: 0.25s;
	transition-property: opacity, transform;
}
.axion-products__item:hover .axion-products__heading {
	opacity: 1;
	transform: translateY(-50%);
}
.axion-products__item_pic {
	pointer-events: none;
}
.axion-products__item_blue {
	background-color: #2a7de1;
	transition-duration: 0.25s;
	transition-property: background-color;
}
.axion-products__item_blue img {
	visibility: hidden;
}
.axion-products__item_blue::before {
	display: none;
}
.axion-products__item_blue:hover {
	background-color: #266ec7;
}
.axion-products__item_blue .axion-products__heading {
	opacity: 1;
	transform: translateY(-50%);
}
@media screen and (max-width: 1199.98px) {
	.axion-products__cog p {
		padding-top: 14px;
		padding-bottom: 14px;
	}
	.axion-products__item img {
		width: 100%;
		height: auto;
	}
}
@media screen and (max-width: 991.98px) {
	.axion-products__cog {
		text-align: center;
	}
	.axion-products__cog p {
		font-size: 29px;
	}
	.axion-products__heading {
		font-size: 40px;
	}
}
@media screen and (max-width: 767.98px) {
	.axion-products__item {
		margin: 20px -5px 0;
	}
	.axion-products__heading {
		font-size: 30px;
	}
}
@media screen and (max-width: 575.98px) {
	.axion-products__cog {
		margin-top: 18px;
	}
	.axion-products__cog p {
		padding: 18px;
		font-size: 22px;
	}
	.axion-products__cog h3 {
		padding: 18px;
	}
	.axion-products__item {
		margin: 18px 0 0;
	}
	.axion-products__item::before {
		background-color: rgba(42,155,255,0.75);
	}
	.axion-products__heading {
		right: 20px;
		left: 20px;
		opacity: 1;
		transform: translateY(-50%);
	}
}


/**/
/* compli */
/**/
.compli p {
	margin-top: 30px;
}
.compli ul {
	margin: 0;
	padding: 0 0 0 30px;
}
.compli li {
	margin-top: 5px;
}
.compli__logo {
	float: right;
	margin: 0 0 30px 30px;
}
.compli__item {
	position: relative;
	display: block;
	height: 320px;
	margin-top: 30px;
	border: 1px solid #f3c300;
	background-color: rgba(243,195,0,0.125);
	transition-duration: 0.25s;
	transition-property: background-color;
}
.compli__item img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.compli__item:hover {
	background-color: rgba(243,195,0,0.25);
}
.compli__callout {
	box-shadow: inset 0 0 0 2px #f3c300;
	text-align: center;
}
.compli__callout p {
	margin: 0;
}
.compli__callout a {
	display: block;
	padding: 15px 30px;
	background-color: #f3c300;
	font-weight: 500;
	text-transform: uppercase;
	color: #fff;
	transition-duration: 0.25s;
	transition-property: background-color;
}
.compli__callout a:hover {
	background-color: #d9ad00;
}
.compli__contact {
	margin-top: 60px;
	padding-top: 60px;
	border-top: 3px solid #000;
	text-align: center;
}
.compli__contact a {
	display: inline-block;
	vertical-align: top;
	padding: 15px 60px;
	background-color: #f3c300;
	font-weight: 500;
	text-transform: uppercase;
	color: #fff;
	transition-duration: 0.25s;
	transition-property: background-color;
}
.compli__contact a:hover {
	background-color: #d9ad00;
}
@media screen and (max-width: 991.98px) {
	.compli__item {
		height: 256px;
	}
	.compli__logo,
	.compli__item img {
		width: auto;
		height: 136px;
	}
	.compli__callout p {
		padding: 20px;
	}
}
@media screen and (max-width: 767.98px) {
	.compli__logo {
		display: none;
	}
}
@media screen and (max-width: 575.98px) {
	.compli p {
		margin-top: 18px;
	}
	.compli li {
		margin-top: 3px;
	}
	.compli__item {
		height: 192px;
		margin-top: 18px;
	}
	.compli__item img {
		height: 102px;
	}
	.compli__callout p {
		margin: 0;
	}
	.compli__callout a {
		margin-top: -2px;
	}
	.compli__contact {
		margin-top: 36px;
		padding-top: 36px;
	}
	.compli__contact a {
		width: 100%;
		padding: 15px 0;
	}
}


/**/
/* soliton */
/**/
.soliton {
	margin-bottom: 60px;
	padding-bottom: 60px;
	border-bottom: 3px solid #000;
}
.soliton p,
.soliton-bottom-desc p {
	margin-top: 30px;
}
.soliton__button {
	display: block;
	margin-top: 30px;
	padding: 20px;
	background-color: #f88d2b;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	transition-duration: 0.25s;
}
.soliton__button:hover {
	background-color: #de7f26;
	color: #fff;
}
.soliton__button_alt {
	box-shadow: inset 0 0 0 2px #f88d2b;
	background-color: rgba(248,141,43,0.125);
	color: #f88d2b;
	transition-property: background-color;
}
.soliton__button_alt:hover {
	background-color: rgba(248,141,43,0.25);
	color: #f88d2b;
}
@media screen and (max-width: 575.98px) {
	.soliton {
		margin-bottom: 36px;
		padding-bottom: 36px;
		border-bottom-width: 2px;
	}
	.soliton p {
		margin-top: 18px;
	}
	.soliton__button {
		margin-top: 18px;
	}
}


/**/
/* data table */
/**/
.data-table {
	margin-top: 80px;
}
.data-table__title {
	margin-bottom: 40px;
}
.data-table__subtitle {
	margin: 40px 0;
}
.data-table__table {
	margin: -10px;
}
.data-table__table table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 10px;
	font-size: 22px;
	line-height: 1.25;
	font-weight: 500;
	color: #fff;
}
.data-table__table table p, .data-table__table table pre {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
    white-space: normal;
}
.data-table__table th {
	font-weight: 500;
	color: rgba(0,0,0,0.5);
}
.data-table__table td {
	padding: 10px 20px;
	background-color: #333;
}
.data-table__table .empty {
	padding: 0;
}
.data-table__notes {
	margin-top: 30px;
}
.data-table__notes p {
	margin: 10px 0 0;
	font-size: 18px;
	line-height: 1.375;
}
.data-table_blue td {
	background-color: #2a7de1;
}
.data-table_blue .dark {
	background-color: #2367ba;
}
.data-table_blue.data-table_zebra tr:nth-child(even) td {
	background-color: #2367ba;
}
.data-table_blue.data-table_clickable td,
.data-table_blue.data-table_rowclickable td {
	transition-duration: 0.25s;
	transition-property: opacity;
	cursor: pointer;
}
.data-table_blue.data-table_clickable td:hover,
.data-table_blue.data-table_rowclickable tr:hover td {
	opacity: 0.875;
}
.data-table_orange td {
	background-color: #f88d2b;
}
.data-table_orange.data-table_zebra tr:nth-child(even) td {
	background-color: #d17724;
}

@media screen and (max-width: 991.98px) {
	.data-table__table table {
		font-size: 18px;
	}
}
@media screen and (max-width: 575.98px) {
	.data-table {
		margin-top: 48px;
	}
	.data-table__title {
		margin-bottom: 24px;
	}
	.data-table__subtitle {
		margin: 24px 0;
	}
	.data-table__table {
		margin: -6px;
	}
	.data-table__table table {
		border-spacing: 6px;
		font-size: 15px;
	}
	.data-table__table td {
		padding: 6px 12px;
	}
	.data-table__notes {
		margin-top: 18px;
	}
	.data-table__notes p {
		margin-top: 6px;
		font-size: 13px;
	}
}


/**/
/* about */
/**/
.about p {
	margin: 40px 0 0;
}
.about em {
	font-style: italic;
	font-weight: 500;
}
.about__bion {
	position: relative;
	display: block;
	margin: 60px auto -20px;
	background-color: #fff;
	box-shadow: 0 0 0 20px #fff,  -8px 0 0 20px #fff;
}
.about__frame {
	padding: 18px 30px 30px;
	border: 2px solid #76bc21;
	text-align: center;
}
.about__item {
	position: relative;
	display: block;
	height: 130px;
	margin-top: 30px;
	transition-duration: 0.25s;
	transition-property: background-color;
}
.about__item img {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 91px;
	margin-top: -44px;
	transform: translateX(-50%);
}
.about__item_blue {
	border: 1px solid #2a7de1;
	background-color: rgba(42,155,255,0.125);
}
.about__item_blue:hover {
	background-color: rgba(42,155,255,0.25);
}
.about__item_orange {
	border: 1px solid #f88d2b;
	background-color: rgba(248,141,43,0.125);
}
.about__item_orange:hover {
	background-color: rgba(248,141,43,0.25);
}
.about__item_yellow {
	border: 1px solid #f3c300;
	background-color: rgba(243,195,0,0.125);
}
.about__item_yellow:hover {
	background-color: rgba(243,195,0,0.25);
}
@media screen and (max-width: 991.98px) {
	.about__bion {
		width: auto;
		height: 46px;
		margin-bottom: -13px;
	}
	.about__frame {
		padding-top: 11px;
	}
	.about__item {
		height: 104px;
	}
	.about__item img {
		height: 62px;
		margin-top: -31px;
	}
}
@media screen and (max-width: 575.98px) {
	.about p {
		margin-top: 24px;
	}
	.about__bion {
		margin-top: 36px;
	}
	.about__item {
		margin-top: 18px;
	}
	.about__frame {
		padding: 11px 18px 18px;
	}
}


/**/
/* team */
/**/
.team__row {
	margin: 0 -20px;
}
.team__col {
	padding: 0 20px;
}
.team__title {
	margin: 0;
	padding-bottom: 20px;
	border-bottom: 3px solid #000;
	text-transform: uppercase;
}
.team__item {
	margin-top: 60px;
}
.team__image {
	display: block;
}
.team__info {
	margin-top: 15px;
}
@media screen and (max-width: 991.98px) {
	.team__image {
		width: 200px;
		height: 200px;
	}
}
@media screen and (max-width: 767.98px) {
	.team__image {
		width: auto;
		height: auto;
		max-width: 100%;
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 575.98px) {
	.team__title {
		padding-bottom: 12px;
		border-bottom-width: 2px;
	}
	.team__item {
		margin-top: 36px;
	}
	.team__image {
		margin-bottom: 18px;
	}
	.team__info {
		margin-top: 9px;
	}
}


/**/
/* news */
/**/
.news__row {
	margin: 0 -20px;
}
.news__col {
	padding: 0 20px;
}
.news__title {
	margin: 0;
	padding-bottom: 20px;
	border-bottom: 3px solid #000;
	text-transform: uppercase;
}
.news__item {
	margin-top: 60px;
}
.news__image {
	display: block;
}
.news__date {
	margin-top: 15px;
	font-size: 24px;
	color: rgba(0,0,0,0.5);
}
.news__info {
	margin-top: 15px;
}
.news__more {
	margin-top: 5px;
}
.news__more a:hover {
	text-decoration: underline;
}
@media screen and (max-width: 991.98px) {
	.news__image {
		width: 240px;
		height: auto;
	}
	.news__date {
		font-size: 19px;
	}
}
@media screen and (max-width: 767.98px) {
	.news__image {
		width: auto;
		height: auto;
		max-width: 100%;
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 575.98px) {
	.news__title {
		padding-bottom: 12px;
		border-bottom-width: 2px;
	}
	.news__item {
		margin-top: 36px;
	}
	.news__image {
		margin-bottom: 18px;
	}
	.news__date {
		margin-top: 9px;
		font-size: 16px;
	}
	.news__info {
		margin-top: 9px;
	}
}


/**/
/* post */
/**/
.post p {
	margin-top: 20px;
}
.post h3 {
	margin-top: 60px;
}
.post__date {
	margin-top: 20px;
	font-size: 24px;
	color: rgba(0,0,0,0.5);
}
@media screen and (max-width: 991.98px) {
	.post__date {
		font-size: 19px;
	}
}
@media screen and (max-width: 575.98px) {
	.post p {
		margin-top: 12px;
	}
	.post h3 {
		margin-top: 36px;
	}
	.post__date {
		margin-top: 12px;
		font-size: 16px;
	}
}


/**/
/* pager */
/**/
.pager {
	margin-top: 60px;
	padding-top: 60px;
	border-top: 3px solid #000;
	text-align: center;
}
.pager__item {
	padding: 0 0.375em;
	transition-duration: 0.25s;
	transition-property: color;
}
.pager__item:hover {
	color: #000;
}
.pager__item_active {
	font-weight: 700;
	color: #000;
}
.pager__dots {
    color: #76bc21;
}
@media screen and (max-width: 575.98px) {
	.pager {
		margin-top: 36px;
		padding-top: 36px;
		border-top-width: 2px;
	}
}


/**/
/* contacts */
/**/
.contacts p {
	margin-top: 30px;
}
.contacts p + .row {
	margin-top: -20px;
}
.contacts__caption {
	text-transform: uppercase;
	color: #76bc21;
}
.gform_wrapper .gform_footer {
	padding: 0!important;
	position: relative;
}
.gform_wrapper .contacts__form {
	margin-top: 30px;
	margin-left: 30px;
	text-align: center;
}
.gform_wrapper .contacts__form .validation_error {
	display: none;
}
.gform_wrapper .contacts__form li.gfield.gfield_error {
	background-color: inherit;
	margin-bottom: 0!important;
	border-top: none;
	border-bottom: none;
	padding-bottom: 0;
	padding-top: 0;
}
.gform_wrapper .gfield_description.validation_message {
	padding: 5px 0 0 0!important;
	color: #ff3434;
}
.gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
	border: 1px solid rgba(0,0,0,0.25)!important;
}
.gform_wrapper .gform_ajax_spinner {
	position: absolute;
	top: 15px;
	padding: 0!important;
	/*left: calc(-1 * (152.19px/2 + 12px));*/
	right: calc(50% - 12px);
}
.gform_confirmation_message {
	font-size: 20px;
	margin-top: 40px;
}
.contacts__input input,
.contacts__select select,
.contacts__textarea textarea {
	display: block;
	width: 100%!important;
	/*margin: 0 0 15px;*/
	padding: 9px 15px!important;
	border: 1px solid rgba(0,0,0,0.25);
	border-radius: 0;
	background: rgba(0,0,0,0.025);
	font-size: 20px!important;
	line-height: 1.5!important;
	font-weight: 500;
	color: #000;
	resize: none;
	appearance: none;
	transition-duration: 0.25s;
	-webkit-appearance: none;
}

select::-ms-expand {
	display: none;
}

.contacts__textarea textarea {
	height: 110px!important;
}

.contacts__select select{
	padding-right: 45px;
	background-image: url('../img/dropdown-arrow.svg');
	background-position: right 15px center;
	background-size: auto 24px;
	background-repeat: no-repeat;
}
.contacts__input input:focus,
.contacts__select select:focus,
.contacts__textarea textarea:focus {
	border-color: #76bc21;
	outline: none;
	background-color: transparent;
}
.contacts__input input::placeholder,
.contacts__select select::placeholder,
.contacts__textarea textarea::placeholder {
	color: rgba(0,0,0,0.375);
	transition-duration: 0.25s;
	transition-property: color;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: rgba(0,0,0,0.375)!important;
	transition-duration: 0.25s!important;
	transition-property: color!important;
}

.contacts__input input:-ms-input-placeholder {

}
.contacts__input input:focus::placeholder,
.contacts__select select:focus::placeholder,
.contacts__textarea textarea:focus::placeholder {
	color: rgba(0,0,0,0);
}
.gform_wrapper .contacts__form .gform_button {
	display: inline-block!important;
	vertical-align: top;
	padding: 0 2em!important;
	border: none;
	background: #76bc21;
	text-transform: uppercase;
	font-size: 20px!important;
	line-height: 3!important;
	max-width: 152.19px;
	font-weight: 700;
	color: #fff;
	transition-duration: 0.25s;
	transition-property: background-color;
	margin: 0!important;
}
.gform_wrapper .contacts__form .gform_button:hover {
	background-color: #87d627;
}
@media screen and (max-width: 991.98px) {
	.gform_wrapper .contacts__form {
		margin-top: 60px;
		margin-left: 0;
	}
}
@media screen and (max-width: 575.98px) {
	.contacts p {
		margin-top: 18px;
	}
	.contacts p + .row {
		margin-top: -12px;
	}
	.gform_wrapper .contacts__form {
		margin-top: 36px;
	}
	.contacts__input,
	.contacts__select,
	.contacts__textarea,
	.contacts__button {
		font-size: 18px;
	}
}



/*----------------------------------------------*/
/*                    FOOTER                    */
/*----------------------------------------------*/

/**/
/*subscribe-gform*/
/**/
.gform_wrapper .subscribe-gform label.gfield_label {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 500;
	color: #fff;
	margin-bottom: 5px;
}

.gform_wrapper .subscribe-gform .gfield_required {
	display: none;
}

body .gform_wrapper .subscribe-gform .top_label div.ginput_container {
	margin-top: 0;
}

.gform_wrapper .subscribe-gform input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
	width: 100%;
	padding: 20px 97px 20px 25px;
	border: 1px solid #fff;
	background: #363636;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	transition-duration: 0.25s;
	transition-property: border-color;
	height: 72px;
	border-radius: 0;
}

@media screen and (max-width: 575.98px) {
	.gform_wrapper .subscribe-gform input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
		padding: 12px 71px 12px 20px;
		height: 56px;
	}
}

.gform_wrapper .subscribe-gform input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):focus {
	border-color: #76bc21;
}

.gform_wrapper .subscribe-gform input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"])::placeholder {
	color: rgba(255,255,255,0.5);
	transition-duration: 0.25s;
	transition-property: color;
}

.subscribe-gform {
	position: relative;
}

.gform_wrapper .subscribe-gform .gform_footer {
	position: absolute;
	width: 70px;
	height: 70px;
	margin: 0;
	bottom: 1px;
	right: 1px;
	background-color: #fff;
	transition-duration: 0.25s;
	transition-property: background-color;
}

.gform_wrapper .subscribe-gform .gform_footer input.button {
	font-size: 0;
	margin: 0;
	padding: 0;
	border: none;
	width: 100%;
	height: 100%;
	border-radius: 0;
}

.gform_wrapper .subscribe-gform .gform_footer:hover input.button {
	background-color: #76bc21;
	color: #fff;
}

.gform_wrapper .subscribe-gform .gform_footer::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -18px 0 0 -8px;
	border-top: 18px solid transparent;
	border-bottom: 18px solid transparent;
	border-left: 18px solid #76bc21;
	transition-duration: 0.25s;
	transition-property: border-color;
	pointer-events: none;
}

.gform_wrapper .subscribe-gform .gform_footer:hover::after {
	border-left-color: #fff;
}

body .gform_wrapper .subscribe-gform ul li.gfield {
	margin-top: 0;
}

.gform_wrapper.subscribe-gform_wrapper {
	margin: 0;
}

@media screen and (max-width: 575.98px) {
	.gform_wrapper .subscribe-gform .gform_footer {
		width: 54px;
		height: 54px;
	}

	.gform_wrapper .subscribe-gform .gform_footer::after {
		margin: -12px 0 0 -6px;
		border-top-width: 12px;
		border-bottom-width: 12px;
		border-left-width: 12px;
	}
}

@media (min-width: 641px) {
	.gform_wrapper .subscribe-gform ul.gform_fields li.gfield {
		padding-right: 0;
	}
}

.gform_wrapper .subscribe-gform .gform_ajax_spinner {
	position: absolute !important;
	top: auto;
	bottom: -26px;
	padding: 0!important;
	right: 1px;
	/*transform: translateY(-50%);*/
	z-index: 100;
	pointer-events: none;
}

/*validation*/
.gform_wrapper .subscribe-gform .validation_error {
	display: none;
}

.gform_wrapper .subscribe-gform li.gfield.gfield_error.gfield_contains_required label.gfield_label {
	margin-top: 0;
}

.gform_wrapper .subscribe-gform li.gfield.gfield_error.gfield_contains_required div.ginput_container {
	margin-top: 0;
}

.gform_wrapper .subscribe-gform li.gfield.gfield_error, .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
	background-color: rgba(255,223,224,0);
	margin-bottom: 0 !important;
	border: none;
	padding-bottom: 0;
	padding-top: 0;
}

.gform_wrapper .subscribe-gform .gfield_description.validation_message {
	position: absolute;
	bottom: -23px;
	left: 0;
}

.gform_wrapper .subscribe-gform li.gfield_error input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
	border: 1px solid #fff !important;
}

.gform_wrapper.gf_browser_chrome .subscribe-gform .gfield_error input[type=email],
.gform_wrapper.gf_browser_chrome .subscribe-gform .gfield_error input[type=number],
.gform_wrapper.gf_browser_chrome .subscribe-gform .gfield_error input[type=password],
.gform_wrapper.gf_browser_chrome .subscribe-gform .gfield_error input[type=tel],
.gform_wrapper.gf_browser_chrome .subscribe-gform .gfield_error input[type=text],
.gform_wrapper.gf_browser_chrome .subscribe-gform .gfield_error input[type=url],
.gform_wrapper.gf_browser_chrome .subscribe-gform .gfield_error select,
.gform_wrapper.gf_browser_chrome .subscribe-gform .gfield_error textarea,
.gform_wrapper.gf_browser_chrome .subscribe-gform li.gfield_error.field_sublabel_above .ginput_complex input[type=text] {
	margin-bottom: 0;
}
.gform_wrapper .subscribe-gform .top_label .gfield_error {
	max-width: 100% !important;
	width: 100%;
}

@media (min-width: 641px) {
	.gform_wrapper.gform_validation_error .subscribe-gform .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
		max-width: 100% !important;
		width: 100%;
	}
}

/**/
/* foot nav */
/**/
.foot-nav {
	width: 260px;
}
.foot-nav__item {
	margin-top: 15px;
	font-size: 18px;
	text-transform: uppercase;
}
.foot-nav__item a {
	color: inherit;
	transition-duration: 0.25s;
	transition-property: color;
}
.foot-nav__item a:hover {
	color: #76bc21;
}
.foot-nav__item:first-child {
	margin-top: 0;
}
@media screen and (max-width: 1199.98px) {
	.foot-nav {
		width: 220px;
	}
}


/**/
/* subscribe */
/**/
.subscribe {
	position: relative;
}
.subscribe__title {
	margin-bottom: 5px;
	font-size: 18px;
	text-transform: uppercase;
}
.subscribe__input, .search-field {
	width: 100%;
	padding: 20px 97px 20px 25px;
	border: 1px solid #fff;
	background: #363636;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	transition-duration: 0.25s;
	transition-property: border-color;
	height: 72px;
}
.subscribe__input:focus {
	border-color: #76bc21;
}
.subscribe__input::placeholder, .search-field::placeholder {
	color: rgba(255,255,255,0.5);
	transition-duration: 0.25s;
	transition-property: color;
}
.subscribe__input:focus::placeholder, .search-field:focus::placeholder {
	color: rgba(255,255,255,0);
}
.subscribe__submit {
	position: absolute;
	top: 33px;
	right: 1px;
	width: 70px;
	height: 70px;
	margin: 0;
	padding: 0;
	border: none;
	background: #fff;
	transition-duration: 0.25s;
	transition-property: background-color;
}
.subscribe__submit::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -18px 0 0 -8px;
	border-top: 18px solid transparent;
	border-bottom: 18px solid transparent;
	border-left: 18px solid #76bc21;
	transition-duration: 0.25s;
	transition-property: border-color;
}
.subscribe__submit:hover, .search-submit:hover {
	background-color: #76bc21;
    color: #fff;
}
.subscribe__submit:hover::after, .search-submit:hover::after {
	border-left-color: #fff;
}
.subscribe__message {
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 10px;
	font-size: 18px;
}
.subscribe__message_valid {
	color: #76bc21;
}
.subscribe__message_invalid {
	color: #bc2121;
}
@media screen and (max-width: 767.98px) {
	.subscribe {
		text-align: left;
	}
}
@media screen and (max-width: 575.98px) {
	.subscribe__input {
		padding: 12px 71px 12px 20px;
		height: 56px;
	}
	.subscribe__submit {
		width: 54px;
		height: 54px;
	}
	.subscribe__submit::after {
		margin: -12px 0 0 -6px;
		border-top-width: 12px;
		border-bottom-width: 12px;
		border-left-width: 12px;
	}
}


/**/
/* address */
/**/
.address {
	font-size: 16px;
	text-transform: uppercase;
}
.address img {
	display: block;
	margin-bottom: 25px;
}
.address div {
	display: block;
	margin-top: 15px;
}
.address a {
	color: inherit;
	transition-duration: 0.25s;
	transition-property: color;
}
.address a:hover {
	color: #76bc21;
}


/**/
/* copyrights */
/**/
.copyrights {
	margin-top: 40px;
	font-size: 15px;
}


/**/
/* search */
/**/
.search-form {
    position: relative;
}
.search-item {
    margin-top: 30px;
}
.search-item .entry-meta {
    margin: 15px 0 5px;
}
.search-submit {
    position: relative;
    top: -2px;
    right: 5px;
    width: 70px;
    height: 70px;
    margin: 0;
    padding: 0;
    color: #fff ;
    background: #76bc21;
    border: 1px solid #76bc21;
    transition-duration: 0.25s;
    transition-property: background-color;
}
.search-submit:hover {
	color: #76bc21;
	background: #fff;
}

.search-field {
    padding: 20px 25px;
}

.screen-reader-text {
    display: block;
    margin: 5px 0 10px;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

@media screen and (max-width: 575.98px) {
    .search-submit {
        width: 54px;
        height: 54px;
    }
    .search-field {
        padding: 12px;
		height: 56px;
    }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.contacts__select select{
		padding-right: 45px;
		background-image: url('../img/dropdown-arrow.svg');
		background-position: right -45% center;
		background-size: auto 24px;
		background-repeat: no-repeat;
	}
	.data-table_blue.data-table_clickable td,
	.data-table_blue.data-table_rowclickable td {
		transition-duration: 0s;
	}
}

@media all and (-ms-high-contrast: none) and (min-width: 575.99px), (-ms-high-contrast: active) and (min-width: 575.99px) {
	.subscribe__submit {
		top: 34px;
		height: 69px;
	}
	.search-submit {
		top: -1px;
	}
}

.grecaptcha-badge {
    visibility: hidden;
}