[class *= 'btn-'] {
	position: relative;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	
	-ms-flex-line-pack: center;
	align-content: center;
	
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
		
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	background: transparent;
	cursor: pointer;
}

[class *= 'btn-'] > span {
	position: relative;
	color: currentColor;
}

[class *= 'btn-'] > .ico {
	position: relative;
	fill: currentColor;
}

[class *= 'btn-'] > .ico:first-child {
	margin-right: 20px;
}

[class *= 'btn-'] > .ico:last-child {
	margin-left: 20px;
}

[class *= 'btn-'] > .ico:only-child {
	margin-left: 0px;
	margin-right: 0px;
}

/* ************************************************************************** */

.btn-mobile-menu {
	display: none;
	
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	
	position: fixed;
	opacity: 1;
	z-index: 14;
	top: 22px;
	right: 9px;
	width: 50px;
	height: 50px;
	padding: 0;
	padding-top: 17px;
	text-align: center;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: transparent;
	-webkit-transition: top 0.3s ease 0s;
	-ms-transition: top 0.3s ease 0s;
	transition: top 0.3s ease 0s;
}

.body-scrolled .btn-mobile-menu,
.body-mobile-menu-open .btn-mobile-menu {
	top: 11px;
}

.btn-mobile-menu::before,
.btn-mobile-menu::after {
	display: block;
	position: relative;
	top: 0;
	content: '';
	width: 26px;
	height: 2px;
	background: #2F2F2F;
	margin: 0 auto;
	margin-bottom: 5px;
	-webkit-transition: opacity 0.3s ease 0s, background-color 0.3s ease 0s, top 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
	-moz-transition: opacity 0.3s ease 0s, background-color 0.3s ease 0s, top 0.3s ease 0s, -moz-transform 0.3s ease 0s;
	-ms-transition: opacity 0.3s ease 0s, background-color 0.3s ease 0s, top 0.3s ease 0s, -ms-transform 0.3s ease 0s;
	-o-transition: opacity 0.3s ease 0s, background-color 0.3s ease 0s, top 0.3s ease 0s, -o-transform 0.3s ease 0s;
	transition: opacity 0.3s ease 0s, background-color 0.3s ease 0s, top 0.3s ease 0s, transform 0.3s ease 0s;
}
.btn-mobile-menu span {
	display: block;
	position: relative;
	width: 26px;
	height: 2px;
	margin: 0 auto;
	margin-bottom: 5px;
}
.btn-mobile-menu span::before,
.btn-mobile-menu span::after {
	display: block;
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	height: 2px;
	background: #2F2F2F;
	-webkit-transition: opacity 0.3s ease 0s, background-color 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
	-moz-transition: opacity 0.3s ease 0s, background-color 0.3s ease 0s, -moz-transform 0.3s ease 0s;
	-ms-transition: opacity 0.3s ease 0s, background-color 0.3s ease 0s, -ms-transform 0.3s ease 0s;
	-o-transition: opacity 0.3s ease 0s, background-color 0.3s ease 0s, -o-transform 0.3s ease 0s;
	transition: opacity 0.3s ease 0s, background-color 0.3s ease 0s, transform 0.3s ease 0s;
}
.btn-mobile-menu:active {
	background-color: #238937;
}
.btn-mobile-menu:active::before,
.btn-mobile-menu:active::after,
.btn-mobile-menu:active span::before,
.btn-mobile-menu:active span::after {
	background-color: #ffffff;
}

.body-mobile-menu-open .btn-mobile-menu::before,
.body-mobile-menu-open .btn-mobile-menu::after  {
	opacity: 0;
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-ms-transform: scaleX(0);
	-o-transform: scaleX(0);
	transform: scaleX(0);
}
.body-mobile-menu-open .btn-mobile-menu::before {
	top: -20px;
}
.body-mobile-menu-open .btn-mobile-menu::after {
	top: 20px;
}
.body-mobile-menu-open .btn-mobile-menu span::before {
	-webkit-transform: rotate(45deg) scaleX(1.2);
	-moz-transform: rotate(45deg) scaleX(1.2);
	-ms-transform: rotate(45deg) scaleX(1.2);
	-o-transform: rotate(45deg) scaleX(1.2);
	transform: rotate(45deg) scaleX(1.2);
	background-color: #2F2F2F;

}
.body-mobile-menu-open .btn-mobile-menu span::after {
	-webkit-transform: rotate(-45deg) scaleX(1.2);
	-moz-transform: rotate(-45deg) scaleX(1.2);
	-ms-transform: rotate(-45deg) scaleX(1.2);
	-o-transform: rotate(-45deg) scaleX(1.2);
	transform: rotate(-45deg) scaleX(1.2);
	background-color: #2F2F2F;
}

.body-mobile-menu-open .btn-mobile-menu:active span::before,
.body-mobile-menu-open .btn-mobile-menu:active span::after {
	background-color: #ffffff;
}

@media (max-width: 991px) {
	.btn-mobile-menu {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
	}
}

@media (max-width: 767px) {
	.btn-mobile-menu {
		top: 11px;
	}
}

/* ************************************************************************** */

.btn-soc {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 40px;
	height: 40px;
	padding: 0;
	text-align: center;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: transparent;
	color: #ffffff;
	-webkit-transition: all 0.15s ease 0s;
	-ms-transition: all 0.15s ease 0s;
	transition: all 0.15s ease 0s;
}

.btn-soc.white {
	color: #238937;
}

.btn-soc .ico {
	width: 24px;
	height: 24px;
}

.body-desktop-device .btn-soc:hover {
	-webkit-box-shadow: 0px 25px 77px rgba(0, 0, 0, 0.19), 0px 12px 24px rgba(0, 0, 0, 0.24);
	box-shadow: 0px 25px 77px rgba(0, 0, 0, 0.19), 0px 12px 24px rgba(0, 0, 0, 0.24);
}
.body-desktop-device .btn-soc:active,
.body-mobile-device .btn-soc:active {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.btn-soc.facebook, .btn-soc.youtube {
	background-color: #238937;
}
.body-desktop-device .btn-soc.facebook:hover, 
.body-desktop-device .btn-soc.youtube:hover {
	background: #3ABB53;
}
.body-desktop-device .btn-soc.facebook:active,
.body-mobile-device .btn-soc.facebook:active,
.body-desktop-device .btn-soc.youtube:active,
.body-mobile-device .btn-soc.youtube:active {
	background: #0C621D;
}


.btn-soc.facebook.white, 
.btn-soc.youtube.white {
	background-color: #ffffff;
}
.body-desktop-device .btn-soc.facebook.white:hover,
.body-desktop-device .btn-soc.youtube.white:hover {
	background-color: rgba(255, 255, 255, 0.6);
}
.body-desktop-device .btn-soc.facebook.white:active,
.body-mobile-device .btn-soc.facebook.white:active,
.body-desktop-device .btn-soc.youtube.white:active,
.body-mobile-device .btn-soc.youtube.white:active {
	background-color: #ffffff;
}

/* ************************************************************************** */

.btn-h80-01 {
	height: 80px;
	padding: 0 35px;
	font: bold 26px/1em 'Phenomena';
	color: #ffffff;
	text-transform: uppercase;
	background-color: #2D9CDB;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0px 50px 77px rgba(0, 0, 0, 0.12), 0px 23px 40px rgba(0, 0, 0, 0.14);
	box-shadow: 0px 50px 77px rgba(0, 0, 0, 0.12), 0px 23px 40px rgba(0, 0, 0, 0.14);
	-webkit-transition: all 0.15s ease 0s;
	-ms-transition: all 0.15s ease 0s;
	transition: all 0.15s ease 0s;
}

.btn-h80-01 .ico {
	width: 34px;
	height: 34px;
}

.body-desktop-device .btn-h80-01:hover {
	background-color: #4CB6F2;
	-webkit-box-shadow: 0px 45px 77px rgba(0, 0, 0, 0.19), 0px 40px 45px rgba(0, 0, 0, 0.24);
	box-shadow: 0px 45px 77px rgba(0, 0, 0, 0.19), 0px 40px 45px rgba(0, 0, 0, 0.24);
}

.body-desktop-device .btn-h80-01:active,
.body-mobile-device .btn-h80-01:active {
	background-color: #1B7CB3;
	-webkit-box-shadow: none;
	box-shadow: none;
}

@media (max-width: 767px) {
	.btn-h80-01 {
		padding: 0 25px;
		height: 60px;
		font-size: 20px;
	}
	.btn-h80-01 > .ico:first-child {
		margin-right: 15px;
	}
}

/* ************************************************************************** */

.btn-h80-02 {
	height: 80px;
	padding: 0 35px;
	font: bold 26px/1em 'Phenomena';
	color: #ffffff;
	text-transform: uppercase;
	background-color: #238937;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0px 50px 77px rgba(0, 0, 0, 0.12), 0px 23px 40px rgba(0, 0, 0, 0.14);
	box-shadow: 0px 50px 77px rgba(0, 0, 0, 0.12), 0px 23px 40px rgba(0, 0, 0, 0.14);
	-webkit-transition: all 0.15s ease 0s;
	-ms-transition: all 0.15s ease 0s;
	transition: all 0.15s ease 0s;
}

.btn-h80-02 .ico {
	width: 34px;
	height: 34px;
}

.body-desktop-device .btn-h80-02:hover {
	background-color: #3ABB53;
	-webkit-box-shadow: 0px 45px 77px rgba(0, 0, 0, 0.19), 0px 40px 45px rgba(0, 0, 0, 0.24);
	box-shadow: 0px 45px 77px rgba(0, 0, 0, 0.19), 0px 40px 45px rgba(0, 0, 0, 0.24);
}

.body-desktop-device .btn-h80-02:active,
.body-mobile-device .btn-h80-02:active {
	background-color: #0C621D;
	-webkit-box-shadow: none;
	box-shadow: none;
}

@media (max-width: 767px) {
	.btn-h80-02 {
		padding: 0 25px;
		height: 60px;
		font-size: 20px;
	}
	.btn-h80-02 > .ico:first-child {
		margin-right: 15px;
	}
}

/* ************************************************************************** */

.btn-h28-01 {
	height: 28px;
	font: normal 20px/1em 'Roboto Condensed';
	color: #ffffff;
	-webkit-transition: all 0.15s ease 0s;
	-ms-transition: all 0.15s ease 0s;
	transition: all 0.15s ease 0s;
}

.btn-h28-01 span {
	position: relative;
	top: -1px;
}

.btn-h28-01 .ico {
	width: 24px;
	height: 24px;
}

.btn-h28-01 .ico:first-child {
	margin-right: 15px;
}

.body-desktop-device .btn-h28-01:hover {
	opacity: 0.6;
}

.body-desktop-device .btn-h28-01:active,
.body-mobile-device .btn-h28-01:active {
	opacity: 1;
}

@media (max-width: 767px) {
	.btn-h28-01 {
		font-size: 16px;
	}
}

/* ************************************************************************** */

.btn-h56-01 {
	height: 56px;
	background: #ffffff;
	padding: 0 24px 0 30px;
	font: bold 20px/1em 'Phenomena';
	color: #238937;
	text-transform: uppercase;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0px 25px 55px rgba(0, 0, 0, 0.08), 0px 16px 28px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 25px 55px rgba(0, 0, 0, 0.08), 0px 16px 28px rgba(0, 0, 0, 0.1);
	-webkit-transition: all 0.15s ease 0s;
	-ms-transition: all 0.15s ease 0s;
	transition: all 0.15s ease 0s;
}

.btn-h56-01 span:nth-child(1) {
	display: block;
}

.btn-h56-01 span:nth-child(1) + span {
	display: none;
}

.btn-h56-01.show span:nth-child(1) {
	display: none;
}

.btn-h56-01.show span:nth-child(1) + span {
	display: block;
}

.btn-h56-01 .ico {
	width: 24px;
	height: 24px;
}

.btn-h56-01.show > .ico:last-child {
	-webkit-transform: rotateX(-180deg);
	-ms-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
}

.body-desktop-device .btn-h56-01:hover {
	color: #ffffff;
	background: #238937;
	-webkit-box-shadow: 0px 45px 77px rgba(0, 0, 0, 0.19), 0px 40px 45px rgba(0, 0, 0, 0.24);
	box-shadow: 0px 45px 77px rgba(0, 0, 0, 0.19), 0px 40px 45px rgba(0, 0, 0, 0.24);
}

.body-desktop-device .btn-h56-01:active,
.body-mobile-device .btn-h56-01:active {
	color: #ffffff;
	background: #0C621D;
	-webkit-box-shadow: none;
	box-shadow: none;
}

@media (max-width: 767px) {
	.btn-h56-01 {
		padding: 0 14px 0 16px;
		height: 35px;
		font-size: 16px;
	}
	.btn-h56-01 > .ico:last-child {
		margin-left: 12px;
	}
}


