:root {
	--bexco-eins: #69be28; /*#e7aa19;*/
	--bexco-zwei: #305fbb; /*#e05c0d;*/

	--bexco-lite: #b7cfdf;
	--bexco-dark: #181b2b;
	--bexco-grey: #303444;

/*	--bexco-bold: "Urbanist", sans-serif;;*/
	--bexco-bold: "Bebas Neue", sans-serif;
}

body {
	background-color: var(--bexco-dark);
	color: white;
  	font-family: "Montserrat", sans-serif;
  	font-size: 18px;
  	letter-spacing: 0.1em;
  	line-height: 1.5;
	margin: 0;
	overflow-x: hidden;
	overflow-y:scroll; }

* { box-sizing: border-box; }

a, a:hover, a:focus {
	display: inline-block;
	color: var(--bexco-lite);
	text-decoration: none; }

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto; }


.cta {
	position: relative;
	width: 100%;
	background-color: var(--bexco-eins);
	padding: 10px;
	overflow: hidden;
	cursor: pointer;
	clip-path: polygon(0% 0%, calc(100% - 30px) 0%, 100% 50%, calc(100% - 30px) 100%, 0% 100%); }

	.cta .icon {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 0; left: 0;
		width: 60px;
		height: 100%;
		background-color: var(--bexco-zwei);
		color: white;
		transition: 0.5s; }
		.cta .icon i {
			position: relative;
			z-index: 1; }
		.cta .icon:before {
			content: "";
			position: absolute;
			top: -8px; right: -30px;
			width: 60px;
			height: 60px;
			background-color: var(--bexco-zwei);
			transform: rotate(45deg);
			z-index: 0; }

		.cta:hover .icon {
			width: 120px;
			transition: 0.3s; }

	.cta .text {
		color: white;
		text-transform: uppercase;
		font-size: 0.8vw;
		font-weight: 700;
		letter-spacing: 0;
		padding-left: 25%;
		transition: 0.5s; }

		.cta:hover .text {
			padding-left: 30%;
			transition: 0.3s; }

input {
	border: none;
	font-family: "Montserrat", sans-serif;
	font-size: 0.8vw;
	font-weight: 300;
	letter-spacing: 0;
	padding: 12px 30px; }

	input[type="submit"] {
		background-color: var(--bexco-eins);
		color: white;
		text-transform: uppercase;
		font-weight: 700;
		padding: 10px 60px 10px 30px;
		clip-path: polygon(0% 0%, calc(100% - 30px) 0%, 100% 50%, calc(100% - 30px) 100%, 0% 100%);
		cursor: pointer;
		transition: 0.5s; }

		input[type="submit"]:hover {
			background-color: var(--bexco-grey);
			color: var(--bexco-eins);
			transition: 0.3s; }



@media (max-width: 1024px) {
	body {
		font-size:  14px; }
	
	.cta .icon {
		font-size: 14px; }
	.cta .icon:before {
		display: none; }
	.cta .text { 
		font-size: 14px; }

	input {
		font-size: 14px; }
}