/**********************************************************************/
/**********************************************************************/
.btn {
	display: flex;
	flex-direction: column;
	width: 180px;
	height: 60px;
	max-width: 100%;
	padding: 0 10px;
	border-radius: 30px;
	box-shadow: 0px 0px 8px rgba(111, 115, 22, 0.5);
	text-decoration: none;
	transition: background-color 0.3s;
}
.btn span {
	margin: auto;
	font-weight: bold;
	font-size: 15px;
	line-height: 18px;
	color: #FFFFFF;
	text-transform: uppercase;
	text-align: center;
}
.btn-light { background-color: #C2C900; }
.btn-light:hover { background-color: #DBE300; }
.btn-dark { background-color: #636700; }
.btn-dark:hover { background-color: #8A8F00; }
.btn-purple { background-color: #CD00A0; }
.btn-purple:hover { background-color: #F600C0; }


/**********************************************************************/
/*********************         RESPONSIVE         *********************/
/**********************************************************************/
@media screen and (max-width: 767px) {
	.btn {
		width: 130px;
		height: 40px;
		border-radius: 20px;
	}
	.btn span {
		font-size: 13px;
		line-height: 16px;
	}
}



/**********************************************************************/
/**********************************************************************/
.topbanner {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 580px;
	margin-top: -125px;
	margin-bottom: 120px;
}
.topbanner:before {
	content: "";
	position: absolute;
	left: 50%;
	height: 100%;
	width: 100vw;
	transform: translateX(-50%);
	background-image: url(../img/banner.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -1;
}
.topbanner__content {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 75px;
	margin: auto 0 0;
}
.topbanner__content:before {
	content: "";
	position: absolute;
	left: 50%;
	height: 100%;
	width: 100vw;
	transform: translateX(-50%);
	background-color: #C2C900;
	z-index: -1;
}
.topbanner__txt {
	width: 50%;
	margin: auto auto auto 0;
	font-weight: bold;
	font-size: 36px;
	line-height: 40px;
	letter-spacing: 2px;
	color: #FFFFFF;
	text-align: center;
}
.topbanner__product {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 52%;
	max-height: initial;
	transform: translateY(46.4%);
}


/**********************************************************************/
/*********************         RESPONSIVE         *********************/
/**********************************************************************/
@media screen and (max-width: 1024px) {
	.topbanner {
		height: 450px;
		margin-top: 0;
		margin-bottom: 80px;
	}
	.topbanner__txt {
		font-size: 28px;
		line-height: 35px;
		letter-spacing: 1px;
	}
}

@media screen and (max-width: 767px) {
	.topbanner {
		height: 400px;
		margin-bottom: 160px;
	}
	.topbanner__content {
		height: 120px;
		margin-bottom: -120px;
	}
	.topbanner__txt {
		width: 100%;
		margin-bottom: 20px;
		font-size: 24px;
		line-height: 32px;
		text-align: left;
	}
	.topbanner__product {
		width: 450px;
		max-width: initial;
		bottom: 100px;
		right: -40px;
	}
}



/**********************************************************************/
/**********************************************************************/
.wysiwyg {
	font-size: 18px;
	line-height: 24px;
	color: #000000;
}
.wysiwyg .aligncenter {
    float: none;
}
.wysiwyg .alignright {
    float: right;
}
.wysiwyg .alignleft {
    float: left;
}
.wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5, .wysiwyg h6 {
	margin-bottom: 30px;
	font-weight: bold;
	font-size: 40px;
	line-height: 120%;
	color: #636700;
}
.wysiwyg p {
	margin-bottom: 20px;
}
.wysiwyg ul {
	margin-bottom: 30px;
	padding: 0;
	list-style: none;
}
.wysiwyg li {
	position: relative;
	margin-bottom: 15px;
	padding-left: 25px;
}
.wysiwyg li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	display: block;
	width: 12px;
	height: 12px;
	background-image: url(../img/li.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}


/**********************************************************************/
/*********************         RESPONSIVE         *********************/
/**********************************************************************/
@media screen and (max-width: 767px) {
	.wysiwyg {
		font-size: 16px;
		line-height: 20px;
	}
	.wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5, .wysiwyg h6 {
		margin-bottom: 20px;
		font-size: 30px;
	}
	.wysiwyg p {
		margin-bottom: 10px;
	}
	.wysiwyg ul {
		margin-bottom: 20px;
	}
	.wysiwyg li {
		position: relative;
		margin-bottom: 10px;
		padding-left: 20px;
	}
	.wysiwyg li:before {
		top: 6px;
		width: 10px;
		height: 10px;
	}
}



/**********************************************************************/
/**********************************************************************/
.video {
	width: 820px;
	max-width: 100%;
	margin: 0 auto 120px;
	border: 8px solid #C2C900;
}
.video__container {
	position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
	overflow: hidden;
}
.video__poster {
    position: absolute;
    top: 0;
    left: 0;
	display: flex;
	flex-direction: column;
    width: 100%;
    height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 100;
	cursor: pointer;
	transition: opacity 0.3s;
}
.video__poster.hide {
    opacity: 0;
	pointer-events: none;
}
.video__poster:before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}
.video__poster img {
	position: relative;
	width: 60px;
	height: 60px;
	margin: auto;
	transition: transform 0.3s;
	z-index: 10;
}
.video__poster:hover img {
	transform: scale(1.2);
}
.video__container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/**********************************************************************/
/*********************         RESPONSIVE         *********************/
/**********************************************************************/
@media screen and (max-width: 767px) {
	.video {
		margin: 0 auto 60px;
		border: 4px solid #C2C900;
	}
	.video__poster img {
		width: 45px;
		height: 45px;
	}
}