* {
	margin: 0;
}

html,
body {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
}

body {
	/*background: url("./img/bg_nothidden.png") no-repeat center center fixed;
	/*-webkit-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	-o-background-size: 100% 100%;
	background-size: 100% 100%;*/
}

a:link {
	color: #000000;
	text-decoration: underline;
}

a:visited {
	color: #000000;
	text-decoration: underline;
}

a:hover {
	color: #000000;
	text-decoration: underline;
}

a:active {
	color: #000000;
	text-decoration: underline;
}

@font-face {
	font-family: "Poppins_Regular";
	src: url("../fonts/Poppins-Regular.ttf");
}

@font-face {
	font-family: "OpenSans";
	src: url("../fonts/OpenSans-Regular.ttf");
}

@font-face {
	font-family: "Poppins_Bold";
	src: url("../fonts/Poppins-Bold.ttf");
}

@font-face {
	font-family: "Poppins_SemiBold";
	src: url("../fonts/Poppins-SemiBold.ttf");
}

.wrapper {
	position: relative;
	/*min-height: calc(100% - 103px);*/
	min-width: 100%;
	margin-left: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-top: 103px;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
	padding-right: 0px !important;
	padding-left: 0px !important;
}

.vcenter {
	display: flex;
	justify-content: center;
}

/* header */

.header {
	background-color: #ffffff;
	color: #000000;
	font-family: "Poppins_Bold";
	position: fixed;
	width: 100%;
	z-index: 10000;
	top: 0;
	border-bottom: #000000 solid 1px;
	text-align: center
}

.header ul {
	margin: auto;
	margin-left: auto;
	margin-right: auto;
	font-family: "Poppins_Bold";
	padding: 0;
	list-style: none;
	overflow: hidden;
	background-color: #ffffff;
}

.header li a {
	display: block;
	font-family: "Poppins_Bold";
	padding: 10px 5px;
	text-decoration: none;
	color: #000000;
	font-size: 16px;
}

.header .logo {
	display: block;
	float: left;
	font-size: 16px;
	padding: 0px 30px;
	padding-top: 15px;
	text-decoration: none;
}

.header .logo img {
	height: 80px;
	width: auto;
}

/* menu */

.header .menu {
	position: fixed;
	max-height: 0;
	width: 100%;
	top: 100px;
	left: 0;
	clear: both;
	transition: max-height 0.3s ease-out;
	display: inline-block;
}

.menu li {
	margin-left: 30px;
}

.header .menubig {
	display: none;
	margin-left: auto;
	margin-right: auto;
	width: 790px;
}

/* menu icon */

.header .menu-icon {
	cursor: pointer;
	display: inline-block;
	padding: 45px 20px;
	position: relative;
	user-select: none;
}

.header .menu-icon .navicon {
	background: #000;
	display: block;
	height: 3px;
	position: relative;
	transition: background 0.3s ease-out;
	width: 32px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
	background: #000;
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	transition: all 0.3s ease-out;
	width: 100%;
}

.header .menu-icon .navicon:before {
	top: 10px;
}

.header .menu-icon .navicon:after {
	top: -10px;
}

/* menu btn */

.header .menu-btn {
	display: none;
}

.header .menu-btn:checked~.menu {
	max-height: 340px;
}

.header .menu-btn:checked~.menu-icon .navicon {
	background: transparent;
}

.header .menu-btn:checked~.menu-icon .navicon:before {
	transform: rotate(-45deg);
}

.header .menu-btn:checked~.menu-icon .navicon:after {
	transform: rotate(45deg);
}

.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
	top: 0;
}

@media (min-width: 74em) {
	.header li {
		float: left;
		border-top: none;
	}
	.header li a {
		padding: 40px 25px;
		font-size: 16px;
	}
	.header .menu {
		clear: none;
		max-height: none;
		display: none;
	}
	.header .menubig {
		display: inline-block;
		position: relative;
	}
	.header .menu-icon {
		display: none;
	}
	.content {
		width: 80% !important;
		text-align: center;
		margin: auto;
		padding-left: 140px !important;
		padding-top: 30px;
		padding-right: 140px !important;
	}
	.content__inner {
		width: 50% !important;
		text-align: center;
		margin: auto;
	}
	.headerbottom {
		width: 60% !important;
		margin-left: 20% !important;
	}
}

.content {
	width: 100%;
	text-align: center;
	margin: auto;
	padding-left: 20px;
	padding-top: 30px;
	padding-right: 20px;
}

.content__inner {
	width: 90%;
	text-align: center;
	margin: auto;
}

.footer {
	width: 100%;
	height: 60px;
	position: static;
	margin-top: 30px;
	background-color: #fff;
	color: #000;
	border-top: #000000 solid 1px;
	float: right;
	bottom: 0;
}

.footerList {
	list-style: none;
	position: absolute;
	right: 80px;
	margin: 0;
}

.footerList__item {
	display: inline-block;
	margin: 10px 30px;
	font-family: "Poppins_SemiBold";
}

.footerList__item a {
	text-decoration: none;
}

.footerList__item:nth-child(n+4) {
	margin: 0;
	margin-right: 15px;
}

.footer__logo {}

.footer__pic {
	height: 30px;
}

.ma {
	/*margin-top: calc(100% - 1140px);*/
	position:fixed
}

.ma2 {
	/*margin-top: calc(100% - 1220px);*/
	position:fixed
}

.ma3 {
	/*margin-top: calc(100% - 1150px);*/
	position:fixed
}

.bold {
	font-family: "Poppins_Bold";
	color: #000000;
}

.regular {
	font-family: "Poppins_Regular";
	color: #000000;
}

.semibold {
	font-family: "Poppins_SemiBold";
	color: #000000;
}

.uppercase {
	text-transform: uppercase;
}

.headerbottom {
	width: 90%;
	margin-left: 5%;
}

.button {
	border-radius: 10px;
	border: none;
	text-decoration: none !important;
	padding: 9px 50px;
	width: auto;
	margin-top: 20px;
	font-family: "Poppins_Bold";
	text-transform: uppercase;
	color: #ffffff !important;
}

.button1 {
	background-color: #B7C98C;
}

.button2 {
	background-color: #7C8A5C;
}

.input {
	border: none;
	border-bottom: 1px solid gray;
	min-width: 100px;
}

.input:active {
	border: none;
	border-bottom: 1px solid gray;
}

.input:focus {
	border: none;
	border-bottom: 1px solid gray;
}

.input:hover {
	border: none;
	border-bottom: 1px solid gray;
}

.dblock {
	display: block;
}
.checkbox_text
{
	text-align: justify
}
.grecaptcha-badge
{
	z-index: 5;
	bottom: 150px
}
input[type='checkbox']
{
	-webkit-appearance: none;
	background-color: #fafafa;
	border: 1px solid black;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
	padding: 9px;
	border-radius: 3px;
	display: inline-block;
	position: relative;
}
input[type='checkbox']:active, .input[type='checkbox']:checked:active {
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}

input[type='checkbox']:checked {
	background-color: #e9ecee;
	border: 1px solid black;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
	color: #99a1a7;
}
input[type='checkbox']:checked:after {
	content: '\2714';
	font-size: 14px;
	position: absolute;
	top: 0px;
	left: 3px;
	color: black;
}
@media (max-width: 767px) {
	.centersm {
		text-align: center;
	}
	.margintopsm
	{
		margin-top: 15px
	}
	.marginbotsm
	{
		margin-bottom: 15px
	}
	.checkbox_text
	{
		text-align: center;
		margin-left: 15px;
		margin-right: 15px
	}
	.menu li
	{
		margin-left: 0
	}
	.header
	{
		position: relative;
		top: 0;
		text-align: left
	}
	.menu
	{
		position: relative;
		text-align: center
	}
	.wrapper
	{
		margin-top: 0;
		padding-bottom: 50px
	}
	.header .menu-icon
	{
		padding: 0px 20px;
	}
	.header .menu
	{
		position: relative;
		top:0
	}
	.footer
	{
		bottom: 0;
		position: relative;
	}
	.footerList__item
	{
		display: block;
		padding: 5px 0px
	}
	.footerList
	{
		text-align: center;
		width:100%;
		padding-left: 0;
		right: 0;
	}
	.footerList__item:nth-child(n+4)
	{
		display: inline-block
	}
	.ma, .ma2, .ma3
	{
		position: static;
	}
}

@media (max-width: 540px) {
	#content {
		padding-left: 40px;
		padding-right: 40px;
	}
}

@media (max-width: 320px) {
	.fblogohidden {
		display: none;
	}
}
@media (min-width: 767px) 
{
	.checkboxbigger
	{
		position: relative;
		right: 30px;
	}
	.margin-bot
	{
		margin-bottom: 10px
	}
	.selected_menu
	{
		background-image: url('/img/jardinette_button_bg.png');
		background-size: 100% 80%;
		background-repeat: no-repeat;
		background-position-y: 50%;
	}
}
.marginbotsm input
{
	width: 75%
}
.px10
{
	font-size: 13px
}
.g-recaptcha
{
	z-index: 5;
}
#belepesiLink4, #belepesiLink3
{
	display: none
}